/* ============================================================
   DR. HEENAS — style-v7-alive-botanical.css
   Palette: Deep Ink Green | Moss | Turmeric Amber | Warm Parchment
   Fonts: Fraunces (headings, organic serif) + DM Sans (body)
   Direction: living botanical apothecary — dark hero, warm paper
   body, asymmetric leaf-shaped cards, swaying hero foliage.
   ============================================================ */

:root {
  --green-dark:   #16241A;
  --green-mid:    #2C4423;
  --green-light:  #4A6B3C;

  --rose:         #B8752E;
  --rose-light:   #D9A15C;
  --rose-pale:    #F0DCB8;
  --blush:        #F6F0DF;

  --gold:         #C08A3E;
  --gold-light:   #DDBB74;

  --cream:        #F3EFE0;
  --cream-dark:   #E7DFC7;
  --white:        #FFFDF7;
  --text-dark:    #1E2A1A;
  --text-mid:     #47543F;
  --text-light:   #8B9384;

  --radius:       14px;
  --shadow:       0 4px 24px rgba(22,36,26,0.18);
  --shadow-lg:    0 8px 40px rgba(22,36,26,0.28);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn--gold:hover {
  background: #9C5A22;
  border-color: #9C5A22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,117,46,0.4);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn--whatsapp {
  background: var(--green-dark);
  color: #fff;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
}
.btn--whatsapp:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(22,36,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,117,46,0.2);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--rose-light);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  color: rgba(246,240,223,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--rose-light); }
.nav__cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-weight: 500 !important;
}
.nav__cta:hover { background: #9C5A22 !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #16241A 0%, #2C4423 50%, #B8752E 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
/* Soft glow orbs */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(184,117,46,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(74,107,60,0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(192,138,62,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,117,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero__heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__heading em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.hero__img { object-position: center top; }
/* ---- SIGNATURE: swaying hero foliage ---- */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__leaf {
  position: absolute;
  background: linear-gradient(160deg, rgba(217,161,92,0.16), rgba(74,107,60,0.22));
  border: 1px solid rgba(217,161,92,0.18);
}
.hero__leaf--1 {
  width: 220px; height: 340px;
  top: 8%; right: 8%;
  border-radius: 120px 12px 120px 12px;
  transform-origin: top center;
  animation: leafSway1 9s ease-in-out infinite;
}
.hero__leaf--2 {
  width: 140px; height: 220px;
  bottom: 10%; right: 22%;
  border-radius: 90px 10px 90px 10px;
  transform-origin: bottom center;
  animation: leafSway2 7.5s ease-in-out infinite;
}
.hero__leaf--3 {
  width: 90px; height: 150px;
  top: 46%; right: 2%;
  border-radius: 70px 8px 70px 8px;
  transform-origin: center;
  animation: leafSway3 11s ease-in-out infinite;
}
@keyframes leafSway1 {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-4deg); }
}
@keyframes leafSway2 {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(6deg); }
}
@keyframes leafSway3 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__leaf { animation: none !important; }
}
@media (max-width: 900px) {
  .hero__deco { opacity: 0.8; }
  .hero__leaf--1 { width: 140px; height: 220px; top: 4%; right: -20px; }
  .hero__leaf--2 { width: 90px; height: 150px; bottom: 6%; right: 10%; }
  .hero__leaf--3 { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(90deg, #B8752E 0%, #C08A3E 100%);
  padding: 1rem 5%;
}
.trust-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 5%;
  background: linear-gradient(160deg, #F3EFE0 0%, #F0E2C4 100%);
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.about__image-col { position: relative; }
.about__img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--rose-pale);
}
.about__img { object-position: top center; }
.about__quote-card {
  background: linear-gradient(135deg, var(--green-dark) 0%, #241B12 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--rose);
}
.about__quote-card p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.about__quote-card span {
  font-size: 0.8rem;
  color: var(--rose-light);
  letter-spacing: 0.05em;
}
.about__text-col { padding-top: 1rem; }
.about__role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--rose);
  font-weight: 500;
  text-transform: uppercase;
  margin: 0.75rem 0 1.25rem;
}
.about__body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about__credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.cred-item { text-align: center; }
.cred-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
}
.cred-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: 6rem 5%;
  background: linear-gradient(160deg, #F6F0DF 0%, #ECD9B8 100%);
}
.products__header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.products__sub {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 550px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* TABS */
.tabs {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: #fff;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--rose); color: var(--rose); }
.tab-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

/* TAB CONTENT */
.tab-content { display: none; }
.tab-content.active { display: grid; }

/* PRODUCT GRID */
.products__grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--rose-pale);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__img-wrap {
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  object-position: center;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }
.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.product-card__tag {
  display: inline-block;
  background: var(--rose-pale);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
}
.product-card__body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
}
.product-card__body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

/* ============================================================
   AWARDS
   ============================================================ */
.awards {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #16241A 0%, #2C4423 100%);
  overflow: hidden;
}
.awards__header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.awards__header .section-label { color: var(--rose-light); }
.awards__header .section-heading { color: #fff; }
.awards__track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.awards__track-wrap::-webkit-scrollbar { display: none; }
.awards__track {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  width: max-content;
}
.award-card {
  width: 260px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,117,46,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s;
}
.award-card:hover { transform: scale(1.02); }
.award-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.award-card p {
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: rgba(246,240,223,0.85);
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  padding: 5rem 5%;
  background: linear-gradient(160deg, #F0DCB8 0%, #8AA678 100%);
}
.testimonial__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__icon {
  width: 40px;
  height: 40px;
  color: #16241A;
  margin: 0 auto 1.5rem;
}
.testimonial__text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  font-size: 0.85rem;
  color: #16241A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0F1A11;
  padding: 4rem 5% 0;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
  margin-bottom: 1rem;
}
.footer__tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--rose-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.footer__desc {
  font-size: 0.85rem;
  color: rgba(246,240,223,0.5);
  line-height: 1.7;
}
.footer__links h4, .footer__contact h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  color: rgba(246,240,223,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--rose-light); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(246,240,223,0.75);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__social svg { flex-shrink: 0; }
.footer__social:hover { color: var(--rose-light); }
.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(246,240,223,0.3);
  text-align: center;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__buttons { justify-content: center; }
  .hero__image-wrap { height: 300px; }

  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__img-frame { height: 350px; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 1.5rem 5%;
    gap: 1.25rem;
    border-top: 1px solid rgba(184,117,46,0.2);
  }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }

  .trust-bar__inner { justify-content: center; gap: 0.75rem; }
  .trust-item span { font-size: 0.78rem; }

  .about__credentials { gap: 1.25rem; }

  /* ---- compact 2-column product grid, e-commerce style ---- */
  .products { padding: 3rem 4%; }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .product-card__img-wrap { height: 140px; }
  .product-card__body { padding: 0.75rem; gap: 0.35rem; }
  .product-card__tag { font-size: 0.65rem; }
  .product-card__body h3 {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .product-card__body p { display: none; }
  .product-card .btn--whatsapp {
    font-size: 0.72rem;
    padding: 0.55rem 0.75rem;
    width: 100%;
    justify-content: center;
  }

  /* ---- awards: consistent sizing + snap scroll + swipe hint ---- */
  .awards__track-wrap {
    scroll-snap-type: x mandatory;
    margin: 0 -4%;
    padding: 0 4%;
  }
  .awards__track { gap: 1rem; }
  .award-card {
    width: 200px;
    scroll-snap-align: start;
  }
  .award-card img {
    height: 180px;
    object-fit: contain;
    background: rgba(246,240,223,0.06);
    padding: 0.5rem;
  }
  .awards__header { text-align: left; }
  .awards__header::after {
    content: 'swipe to see more →';
    display: block;
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: rgba(246,240,223,0.55);
    font-style: italic;
  }
}

/* ── PRODUCT VIDEOS ── */
.videos {
  padding: 5rem 1.5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.videos__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.videos__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  aspect-ratio: 9 / 16;
  max-height: 520px;
}
.video-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--text-dark);
}
@media (max-width: 720px) {
  .videos__grid {
    grid-template-columns: 1fr;
  }
  .video-card {
    max-height: 460px;
    margin: 0 auto;
    max-width: 320px;
  }
}

/* ============================================================
   SIGNATURE: living botanical details
   ============================================================ */

/* warm paper grain — subtle, not decorative noise for its own sake */
body {
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* organic leaf-shaped corners — replaces uniform rounded rectangles
   on the elements that carry the brand's botanical identity */
/* bold organic shape reserved for feature moments (hero, about, video) —
   dialed back on the 18-tile product grid where a strong asymmetric crop
   fights the repetition and makes photos read as mismatched sizes */
.award-card img,
.video-card,
.about__img-frame,
.hero__image-wrap {
  border-radius: 30px 8px 30px 8px !important;
}
.product-card {
  border-radius: var(--radius) !important;
}
.product-card__img-wrap {
  border-radius: var(--radius) var(--radius) 0 0 !important;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card__img-wrap img { border-radius: 0 !important; }

/* nav underline grows in on hover, doesn't just appear */
.nav__links a {
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

/* product enquire button — a small grown-leaf hover lift instead of a flat color swap */
.btn--whatsapp {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22,36,26,0.2);
}

/* accessible focus state, kept visible and on-brand */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   SITE-WIDE COLOR — soft blurred "aurora mesh" glow behind every
   section below the hero. A different technique than sharp leaf
   shapes: large, blurred, overlapping color pools in moss, amber,
   gold and warm coral for a genuinely vivid, glowing backdrop.
   ============================================================ */
.about, .products, .videos, .testimonial, .footer {
  position: relative;
  overflow: hidden;
}
.about > *, .products > *, .videos > *, .testimonial > *, .footer > * {
  position: relative;
  z-index: 1;
}

/* per-section label color overrides so it pops against each bold block */
.about .section-label { color: var(--green-dark); }
.about .section-heading { color: #16241A; }
.products .section-label { color: #16241A; }
.products .section-heading { color: #16241A; }
.videos .videos__header .section-label { color: var(--green-dark); }
.videos .videos__header .section-heading { color: #16241A; }

/* ============================================================
   NAV SEARCH — icon toggle + expandable panel, always reachable
   since the nav is fixed to the top of the page
   ============================================================ */
.nav__search-toggle {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  margin-left: auto;
  margin-right: 0.75rem;
  order: 1;
}
.nav__links { order: 2; }
.nav__hamburger { order: 3; }
.nav__search-panel {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: rgba(22,36,26,0.98);
  backdrop-filter: blur(12px);
  padding: 0.9rem 5%;
  border-bottom: 1px solid rgba(184,117,46,0.25);
  color: var(--rose-light);
}
.nav__search-panel.open { display: flex; }
.nav__search-panel input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
}
.nav__search-panel input::placeholder { color: rgba(246,240,223,0.5); }
.products.search-active .tabs { opacity: 0.35; pointer-events: none; }
.products.search-active .tab-content { display: grid !important; }
.products.search-active .tab-content:not(.active) { margin-top: -1px; }

/* ---- product image is now clickable — hint it ---- */
.product-card__img-wrap { cursor: pointer; position: relative; }
.product-card__img-wrap::after {
  content: 'Tap for details';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.68rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  text-align: center;
}
.product-card:hover .product-card__img-wrap::after { opacity: 1; }

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.product-modal.open { display: flex; }
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,26,17,0.72);
}
.product-modal__panel {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  animation: pmIn 0.25s ease;
}
@keyframes pmIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.product-modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.product-modal__media {
  background: var(--cream-dark);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-modal__media img#pm-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--white);
}
.product-modal__thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-modal__thumbs img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}
.product-modal__thumbs img:hover { opacity: 1; border-color: var(--rose); }
.product-modal__info {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-modal__info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.product-modal__info p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}
.product-modal__info .btn--whatsapp { margin-top: 0.5rem; align-self: flex-start; }

@media (max-width: 640px) {
  .product-modal__panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .nav__search-panel { padding: 0.9rem 6%; }
  .nav__search-toggle { margin-right: 0.5rem; }
  .product-card__img-wrap::after { opacity: 1; font-size: 0.62rem; padding: 0.3rem 0.5rem; }
}

/* ============================================================
   SWAYING LEAVES — carried from the hero into the sections below,
   smaller/fewer, same gentle motion, sitting on the softer palette
   ============================================================ */
.about, .products, .videos, .testimonial {
  position: relative;
  overflow: hidden;
}
.about > *, .products > *, .videos > *, .testimonial > * {
  position: relative;
  z-index: 1;
}
.about::before, .products::before, .videos::before, .testimonial::before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 120px 12px 120px 12px;
  background: linear-gradient(160deg, rgba(184,117,46,0.22), rgba(74,107,60,0.16));
}
.about::before {
  width: 170px; height: 250px;
  top: -40px; right: 6%;
  animation: leafSway1 10s ease-in-out infinite;
}
.products::before {
  width: 140px; height: 210px;
  bottom: -30px; left: 5%;
  animation: leafSway2 8.5s ease-in-out infinite;
}
.videos::before {
  width: 120px; height: 180px;
  top: -25px; left: 8%;
  animation: leafSway3 11.5s ease-in-out infinite;
}
.testimonial::before {
  width: 150px; height: 220px;
  bottom: -35px; right: 6%;
  background: linear-gradient(160deg, rgba(255,253,247,0.25), rgba(74,107,60,0.18));
  animation: leafSway2 9.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .about::before, .products::before, .videos::before, .testimonial::before {
    animation: none !important;
  }
}
@media (max-width: 640px) {
  .about::before, .products::before, .videos::before, .testimonial::before {
    transform: scale(0.65);
    opacity: 0.8;
  }
}
