/* Offer Banner Section */
.offer-banner-section {
  padding: 0 0 4rem;
}

.offer-banner {
  background: linear-gradient(135deg, #e4f4cf 0%, #ffffff 50%, #e4f4cf 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.offer-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-image: url('https://savithrammas.com/site/image/cache/catalog/A-Guide-to-Savithrammas-Exotic-Pickles-and-Spices-1080x540.jpg');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
  mask-image: linear-gradient(to right, transparent, black 30%);
  z-index: 1;
}

.offer-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.offer-subtitle {
  color: #6f452b;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

.offer-title {
  color: #ac5621;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.offer-desc {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 400px;
  line-height: 1.6;
}

.offer-btn {
  background-color: #ad5e02;
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 1rem 2rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.offer-btn:hover {
  background-color: #a5460b;
  transform: translateY(-2px);
}

.offer-badge {
  position: absolute;
  top: 3rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: rotate(15deg);
}

.offer-badge-number {
  color: #af680b;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.offer-badge-text {
  color: #cf5007;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .offer-banner {
    padding: 3rem;
    min-height: 300px;
  }
  .offer-banner::after {
    width: 60%;
  }
  .offer-title {
    font-size: 2.8rem;
  }
  .offer-badge {
    top: 2rem;
    right: 2rem;
    width: 100px;
    height: 100px;
  }
  .offer-badge-number {
    font-size: 2.2rem;
  }
  .offer-badge-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .offer-banner {
    padding: 2.5rem 2rem;
    flex-direction: column;
    justify-content: center;
  }
  .offer-banner::after {
    width: 100%;
    opacity: 0.25;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .offer-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
  .offer-title {
    font-size: 2.5rem;
  }
  .offer-desc {
    margin-bottom: 1.5rem;
  }
  .offer-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 2rem;
    transform: rotate(10deg);
  }
}

@media (max-width: 480px) {
  .offer-banner {
    padding: 2rem 1.5rem;
  }
  .offer-title {
    font-size: 2rem;
  }
  .offer-desc {
    font-size: 0.9rem;
  }
  .offer-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .offer-badge {
    width: 90px;
    height: 90px;
  }
  .offer-badge-number {
    font-size: 1.8rem;
  }
  .offer-badge-text {
    font-size: 0.9rem;
  }
}
