/* ================================================
   ROOT & BASE
================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

@font-face {
    font-family: 'Brosta';
    src: url('../fonts/brosta.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
:root {
  --clr-primary:      #2d6a4f;
  --clr-primary-lt:   #52b788;
  --clr-primary-dk:   #1b4332;
  --clr-accent:       #d4a017;
  --clr-danger:       #e63946;
  --clr-text:         #1a1a1a;
  --clr-text-muted:   #6b7280;
  --clr-bg:           #fafaf8;
  --clr-surface:      #ffffff;
  --clr-border:       #e5e7eb;
  --clr-thumb-active: #2d6a4f;
  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        20px;
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:        0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:        0 16px 50px rgba(0,0,0,0.13);
  --transition:       0.28s ease;
  --font-sans:        'Segoe UI', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}
a {

    text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}


/* ================================================
   SECTION 1 : HERO BANNER
================================================ */

/* --- CTA Strip --- */
.cta-strip {
  background: linear-gradient(90deg, var(--clr-primary-dk) 0%, var(--clr-primary) 100%);
  padding: 10px 20px;
}

.cta-strip__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip__label {
  color: #fff;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-strip__icon {
  font-size: 1.1rem;
}

.cta-strip__link {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cta-strip__link:hover {
  background: #fff;
  color: var(--clr-primary-dk);
}


/* --- Hero Banner --- */
.hero-section {
  width: 100%;
  background: var(--clr-bg);
}

.hero-banner {
  width: 100%;

  /* margin-bottom: 60px; */

  overflow: hidden;

}

.hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ================================================
   SECTION 2 : PRODUCT SHOWCASE
================================================ */
.showcase-section {
  background: var(--clr-bg);
  padding: 40px 0 0px;
}

/* 3-column grid */
.showcase-grid { min-width: 0; max-width: 100%; 
display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 45px;
    align-items: start;
}


/* ---- LEFT : Thumbnails ---- */
.thumb-col {
  width: 90px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.offer-thumb-swiper {
  overflow: hidden;
  padding: 6px;
  margin: -6px;
  /* height set dynamically via JS to match main image */
}

.thumb-item {
  width: 90px !important;
  height: 90px !important;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: none;
  box-shadow: 0 0 0 1px var(--clr-border);
  transition: box-shadow var(--transition), transform var(--transition);
  background: #fff;
  cursor: pointer;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-item:hover {
  box-shadow: 0 0 0 2px var(--clr-bg), 0 0 0 4px var(--clr-primary-lt);
  transform: scale(1.04);
}

.thumb-item.swiper-slide-thumb-active {
  box-shadow: 0 0 0 2px var(--clr-bg), 0 0 0 4px var(--clr-primary);
  transform: scale(1.02);
}

/* ---- Thumbnail Navigation ---- */
.thumb-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s, background-color 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  font-size: 14px;
}
.thumb-nav:hover {
  background-color: #1a4f32;
}
.thumb-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.thumb-nav--prev {
  top: 0;
}
.thumb-nav--next {
  bottom: 0;
}


/* ---- CENTER : Large Image ---- */
.main-img-col {
  position: sticky;
  top: 20px;
  min-width: 0;
}

.main-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: transparent;
  aspect-ratio: 1 / 1;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.main-img-wrapper:hover .main-img {
  transform: scale(1.02);
}


/* ---- RIGHT : Product Details ---- */
.product-details-col {
  overflow-y: auto;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
  padding-right: 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Scrollbar styling for product details */
.product-details-col::-webkit-scrollbar {
  display: none;
}

/* Collection badge */
.pd-collection {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

/* Title */
.pd-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--clr-text);
  margin-bottom: 10px;
  font-family: 'Brosta', serif;
}

/* Rating */
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pd-stars {
  color: var(--clr-accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.pd-review-count {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
}

/* Price row */
.pd-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.pd-taxes-inclusive {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 16px;
}

.pd-price {

font-size: 2.012rem;
    font-weight: 800;
    color: #a85515;
}

.pd-original-price {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  text-decoration: line-through;
}

.pd-discount {
  font-size: 0.82rem;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 3px 9px;
  border-radius: 50px;
}

/* Meta list */
.pd-meta {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.pd-meta li {
  font-size: 0.85rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pd-meta__label {
  color: var(--clr-text-muted);
  min-width: 90px;
  font-weight: 500;
}

.pd-meta__value {
  color: var(--clr-text);
  font-weight: 500;
}

.pd-meta__value--instock {
  color: var(--clr-primary);
}

/* Short description */
.pd-short-desc-container {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.pd-short-desc {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}
.pd-short-desc p {
  margin-bottom: 0;
}

.pd-short-desc.clamped {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-read-more-btn {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-primary);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.pd-read-more-btn:hover {
  color: var(--clr-primary-dk);
}

/* Features Section */
.pd-features-section {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .pd-features-section {
    flex-direction: column;
  }
}

/* What's Inside */
.pd-whats-inside {
  flex: 1 1 55%;
  background: #fffcf8;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 16px 24px;
  margin-bottom: 16px;
  min-width: 0; /* Important for flex child with overflow */
}

.pd-whats-inside__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    margin-top: 0;
    text-transform: uppercase;
    border-bottom: 1px solid #f0e6d2;
    padding-bottom: 16px;
}

.pd-whats-inside__items-wrapper {
  overflow-x: auto;
  scrollbar-width: thin;
  --scrollbar-thumb: #E2D1C3;
  --scrollbar-track: transparent;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  padding-bottom: 12px;
}

@supports not (scrollbar-color: auto) {
  .pd-whats-inside__items-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .pd-whats-inside__items-wrapper::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
  }

  .pd-whats-inside__items-wrapper::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
}

.pd-whats-inside__items {
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: max-content;
}

.pd-whats-inside__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FDF9F5; /* subtle merging color */
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  width: 136px;
}

.pd-whats-inside__item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.pd-whats-inside__item p {
  font-size: 0.85rem;
  font-weight: 400;
  color: #111;
  text-align: center;
  line-height: 1.2;
  margin: 8px 0 0 0;
}

/* Highlights */
.pd-highlights {
  flex: 1 1 45%;
  background: #fffcf8;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.pd-highlights__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    margin-top: 0;
    text-transform: uppercase;
    border-bottom: 1px solid #f0e6d2;
    padding-bottom: 16px;
}

.pd-highlights__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-highlights__list li,
.pd-highlights__list > p,
.pd-highlights__list > div {
  font-size: 0.86rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none; /* In case ul has default bullets */
  margin-bottom: 0;
}

.pd-highlights__list li p {
  margin-bottom: 0;
}

.pd-highlights__list > div:has(br:only-child) {
  display: none; /* Hide empty wysiwyg lines */
}

.pd-highlights__list li::before,
.pd-highlights__list > p::before,
.pd-highlights__list > div::before {
  content: "";
  background-image: url('../images/offer/tick-transparent.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0;
}

/* Plant Care Grid */
.pd-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.pd-care-item {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pd-care-item:hover {
  border-color: var(--clr-primary-lt);
  box-shadow: var(--shadow-sm);
}

.pd-care-item__icon {
  font-size: 1.25rem;
}

.pd-care-item__icon--water  { color: #3b82f6; }
.pd-care-item__icon--sun    { color: var(--clr-accent); }
.pd-care-item__icon--temp   { color: #ef4444; }
.pd-care-item__icon--height { color: var(--clr-primary); }
.pd-care-item__icon--pot    { color: #8b5cf6; }
.pd-care-item__icon--dispatch { color: #059669; }

.pd-care-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-text-muted);
}

.pd-care-item__value {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text);
}

/* Delivery */
.pd-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
}

.pd-delivery i {
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.pd-delivery strong {
  color: var(--clr-text);
}

/* Actions */
.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

/* Quantity selector */
.pd-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.pd-qty__btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-text);
  background: #f9fafb;
  border: none;
  transition: background var(--transition), color var(--transition);
}

.pd-qty__btn:hover {
  background: var(--clr-primary);
  color: #fff;
}

.pd-qty__value {
  width: 44px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  border-left: 1.5px solid var(--clr-border);
  border-right: 1.5px solid var(--clr-border);
  line-height: 38px;
  display: block;
}

/* Button rows */
.pd-btn-row {
  display: flex;
  gap: 10px;
}

.pd-btn {
  flex: 1;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.pd-btn:active {
  transform: scale(0.97);
}

.pd-btn--cart {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.pd-btn--cart:hover {
  background: var(--clr-primary-dk);
  box-shadow: 0 6px 18px rgba(45,106,79,0.4);
}

.pd-btn--buy {
  background: var(--clr-text);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.pd-btn--buy:hover {
  background: #111;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.pd-btn--wishlist {
  background: transparent;
  color: var(--clr-danger);
  border-color: var(--clr-danger);
}
.pd-btn--wishlist:hover {
  background: var(--clr-danger);
  color: #fff;
}

.pd-btn--share {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.pd-btn--share:hover {
  background: var(--clr-primary);
  color: #fff;
}

/* Accordion */
.pd-accordion {
  border-top: 1px solid var(--clr-border);
}

.pd-accordion__item {
  border: none;
  border-bottom: 1px solid var(--clr-border);
  background: transparent;
}

.pd-accordion__btn {
  background: transparent;
  color: var(--clr-text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 0;
  box-shadow: none !important;
}

.pd-accordion__btn:not(.collapsed) {
  color: var(--clr-primary);
  background: transparent;
}

.pd-accordion__btn::after {
  filter: none;
}

.pd-accordion__btn:not(.collapsed)::after {
  filter: none;
  color: var(--clr-primary);
}

.pd-accordion__body {
  padding: 0 0 16px;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
}

.pd-accordion__list {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pd-accordion__list li {
  color: #4b5563;
}

/* FAQ */
.pd-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-faq__q {
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 3px;
  font-size: 0.875rem;
}

.pd-faq__a {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}


/* ================================================
   RESPONSIVE
================================================ */

/* Tablet ≤ 991px */
@media (max-width: 991px) {

  .showcase-grid { min-width: 0; max-width: 100%; 
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "thumbs  mainimg"
      "details details";
  }

  .thumb-col {
    grid-area: thumbs;
    width: 100%;
    position: relative;
  }

  .offer-thumb-swiper {
    height: auto !important;
  }

  .thumb-list {
    /* Swiper wrapper manages this naturally */
  }

  .thumb-item {
    width: 70px;
    height: 70px;
  }

  .main-img-col {
    grid-area: mainimg;
    position: static;
  }

  .product-details-col {
    grid-area: details;
    aspect-ratio: auto;
    max-height: unset;
    overflow-y: visible;
    padding-right: 0;
  }

  .pd-title {
    font-size: 1.25rem;
  }
}


/* Mobile ≤ 575px */
@media (max-width: 575px) {

  /* Banner */
  .hero-banner {
    /* border-radius: var(--radius-md);
    margin-top: 16px; */
    margin-bottom: 16px;
  }

  .hero-banner__img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  /* Card Resizing */
  .fp-card {
    max-width: 18rem;
    margin: 0 auto;
  }

  /* Showcase grid → single column */
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mainimg"
      "thumbs"
      "details";
    gap: 16px;
    min-width: 0;
    max-width: 100%;
  }

  .thumb-col {
    grid-area: thumbs;
    width: 100%;
    position: relative;
    min-width: 0;
    max-width: 100%;
  }

  /* Horizontal swiper arrows for mobile */
  .thumb-nav {
    top: 50%;
    left: auto;
  }
  .thumb-nav--prev {
    left: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  .thumb-nav--next {
    right: 5px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }

  /* Horizontal swiper layout for mobile */
  .thumb-list {
    /* Swiper wrapper manages this naturally */
  }

  .thumb-list::-webkit-scrollbar {
    display: none;
  }

  .thumb-item {
    width: 68px !important;
    height: 68px !important;
    flex-shrink: 0;
  }

  .main-img-col {
    grid-area: mainimg;
    position: static;
    min-width: 0;
    max-width: 100%;
  }

  .main-img-wrapper {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .product-details-col {
    grid-area: details;
    min-width: 0;
    max-width: 100%;
  }

  .pd-title {
    font-size: 1.15rem;
  }

  .pd-price {
    font-size: 1.45rem;
  }

  /* Full-width buttons on mobile */
  .pd-btn-row {
    flex-direction: column !important;
  }

  .pd-btn {
    width: 100%;
  }

  .pd-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-strip__inner {
    gap: 10px;
  }

  .cta-strip__label {
    font-size: 0.82rem;
  }

  /* Sticky Bottom Timer */
  .floating-cta-dock.sticky-bottom-timer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 -12px 32px rgba(0, 0, 0, 0.04), 
        0 -2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 999;
    animation: slideUpTimer 0.3s ease forwards;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  @keyframes slideUpTimer {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .floating-cta-dock.sticky-bottom-timer .offer-timer-title {
    display: none !important;
  }

  .floating-cta-dock.sticky-bottom-timer .dock-cta {
    display: none !important;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .pd-care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-qty__btn {
    width: 34px;
    height: 34px;
  }
}


/* ================================================
   SECTION 3 : FEATURED PRODUCTS
================================================ */

.fp-section {
  background: var(--clr-bg);
padding: 70px 60px 70px;
}

/* --- Section Header --- */
.fp-header {
  text-align: center;
  margin-bottom: 44px;
}

.fp-header__sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.fp-header__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.fp-header__stem {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: rotate(20deg);
}
.fp-header__stem--left {
  transform: scaleX(-1) rotate(20deg);
}

.fp-header__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 0;
  font-family: 'Brosta', serif;
}

.fp-header__desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);

  margin: 0 auto;
  line-height: 1.65;
}

/* --- Product Card --- */
.fp-card {
  position: relative;
  background: #faf9f4;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 25rem;
}

.fp-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d9534f;
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  border-radius: 20px;
  z-index: 1;
}

.fp-card__ratings {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fp-card__rating-stars {
  color: #c49a45;
  font-size: 12px;
}
.fp-card__rating-count {
  color: #6b7280;
  font-size: 12px;
}

.fp-card__features {
  margin-top: 18px;
  padding-top: 0;
}
.fp-card__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.fp-card__features-list li {
  font-size: 10px;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
}
.fp-card__features-list li i {
  color: #1a1a1a;
  margin-right: 4px;
  font-size: 12px;
}

/* .fp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
} */

/* --- Image Wrap --- */
.fp-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #f4f6f3;
}

.fp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.fp-card:hover .fp-card__img {
  transform: scale(1.08);
}



/* --- Add to Cart Button --- */
.fp-card__cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 50px;
    margin: 0 12px 12px;
    width: calc(60% - 24px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
    z-index: 2;
}

.fp-card:hover .fp-card__cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.fp-card__cart-btn:hover {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
}

.fp-card__cart-btn-bottom {
  position: relative;
  width: calc(100% - 40px);
  border: none;
  background: #e8ece0;
  color: #2d3d30;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: none;
  margin: 0 20px 20px 20px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s ease;
}
.fp-card__cart-btn-bottom i {
  position: absolute;
  right: 16px;
  font-size: 15px;
}
.fp-card__cart-btn-bottom:hover {
  background: #dfe4d5;
}

/* --- Card Body --- */
.fp-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fp-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin: 0;
}

.fp-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 4px 0;
}

/* --- Price Row --- */
.fp-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.fp-card__original {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.fp-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
}

.fp-card__discount {
  font-size: 0.76rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 50px;
}

/* --- Rating --- */
.fp-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.fp-card__stars {
  color: var(--clr-accent);
  font-size: 0.88rem;
  letter-spacing: 1.5px;
}

.fp-card__rating-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}


  .hero-banner{
    position: relative;
    width: 100%;
    overflow: hidden;

}

.hero-banner__img{
    width: 100%;
    display: block;

}



.rb-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 37px;
    background: rgb(35 54 26);
    border: 1px solid #b98552;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.rb-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.rb-cta-btn:hover::before {
    left: 200%;
}

.rb-cta-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(35, 54, 26, 0.4), 0 0 15px rgba(185, 133, 82, 0.4);
    background: rgb(35 54 26);
    color: #fff;
}

/* --- Floating Glass Dock --- */
.floating-cta-dock {
    margin-top: -60px;
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.4);
    border-right-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.04), 
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta-dock:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.06), 
        0 4px 12px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* --- Promo Banners --- */
.fp-promo-banners {
    margin-bottom: 30px;
}
.fp-promo-banner {
    background: #f2f4ed;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}
.fp-promo-banner__icon {
    color: #2d4a36;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fp-promo-banner__content {
    flex: 1;
}
.fp-promo-banner__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-transform: uppercase;
}
.fp-promo-banner__subtitle {
    font-size: 12px;
    color: #4a4a4a;
    margin: 0;
}
.fp-promo-banner__btn {
    background: #2d4a36;
    color: #fff;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.fp-promo-banner__btn:hover {
    background: #1b3021;
    color: #fff;
}

/* --- Testimonial Section --- */
.fp-testimonial-section {
    background: #fffcf8;
    border-radius: 8px;
    overflow: hidden;
    /* margin-bottom: 30px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.fp-testimonial-content {
    padding: 40px 50px;
}
.fp-testimonial-heading {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0e6d2;
    padding-bottom: 16px;
}
.fp-testimonial-swiper {
    position: relative;
    padding-bottom: 40px;
}
.fp-testimonial-swiper .swiper-slide {
    position: relative;
    z-index: 1;
}
.fp-testimonial-swiper .swiper-slide::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 90px;
    color: rgba(184, 142, 47, 0.15);
    font-family: 'Georgia', serif;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}
.fp-testimonial-stars {
    color: #b88e2f;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}
.fp-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    font-weight: 500;
    margin-bottom: 24px;
    font-style: italic;
}
.fp-testimonial-author {
    font-size: 13px;
    color: #666;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Animations for active slide content */
.swiper-slide .fp-testimonial-stars,
.swiper-slide .fp-testimonial-text,
.swiper-slide .fp-testimonial-author {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.swiper-slide-active .fp-testimonial-stars {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.swiper-slide-active .fp-testimonial-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.swiper-slide-active .fp-testimonial-author {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.fp-testimonial-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-top: 40px;
    width: 100%;
}
.fp-swiper-btn {
    position: static;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b88e2f;
    box-shadow: none;
    margin: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}
.fp-swiper-btn:hover {
    background: #b88e2f;
    border-color: #b88e2f;
    color: #fff;
    transform: scale(1.05);
}
.fp-swiper-btn::after {
    content: none;
}
.fp-swiper-pagination {
    position: static;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.fp-swiper-pagination .swiper-pagination-bullet {
    width: 30px !important;
    height: 3px !important;
    background: #e5e7eb !important;
    opacity: 1 !important;
    border-radius: 4px !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: inline-block;
}
.fp-swiper-pagination .swiper-pagination-bullet:hover {
    background: #d4c8b8 !important;
}
.fp-swiper-pagination .swiper-pagination-bullet-active {
    background: #b88e2f !important;
    width: 60px !important;
}
.fp-testimonial-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}
.fp-testimonial-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fp-testimonial-img.active {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 575px) {
  .fp-header__title {
    font-size: 1.55rem;
  }

  .fp-section {
    padding: 40px 0 50px;
  }

    .fp-header {
    margin-bottom: 30px;
  }
  
  .fp-testimonial-content {
    padding: 30px 20px;
  }

  /* Always show cart button on mobile (no hover state on touch) */
  .fp-card__cart-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .floating-cta-dock {
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      margin-top: 12px; /* Placed below the banner */
      border-radius: 12px;
      width: 100%;
      box-sizing: border-box;
  }

  .offer-timer-wrapper {
      flex-direction: row;
      align-items: center;
      gap: 8px;
  }

  .offer-timer-title {
      display: block;
      font-size: 11px;
      font-weight: 700;
      margin-bottom: 0;
      white-space: nowrap;
  }

  .offer-timer-boxes {
      gap: 4px;
  }

  .timer-box {
      min-width: 36px;
      padding: 4px 2px;
      border-radius: 6px;
  }

  .timer-val-container {
      height: 18px;
  }

  .timer-val {
      font-size: 14px;
  }

  .timer-label {
      font-size: 8px;
      margin-top: 1px;
  }

  .dock-cta {
      display: none; /* Remove CTA from mobile view */
  }

  .rb-cta-btn {
      padding: 8px 14px;
      font-size: 12px;
      white-space: nowrap;
  }

  /* Promo Banners Mobile */
  .fp-promo-banner {
      flex-direction: column;
      text-align: center;
      gap: 12px;
  }
}

/* --- Offer Timer UI --- */
.offer-timer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.offer-timer-title {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.offer-timer-boxes {
    display: flex;
    gap: 12px;
}
.timer-box {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.timer-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.12), 0 0 15px rgba(217, 78, 52, 0.15);
    border-color: rgba(217, 78, 52, 0.3);
}
.timer-val-container {
    height: 26px;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
}
.timer-val {
    font-size: 22px;
    font-weight: 700;
    color: #1a4f32;
    line-height: 1.2;
    display: block;
    width: 100%;
}
.timer-val.next {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes slideOut {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}
@keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
.timer-val.slide-out {
    animation: slideOut 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.timer-val.slide-in {
    animation: slideIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.timer-label {
    font-size: 11px;
    font-weight: 600;
    color: #d94e34;
    margin-top: 2px;
}

/* ========================================================= */
/* Custom Offers FAQ Section (Netflix Inspired) */
/* ========================================================= */
.fp-faq-heading {
  font-family: 'vserve', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  color: #1a4f32;
  margin-bottom: 2rem !important;
}

.fp-faq-section .accordion-item {
  border: none;
  background-color: transparent !important;
  margin-bottom: 12px; /* Gaps between distinct blocks */
}

.fp-faq-section .accordion-header {
  margin: 0;
}

.fp-faq-section .accordion-button {
  background-color: #eaece4 !important; /* Darker background for closed block */
  color: #1a4f32 !important; /* Dark green text */
  font-size: 1.25rem; /* Larger, readable size */
  font-weight: 700;
  font-family: 'vserve', sans-serif;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 4px;
  box-shadow: none !important;
  transition: background-color 0.3s ease;
}

/* Ensure the button doesn't look like it's inside a standard list */
.fp-faq-section .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

/* Active open state */
.fp-faq-section .accordion-button:not(.collapsed) {
  background-color: #f4f5ef !important; /* Lighter background when open */
  color: #1a4f32 !important;
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Custom Netflix-style Plus/Cross Icon */
.fp-faq-section .accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a4f32'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E");
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease-in-out; /* Smooth rotation */
}

/* Open state: rotate 45deg to form an X */
.fp-faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a4f32'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E");
  transform: rotate(45deg);
}

/* FAQ Answer Block */
.fp-faq-section .accordion-collapse {
  border: none;
}

.fp-faq-section .accordion-body {
  background-color: #f4f5ef !important; /* Same as opened block for cohesiveness */
  color: #2b3d33;
  padding: 1.5rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 1.05rem;
  line-height: 1.6;
  border-top: 1px solid #dcded2; /* Subtle separator line between Q and A */
}

/* Banner Option 1: Premium Dark Green & Gold */
.fp-promo-banner--v1 {
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
}

.fp-promo-banner--v1 .fp-promo-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,79,50,0.9) 0%, rgba(15,46,29,0.85) 100%);
    z-index: 1;
}

.fp-promo-banner--v1 .fp-promo-banner__content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fp-promo-banner--v1 .fp-promo-banner__icon {
    color: #ffd700; /* Gold */
}

.fp-promo-banner--v1 .fp-promo-banner__text {
    flex: 1;
}

.fp-promo-banner--v1 .fp-promo-banner__title {
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Brosta', serif;
    margin-bottom: 5px;
}

.fp-promo-banner--v1 .fp-promo-banner__subtitle {
    color: #e0e0e0;
    margin-bottom: 0;
}

.fp-promo-banner--v1 .fp-promo-banner__btn {
    background-color: transparent;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.fp-promo-banner--v1 .fp-promo-banner__btn:hover {
    background-color: #ffd700;
    color: #1a4f32;
}

/* Banner Option 2: Earthy Leaf Watermark */
.fp-promo-banner--v2 {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    color: #2b3d33;
    padding: 30px;
    border: 1px solid #dcded2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fp-promo-banner--v2 .fp-promo-banner__content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fp-promo-banner--v2 .fp-promo-banner__icon {
    color: #1a4f32;
}

.fp-promo-banner--v2 .fp-promo-banner__text {
    flex: 1;
}

.fp-promo-banner--v2 .fp-promo-banner__title {
    color: #1a4f32;
    font-size: 1.25rem;
    font-family: 'Brosta', serif;
    margin-bottom: 5px;
}

.fp-promo-banner--v2 .fp-promo-banner__subtitle {
    color: #4a5c50;
    margin-bottom: 0;
}

.fp-promo-banner--v2 .fp-promo-banner__btn {
    background-color: #1a4f32;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #1a4f32;
}

.fp-promo-banner--v2 .fp-promo-banner__btn:hover {
    background-color: transparent;
    color: #1a4f32;
}

/* Banner Option 3: Vibrant Glassmorphism */
.fp-promo-banner--v3 {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px;
    height: 100%;
    color: #1a4f32;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.fp-promo-banner--v3 .fp-promo-banner__content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fp-promo-banner--v3 .fp-promo-banner__icon {
    color: #1a4f32;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 12px;
}

.fp-promo-banner--v3 .fp-promo-banner__text {
    flex: 1;
}

.fp-promo-banner--v3 .fp-promo-banner__title {
    color: #0f2e1d;
    font-size: 1.25rem;
    font-family: 'Brosta', serif;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.fp-promo-banner--v3 .fp-promo-banner__subtitle {
    color: #2b3d33;
    margin-bottom: 0;
}

.fp-promo-banner--v3 .fp-promo-banner__btn {
    background-color: rgba(26, 79, 50, 0.9);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.fp-promo-banner--v3 .fp-promo-banner__btn:hover {
    background-color: rgba(26, 79, 50, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 79, 50, 0.3);
}

@media (max-width: 768px) {
    .fp-promo-banner--v1 .fp-promo-banner__content-wrapper,
    .fp-promo-banner--v2 .fp-promo-banner__content-wrapper,
}

.fp-faq-section .accordion-body {
  background-color: #f4f5ef !important; /* Same as opened block for cohesiveness */
  color: #2b3d33;
  padding: 1.5rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 1.05rem;
  line-height: 1.6;
  border-top: 1px solid #dcded2; /* Subtle separator line between Q and A */
}

/* Banner Option 1: Premium Dark Green & Gold */
.fp-promo-banner--v1 {
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
}

.fp-promo-banner--v1 .fp-promo-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,79,50,0.9) 0%, rgba(15,46,29,0.85) 100%);
    z-index: 1;
}

.fp-promo-banner--v1 .fp-promo-banner__content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fp-promo-banner--v1 .fp-promo-banner__icon {
    color: #ffd700; /* Gold */
}

.fp-promo-banner--v1 .fp-promo-banner__text {
    flex: 1;
}

.fp-promo-banner--v1 .fp-promo-banner__title {
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Brosta', serif;
    margin-bottom: 5px;
}

.fp-promo-banner--v1 .fp-promo-banner__subtitle {
    color: #e0e0e0;
    margin-bottom: 0;
}

.fp-promo-banner--v1 .fp-promo-banner__btn {
    background-color: transparent;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.fp-promo-banner--v1 .fp-promo-banner__btn:hover {
    background-color: #ffd700;
    color: #1a4f32;
}

/* Banner Option 2: Earthy Leaf Watermark */
.fp-promo-banner--v2 {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    color: #2b3d33;
    padding: 30px;
    border: 1px solid #dcded2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fp-promo-banner--v2 .fp-promo-banner__content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fp-promo-banner--v2 .fp-promo-banner__icon {
    color: #1a4f32;
}

.fp-promo-banner--v2 .fp-promo-banner__text {
    flex: 1;
}

.fp-promo-banner--v2 .fp-promo-banner__title {
    color: #1a4f32;
    font-size: 1.25rem;
    font-family: 'Brosta', serif;
    margin-bottom: 5px;
}

.fp-promo-banner--v2 .fp-promo-banner__subtitle {
    color: #4a5c50;
    margin-bottom: 0;
}

.fp-promo-banner--v2 .fp-promo-banner__btn {
    background-color: #1a4f32;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #1a4f32;
}

.fp-promo-banner--v2 .fp-promo-banner__btn:hover {
    background-color: transparent;
    color: #1a4f32;
}

/* Banner Option 3: Vibrant Glassmorphism */
.fp-promo-banner--v3 {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px;
    height: 100%;
    color: #1a4f32;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.fp-promo-banner--v3 .fp-promo-banner__content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fp-promo-banner--v3 .fp-promo-banner__icon {
    color: #1a4f32;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 12px;
}

.fp-promo-banner--v3 .fp-promo-banner__text {
    flex: 1;
}

.fp-promo-banner--v3 .fp-promo-banner__title {
    color: #0f2e1d;
    font-size: 1.25rem;
    font-family: 'Brosta', serif;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.fp-promo-banner--v3 .fp-promo-banner__subtitle {
    color: #2b3d33;
    margin-bottom: 0;
}

.fp-promo-banner--v3 .fp-promo-banner__btn {
    background-color: rgba(26, 79, 50, 0.9);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.fp-promo-banner--v3 .fp-promo-banner__btn:hover {
    background-color: rgba(26, 79, 50, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 79, 50, 0.3);
}

@media (max-width: 768px) {
    .fp-promo-banner--v1 .fp-promo-banner__content-wrapper,
    .fp-promo-banner--v2 .fp-promo-banner__content-wrapper,
    .fp-promo-banner--v3 .fp-promo-banner__content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Nursery Features Section */
/* .nursery-features-section {
    padding: 2rem 0;
    margin-top: 2rem;
} */

.nursery-features-grid {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

@media (min-width: 992px) {
    .nursery-features-grid {
        flex-direction: row;
        gap: 12px;
    }
}

.nursery-timeline-box, .nursery-compare-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fffcf8;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
}

@media (min-width: 992px) {
    .nursery-timeline-box {
        flex: 3;
    }
    .nursery-compare-box {
        flex: 2;
    }
}

.nursery-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    margin-top: 0;
    text-transform: uppercase;
    border-bottom: 1px solid #f0e6d2;
    padding-bottom: 16px;
}

/* Timeline */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding: 5px 5px 1rem 5px; /* Added padding to prevent badge clipping */
    margin: -5px -5px 0 -5px; /* Offset the padding */
}
/* Hide scrollbar for cleaner UI but keep it functional */
.timeline-container::-webkit-scrollbar {
    height: 6px;
}
.timeline-container::-webkit-scrollbar-thumb {
    background-color: #dcded2;
    border-radius: 4px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
    max-width: 220px;
    flex-shrink: 0;
}

.timeline-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 0.5rem;
    /* overflow: hidden removed to prevent badge clipping */
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.timeline-badge {
    position: absolute;
    top: -3px;
    left: -3px;
    background-color: #2e6040;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.timeline-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.3;
}

.timeline-text strong {
    color: #333;
}

.timeline-text span {
    color: #666;
}

.timeline-arrow {
    color: #2e6040;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Since min-width of step is 120px, image height is ~120px. 
       Push arrow down by half of that to center it with the image */
    margin-top: 60px;
    transform: translateY(-50%);
}

/* Compare Container */
.compare-container {
    display: flex;
    gap: 1rem;
}

.compare-col {
    flex: 1;
    border-radius: 8px;
    padding: 1.25rem;
}

.airbasket-col {
    background-color: #eef3eb;
}

.others-col {
    background-color: #e7e5e1;
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    justify-content: center;
}

.compare-header i {
    font-size: 1.3rem;
}

.airbasket-col .compare-header {
    color: #2e6040;
}

.others-col .compare-header {
    color: #555;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-list i {
    font-size: 1.1rem;
}

.airbasket-col .compare-list i {
    color: #2e6040;
}

.others-col .compare-list i {
    color: #d32f2f;
}

/* Mobile responsive timeline */
@media (max-width: 991px) {
    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .timeline-step {
        flex-direction: row;
        width: 100%;
        text-align: left;
        gap: 1rem;
    }

    .timeline-img-wrapper {
        width: 80px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .timeline-arrow {
        display: none;
    }

    .compare-container {
        flex-direction: column;
    }
}

/* Trending Offers Specific Styles */
.fp-trending-section {
  padding: 40px 0;
  background-color: var(--clr-bg);
}
.fp-trending-swiper {
  padding: 10px;
}
.fp-card--small {
  margin: 0 auto;
}
.fp-card--small .fp-card__img-wrap {
  height: 180px;
}
.fp-card--small .fp-card__body {
  padding: 15px;
}
.fp-card--small .fp-card__name {
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-card--small .fp-card__price {
  font-size: 16px;
}
.fp-card--small .fp-card__cart-btn {
  padding: 10px;
  font-size: 12px;
}

/* ================================================
   BOTTOM MINI BANNERS
================================================ */
.offer-bottom-banners {
  margin-top: 40px;
}

.ob-banners-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 5fr) minmax(0, 2.5fr);
  gap: 15px;
  align-items: stretch;
}

.ob-banners-row-2 {
  display: contents; /* unwrap on desktop */
}

.ob-banner-1 {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  align-self: center; /* Prevents vertical stretching which causes cropping */
}

.ob-img-fluid {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ob-banner-2 {
  background: transparent;
  border-radius: 8px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 30px 20px;
  gap: 15px;
  box-shadow: none;
}

.ob-feature {
  text-align: center;
  flex: 1;
}

.ob-feat-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(1.05);
}

.ob-feat-text {
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.ob-feat-text strong {
  color: #1a4f32;
  font-size: 15px;
}

.ob-banner-3 {
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 25px 30px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.ob-banner-3:hover {
  background: #fdf5ea;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.ob-help-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none !important;
  width: 100%;
}

.ob-help-icon {
  width: 56px;
  height: 56px;
  background: #25d366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.ob-help-text {
  display: flex;
  flex-direction: column;
}

.ob-help-text strong {
  font-size: 17px;
  color: #1a4f32;
  margin-bottom: 3px;
}

.ob-help-text span {
  font-size: 14px;
  color: #555;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .ob-banners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .ob-banners-row-2 {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  
  .ob-banner-2 {
    flex: 2;
    padding: 10px 5px;
    flex-wrap: wrap;
  }
  
  .ob-banner-3 {
    flex: 1;
    padding: 15px 10px;
    justify-content: center;
  }
  
  .ob-help-link {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .ob-banners-grid {
    display: flex;
    flex-direction: column;
  }
  .ob-banners-row-2 {
    display: flex;
    flex-direction: row; 
    gap: 10px;
  }
  .ob-banner-2 {
    flex: 1.5;
    flex-wrap: wrap; 
    padding: 10px;
  }
  .ob-feature {
    flex: 0 0 45%;
  }
  .ob-banner-3 {
    flex: 1;
    padding: 10px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .ob-feature {
    margin-bottom: 10px;
  }
  .ob-help-link {
    gap: 5px;
  }
}

/* --- New Pricing Column Additions --- */
.pd-rating-photos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #4b5563;
}

.pd-stars-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-stars {
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
}

.pd-rating-text strong {
  font-weight: 700;
}

.pd-rating-divider {
  color: #d1d5db;
}

.pd-photos-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.pd-sales-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eaf1e7;
  color: #2d6a4f;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pd-coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eaf1e7;
  border: 1px solid #d3e1ce;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.pd-coupon-left {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px dashed #b5c7ad;
}

.coupon-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-text-wrap {
  display: flex;
  flex-direction: column;
}

.coupon-label {
  font-size: 0.75rem;
  color: #4b5563;
  text-transform: uppercase;
  font-weight: 600;
}

.coupon-code {
  font-size: 0.9rem;
  font-weight: 700;
  color: #373535;
  letter-spacing: 0.5px;
}

.pd-coupon-center {
  flex-grow: 1;
  text-align: center;
}

.coupon-save {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d6a4f;
}

.pd-coupon-right {
  display: flex;
  align-items: center;
}

.coupon-copy-btn {
  background-color: #2d6a4f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.coupon-copy-btn:hover {
  background-color: #1b4332;
}

.pd-features-icons {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
      background-color: rgb(255, 252, 248);
          box-shadow: inset 0px 0px 60px 30px #137f5912;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.feat-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}

.feat-circle {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2d6a4f;
  background-color: transparent;
}

.feat-circle img {
  mix-blend-mode: multiply;
}

.feat-icon-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.2;
}

/* Hardcoded Badge Row */
.product-badges-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.product-badges-row::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.product-badge-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px 10px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  background-color: transparent;
}
.product-badge-item i {
  margin-right: 6px;
  font-size: 14px;
}
.product-badge-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .product-badge-item {
    font-size: 11px;
    padding: 4px 6px;
  }
  .product-badges-row {
    gap: 6px;
  }
  .product-badge-item i {
    margin-right: 4px;
    font-size: 12px;
  }
}
