/* =====================================================
   HOMEPAGE COMBO OFFERS
===================================================== */

.combo-offers-section[hidden] {
  display: none !important;
}

.combo-offers-section {
  position: relative;
  padding: 82px 0;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #f4f9f5 0%,
      #eef7ef 48%,
      #fff8df 100%
    );
}

.combo-offers-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(
      30deg,
      rgba(34, 139, 34, 0.045) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(34, 139, 34, 0.045) 87.5%,
      rgba(34, 139, 34, 0.045)
    ),
    linear-gradient(
      150deg,
      rgba(34, 139, 34, 0.045) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(34, 139, 34, 0.045) 87.5%,
      rgba(34, 139, 34, 0.045)
    );
  background-size: 80px 140px;
}

/* Section Header */

.combo-offers-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.combo-offers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 13px;
  color: #176b20;
  background: rgba(34, 139, 34, 0.09);
  border: 1px solid rgba(34, 139, 34, 0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.65px;
}

.combo-offers-eyebrow i {
  font-size: 17px;
}

.combo-offers-heading h2 {
  margin: 0;
  color: #17261b;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.combo-offers-heading p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #66736b;
  font-size: 15px;
  line-height: 1.6;
}

/* Main Offer Navigation */

.combo-offer-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.combo-offer-navigation.is-hidden {
  display: none;
}

.combo-offer-nav-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d3523;
  background: #ffffff;
  border: 1px solid rgba(34, 139, 34, 0.16);
  border-radius: 50%;
  font-size: 21px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(23, 38, 27, 0.08);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.combo-offer-nav-btn:hover {
  color: #ffffff;
  background: #228b22;
  transform: translateY(-2px);
}

/* Loading */

.combo-offers-loading {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #66736b;
}

.combo-offers-loading.is-hidden {
  display: none;
}

.combo-offers-spinner {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border: 3px solid rgba(34, 139, 34, 0.14);
  border-top-color: #228b22;
  border-radius: 50%;
  animation: comboSpinner 0.8s linear infinite;
}

@keyframes comboSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* Offer Slides */

.combo-offers-slider {
  position: relative;
}

.combo-offer-slide {
  display: none;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(360px, 0.88fr);
  gap: 38px;
  align-items: stretch;
  padding: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 139, 34, 0.14);
  border-radius: 30px;
  box-shadow:
    0 28px 70px rgba(23, 38, 27, 0.1);
  backdrop-filter: blur(12px);
}

.combo-offer-slide.is-active {
  display: grid;
  animation: comboOfferFade 0.45s ease;
}

@keyframes comboOfferFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Offer Details */

.combo-offer-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.combo-offer-special-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  color: #805300;
  background: #fff2bd;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.combo-offer-title {
  margin: 18px 0 0;
  color: #17261b;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.combo-offer-description {
  max-width: 680px;
  margin: 14px 0 0;
  color: #66736b;
  font-size: 15px;
  line-height: 1.7;
}

.combo-offer-expiry {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #536158;
  font-size: 13px;
  font-weight: 600;
}

.combo-offer-expiry i {
  color: #228b22;
  font-size: 17px;
}

/* Products & Prices */

.combo-products-pricing {
  margin-top: 26px;
  overflow: hidden;
  background: #f9fbf9;
  border: 1px solid #e3ebe5;
  border-radius: 18px;
}

.combo-products-pricing-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 125px 125px;
  gap: 14px;
  padding: 13px 18px;
  color: #66736b;
  background: #eef5ef;
  border-bottom: 1px solid #dfe8e1;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.55px;
}

.combo-product-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 125px 125px;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid #e8eee9;
}

.combo-product-price-row:last-child {
  border-bottom: 0;
}

.combo-product-price-name {
  color: #203126;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.4;
}

.combo-normal-price {
  color: #8a928d;
  font-size: 13px;
  font-weight: 600;
  text-decoration: line-through;
}

.combo-product-offer-price {
  color: #228b22;
  font-size: 15px;
  font-weight: 760;
}

/* Combo Total */

.combo-offer-total-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 20px 22px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #176b20,
      #228b22,
      #3da444
    );
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(34, 139, 34, 0.2);
}

.combo-total-caption {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.combo-price-summary {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.combo-old-total {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 600;
  text-decoration: line-through;
}

.combo-new-total {
  color: #ffffff;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
}

.combo-save-text {
  margin-top: 7px;
  color: #eaffc7;
  font-size: 12px;
  font-weight: 650;
}

.combo-order-button {
  flex-shrink: 0;
  min-width: 150px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  color: #1c331f;
  background: #ffffff;
  border: 0;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(13, 48, 19, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.combo-order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 48, 19, 0.28);
}

/* Right Product Image Carousel */

.combo-product-showcase {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #f4f9f5,
      #ffffff
    );
  border: 1px solid #e0e9e2;
  border-radius: 24px;
}

.combo-product-carousel {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.combo-product-track {
  height: 100%;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.combo-product-image-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  cursor: pointer;
}

.combo-product-image-wrap {
  flex: 1;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
}

.combo-product-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 370px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.combo-product-image-card:hover img {
  transform: scale(1.045);
}

.combo-product-image-info {
  padding: 18px 4px 0;
}

.combo-product-image-info h4 {
  margin: 0;
  color: #1b2b20;
  font-size: 19px;
  font-weight: 720;
  line-height: 1.35;
}

.combo-product-image-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}

.combo-product-image-old-price {
  color: #929a95;
  font-size: 13px;
  text-decoration: line-through;
}

.combo-product-image-offer-price {
  color: #228b22;
  font-size: 20px;
  font-weight: 780;
}

.combo-product-carousel-controls {
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.combo-product-carousel-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d3523;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 139, 34, 0.15);
  border-radius: 50%;
  font-size: 19px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(23, 38, 27, 0.13);
}

.combo-product-carousel-btn:hover {
  color: #ffffff;
  background: #228b22;
}

.combo-product-carousel-btn.is-hidden {
  visibility: hidden;
}

.combo-product-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 20px 18px;
}

.combo-product-dot,
.combo-offer-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(34, 139, 34, 0.25);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.combo-product-dot.is-active,
.combo-offer-dot.is-active {
  width: 24px;
  background: #228b22;
  border-radius: 50px;
}

/* Main Offer Dots */

.combo-offers-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.combo-offers-dots.is-hidden {
  display: none;
}

/* Responsive */

@media (max-width: 991px) {
  .combo-offers-section {
    padding: 65px 0;
  }

  .combo-offer-slide,
  .combo-offer-slide.is-active {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .combo-product-showcase {
    min-height: 480px;
  }
}

@media (max-width: 639px) {
  .combo-offers-section {
    padding: 48px 0;
  }

  .combo-offers-heading {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .combo-offers-heading h2 {
    font-size: 35px;
  }

  .combo-offers-heading p {
    font-size: 13px;
  }

  .combo-offer-nav-btn {
    width: 40px;
    height: 40px;
  }

  .combo-offer-slide,
  .combo-offer-slide.is-active {
    gap: 24px;
    padding: 18px;
    border-radius: 22px;
  }

  .combo-offer-title {
    font-size: 32px;
  }

  .combo-offer-description {
    font-size: 13px;
  }

  .combo-products-pricing-header {
    display: none;
  }

  .combo-product-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 12px;
    padding: 13px 14px;
  }

  .combo-product-price-name {
    grid-row: 1 / 3;
    font-size: 13px;
  }

  .combo-normal-price,
  .combo-product-offer-price {
    text-align: right;
  }

  .combo-offer-total-card {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .combo-order-button {
    width: 100%;
  }

  .combo-product-showcase {
    min-height: 430px;
  }

  .combo-product-image-card {
    padding: 18px 18px 16px;
  }

  .combo-product-image-wrap {
    min-height: 280px;
  }

  .combo-product-carousel-controls {
    left: 8px;
    right: 8px;
  }

  .combo-product-carousel-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 420px) {
  .combo-offers-heading {
    gap: 14px;
  }

  .combo-offer-navigation {
    gap: 6px;
  }

  .combo-offer-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .combo-product-showcase {
    min-height: 390px;
  }

  .combo-product-image-wrap {
    min-height: 240px;
  }
}