/* ============================================================
   LUMINA COSMETIC & BOTANICALS — Main Stylesheet v1.1
   CSS custom properties (design tokens) are in style.css which
   is enqueued as 'lumina-tokens' before this file. Every
   var(--*) declaration also carries a hard-coded fallback so
   the site degrades gracefully if tokens ever fail to load.
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #FFFDF8;
  background: var(--cream, #FFFDF8);
  color: #222222;
  color: var(--ink, #222222);
  font-family: "Poppins", system-ui, sans-serif;
  font-family: var(--font-sans, "Poppins", system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
svg { vertical-align: middle; }
p { max-width: 64ch; }

/* Screen reader text */
.screen-reader-text, .sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.container {
  width: 100%;
  max-width: 1240px;
  max-width: var(--container, 1240px);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

/* Sections */
.section         { padding-block: clamp(72px, 9vw, 120px); }
.section--cream  { background: #FFFDF8; }
.section--sage   { background: #F3F8F1; }
.section--white  { background: #FFFFFF; }
.py-section      { padding-block: clamp(72px, 9vw, 120px); }
.mt-section      { margin-top: clamp(48px, 6vw, 80px); }
.mt-4  { margin-top: 16px; }
.mt-5  { margin-top: 24px; }
.mt-7  { margin-top: 48px; }
.mt-8  { margin-top: 64px; }
.mt-10 { margin-top: 128px; }
.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, .display {
  font-family: "Playfair Display", Georgia, serif;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
h3 { font-family: "Poppins", system-ui, sans-serif; font-weight: 600; font-size: 1.5rem; letter-spacing: 0; }
h4 { font-family: "Poppins", system-ui, sans-serif; font-weight: 600; font-size: 1.25rem; }

/* Entry content body */
.entry-content h2,.entry-content h3,.entry-content h4 { margin-block: 1.5em 0.5em; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content ul,.entry-content ol { margin-bottom: 1.2em; padding-left: 1.5em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: #14853B; text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid #F47A20;
  padding-left: 24px; margin: 1.5em 0;
  font-style: italic; color: #4A524A;
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow--center { justify-content: center; }
.eyebrow__line { flex: 0 0 32px; height: 1px; background: rgba(244,122,32,0.7); display: block; }
.eyebrow__text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #14853B;
  color: var(--green-600, #14853B);
}
.eyebrow__text--lotus { color: #FB9446; color: var(--orange-400, #FB9446); }

/* ============================================================
   SECTION HEADING BLOCK
   ============================================================ */
.section-head { max-width: 680px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; line-height: 1.1;
  color: #0F6A2E;
  color: var(--green-700, #0F6A2E);
  margin-top: 16px;
}
.section-head--dark .section-head__title { color: #fff; }
.section-head__sub { font-size: 1.05rem; line-height: 1.65; color: #4A524A; margin-top: 16px; }
.section-head--dark .section-head__sub { color: rgba(220,239,226,0.9); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  transition: background 280ms ease, box-shadow 280ms ease, transform 280ms ease, border-color 280ms ease;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn:active { transform: scale(0.97) !important; }
.btn--sm   { font-size: 0.875rem; padding: 10px 20px; }
.btn--md   { font-size: 15px;     padding: 14px 28px; }
.btn--lg   { font-size: 1rem;     padding: 16px 32px; }
.btn--full { width: 100%; }

.btn--primary { background: #14853B; color: #fff; box-shadow: 0 4px 14px rgba(20,133,59,0.25); border-color: #14853B; }
.btn--primary:hover, .btn--primary:focus-visible { background: #0F6A2E; border-color: #0F6A2E; box-shadow: 0 14px 36px rgba(20,133,59,0.22); transform: translateY(-2px); color: #fff; }

.btn--lotus { background: #F47A20; color: #fff; box-shadow: 0 4px 14px rgba(244,122,32,0.25); border-color: #F47A20; }
.btn--lotus:hover, .btn--lotus:focus-visible { background: #E06A12; border-color: #E06A12; box-shadow: 0 18px 40px rgba(244,122,32,0.30); transform: translateY(-2px); color: #fff; }

.btn--outline { background: rgba(255,255,255,0.4); border-color: rgba(20,133,59,0.35); color: #0F6A2E; }
.btn--outline:hover, .btn--outline:focus-visible { background: #14853B; border-color: #14853B; color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; color: #0F6A2E; box-shadow: 0 4px 14px rgba(20,133,59,0.07); border-color: rgba(255,255,255,0.6); }
.btn--light:hover { box-shadow: 0 14px 36px rgba(20,133,59,0.14); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: #0F6A2E; }
.btn--ghost:hover { background: #E4F3E9; }

.btn__icon { font-size: 0.85em; }

/* ============================================================
   ICON CHIPS
   ============================================================ */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-chip--sm  { width: 44px; height: 44px; font-size: 1rem; }
.icon-chip--md  { width: 56px; height: 56px; font-size: 1.25rem; }
.icon-chip--lg  { width: 64px; height: 64px; font-size: 1.5rem; }
.icon-chip--green { background: #E4F3E9; color: #14853B; }
.icon-chip--lotus { background: #FDEEDF; color: #E06A12; }
.icon-chip--white { background: #fff; color: #14853B; box-shadow: 0 4px 14px rgba(20,133,59,0.10); }

/* ============================================================
   CHIPS (tag pills)
   ============================================================ */
.chip {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  background: #F3F8F1; border: 1px solid #E9EFE7;
  color: #0F6A2E; font-size: 13px; font-weight: 500;
  padding: 6px 14px; line-height: 1;
}
.chip--sm { font-size: 12.5px; padding: 4px 12px; }

/* ============================================================
   CARDS
   ============================================================ */
.card--hover {
  transition: transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms cubic-bezier(.16,1,.3,1);
}
.card--hover:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(20,133,59,0.13); }

/* ============================================================
   GLASS UTILITY
   ============================================================ */
.glass {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.65);
}

/* ============================================================
   DECORATIVE SVGS
   ============================================================ */
.blob, .sprig { pointer-events: none; overflow: visible; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms cubic-bezier(.16,1,.3,1), transform 520ms cubic-bezier(.16,1,.3,1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   FLOAT ANIMATION
   ============================================================ */
@keyframes float-slow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-slow  { animation: float-slow 5s ease-in-out infinite; }
.float-delay { animation-delay: 1.8s; }

/* Star rating */
.star-rating { display: flex; gap: 4px; color: #F47A20; font-size: 13px; }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: #0F6A2E;
  color: rgba(220,239,226,0.9);
  font-size: 13px; font-weight: 500;
}
.top-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 40px;
}
.top-strip__left  { display: flex; align-items: center; gap: 8px; }
.top-strip__icon  { color: #FB9446; font-size: 12px; }
.top-strip__right { display: none; align-items: center; gap: 24px; }
.top-strip__link  { display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color 160ms; white-space: nowrap; }
.top-strip__link:hover { color: #fff; }
.top-strip__link .fa-solid { font-size: 11px; color: #FB9446; flex-shrink: 0; }
.top-strip__link-text { font-size: 13px; }
.top-strip__divider { width: 1px; height: 16px; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.top-strip__social { display: flex; align-items: center; gap: 16px; }
.top-strip__social-link { display: flex; align-items: center; color: rgba(220,239,226,0.8); font-size: 14px; transition: color 160ms; }
.top-strip__social-link:hover { color: #FB9446; }
/* Show email only on md+, phone + socials always on desktop */
@media (min-width: 768px) { .top-strip__right { display: flex; } }
@media (max-width: 767px) { .top-strip__right { display: none; } }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #FFFDF8;
  transition: box-shadow 280ms ease, background 280ms ease;
}
.site-header.is-stuck {
  background: rgba(255,253,248,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 14px rgba(20,133,59,0.08);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo__img { width: 48px; height: 48px; object-fit: contain; }
.site-logo__text { line-height: 1; }
.site-logo__name {
  display: block; font-family: "Playfair Display", Georgia, serif;
  font-size: 22px; font-weight: 700; color: #14853B; letter-spacing: -0.02em;
}
.site-logo__tagline {
  display: block; font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: #F47A20; margin-top: 2px;
}

/* Primary nav */
.main-nav { display: none; }
.main-nav__list { display: flex; align-items: center; gap: 28px; }
.main-nav__list a {
  font-size: 15px; font-weight: 500; color: #222222;
  padding-block: 8px; position: relative; transition: color 160ms;
}
.main-nav__list a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: #F47A20;
  border-radius: 2px; transition: width 280ms ease;
}
/* Active state driven by JS scroll-spy (.js-nav-active) for anchor links.
   WordPress .current-menu-item fires on ALL homepage anchor items so we
   keep it only as a non-homepage fallback (e.g. Blog, Shop pages). */
.main-nav__list a:hover { color: #14853B; }
.main-nav__list .js-nav-active > a,
.main-nav__list li:not(.menu-item-type-custom) > a[aria-current="page"] { color: #14853B; }
.main-nav__list .js-nav-active > a::after,
.main-nav__list li:not(.menu-item-type-custom) > a[aria-current="page"]::after { width: 100%; }

/* Header actions */
.site-header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-icon-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: #0F6A2E; transition: background 160ms;
}
.header-icon-btn:hover { background: #E4F3E9; }
.header-enquiry-btn { display: none; }
.mobile-menu-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: #0F6A2E; transition: background 160ms;
}
.mobile-menu-btn:hover { background: #E4F3E9; }

/* Search bar */
.search-bar {
  background: #fff; border-top: 1px solid #E9EFE7;
  max-height: 0; overflow: hidden;
  transition: max-height 280ms cubic-bezier(.16,1,.3,1);
}
.search-bar.is-open { max-height: 120px; }
.search-bar__form { display: flex; align-items: center; gap: 12px; padding-block: 16px; }
.search-bar__input {
  flex: 1; border: 1.5px solid #E9EFE7; border-radius: 999px;
  padding: 10px 20px; font-size: 15px; background: #FFFDF8;
  color: #222222; outline: none; transition: border-color 160ms, box-shadow 160ms;
}
.search-bar__input:focus { border-color: #14853B; box-shadow: 0 0 0 3px rgba(20,133,59,0.12); }
.search-bar__close { color: #7C857B; transition: color 160ms; }
.search-bar__close:hover { color: #14853B; }

/* Mobile nav */
.mobile-nav { background: #fff; border-top: 1px solid #E9EFE7; max-height: 0; overflow: hidden; transition: max-height 520ms cubic-bezier(.16,1,.3,1); }
.mobile-nav.is-open { max-height: 600px; }
.mobile-nav__inner { padding: 12px 0 24px; }
.mobile-nav__list a {
  display: block; padding: 14px 24px; font-size: 15px; font-weight: 500;
  color: #222222; border-bottom: 1px solid rgba(233,239,231,.7); transition: color 160ms, background 160ms;
}
.mobile-nav__list a:hover { color: #14853B; background: #E4F3E9; }
.mobile-nav__list .js-nav-active > a { color: #14853B; background: #E4F3E9; }
.mobile-nav__cta { display: block; margin: 16px 24px 0; text-align: center; }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-enquiry-btn { display: inline-flex; }
  .mobile-menu-btn { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 82% 8%, #E4F3E9 0%, #F3F8F1 42%, #FFFDF8 100%);
}

.hero__inner {
  display: grid;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 96px);
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1.04fr; }
}

/* ---- Hero copy (left) ---- */

/* Premium badge pill */
.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 13px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--green-200);
  box-shadow: var(--shadow-xs);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--green-600);
}
.hero__badge-pill i { font-size: 0.8rem; color: var(--green-500); }

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-700);
  margin-top: 20px;
  letter-spacing: -0.02em;
}
.hero__heading .hero__amp { color: var(--green-500); font-style: italic; }
.hero__heading em {
  font-style: italic;
  color: var(--orange-500);
}
.hero__subheading {
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 500px;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Feature highlight pills */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 10px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur, 200ms) ease, box-shadow var(--dur, 200ms) ease;
}
.hero__feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.hero__feature-icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 13px;
  flex-shrink: 0;
}
.hero__feature-label { font-size: 0.8rem; font-weight: 600; color: var(--green-700); white-space: nowrap; }

/* Social proof */
.hero__proof { display: flex; align-items: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero__stars  { display: flex; gap: 2px; color: var(--orange-500); font-size: 15px; }
.hero__proof-text { font-size: 0.875rem; color: var(--ink-soft); }
.hero__proof-text strong { color: var(--green-700); font-weight: 600; }

/* ---- Hero visual (right) ---- */
.hero__visual {
  position: relative;
  width: 100%;
}
.hero__image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1536 / 1024;
  background: var(--sage-bg);
}
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating glass cards */
.hero__fcard {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
}
.hero__fcard--tl { top: 7%;  left: -4%; }
.hero__fcard--tr { top: 16%; right: -5%; }
.hero__fcard--product { bottom: 9%; right: -4%; padding-right: 11px; }

.hero__fcard-icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  font-size: 14px;
}
.hero__fcard-icon--green  { background: var(--green-100);  color: var(--green-600); }
.hero__fcard-icon--orange { background: var(--orange-100); color: var(--orange-600); }

.hero__fcard-thumb {
  width: 40px; height: 40px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
}
.hero__fcard-thumb img { width: 100%; height: 100%; object-fit: cover; }

.hero__fcard-title { font-size: 13px; font-weight: 600; color: var(--green-700); line-height: 1.2; }
.hero__fcard-sub   { font-size: 11px; color: var(--ink-faint); margin-top: 2px; }

.hero__fcard-plus {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-600); color: #fff; font-size: 11px;
  margin-left: 2px;
}

/* ---- Bottom trust bar ---- */
.hero__trustbar {
  background: linear-gradient(90deg, var(--green-700) 0%, var(--green-600) 100%);
  color: #fff;
}
.hero__trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 64px);
  padding-block: 16px;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}
.hero__trust-item i { font-size: 0.95rem; opacity: 0.92; }
/* Vertical dividers between items */
.hero__trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(clamp(20px, 5vw, 64px) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.28);
}

/* ---- Decorative botanical elements ---- */
.hero__blob { position: absolute; pointer-events: none; z-index: 0; }
.hero__blob--tl { left: -130px; top: -130px; width: 440px; height: 440px; opacity: 0.45; }
.hero__blob--br { right: -150px; bottom: -120px; width: 460px; height: 460px; opacity: 0.4; }

.hero__leaf { position: absolute; pointer-events: none; z-index: 0; color: var(--green-200); }
.hero__leaf--1 { left: 4%; bottom: 22%; font-size: 3rem; opacity: 0.55; transform: rotate(24deg); }
.hero__leaf--2 { left: 44%; top: 9%; font-size: 2.2rem; opacity: 0.45; }

/* ---- Entrance animations (skipped for reduced-motion) ---- */
@media (prefers-reduced-motion: no-preference) {
  [data-hero-anim] {
    opacity: 0;
    animation: heroFadeUp 620ms cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: var(--d, 0ms);
  }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .hero__inner { text-align: center; }
  .hero__badge-pill,
  .hero__buttons,
  .hero__features,
  .hero__proof { justify-content: center; }
  .hero__subheading { margin-inline: auto; }
  .hero__visual { max-width: 560px; margin-inline: auto; }
  .hero__fcard--tl { left: 0; }
  .hero__fcard--tr { right: 0; }
  .hero__fcard--product { right: 0; }
}

@media (max-width: 600px) {
  .hero__fcard { padding: 9px 11px; gap: 8px; border-radius: var(--r-md); }
  .hero__fcard-title { font-size: 11.5px; }
  .hero__fcard-sub   { font-size: 10px; }
  .hero__fcard-icon  { width: 28px; height: 28px; font-size: 12px; }
  .hero__fcard--tl { top: 4%; left: -2%; }
  .hero__fcard--tr { top: 12%; right: -2%; }
  .hero__fcard--product { bottom: 5%; right: -2%; max-width: 70%; }
  .hero__fcard--product .hero__fcard-thumb { width: 34px; height: 34px; }
  /* keep feature pills tidy on small screens */
  .hero__feature { padding: 8px 13px 8px 9px; }
  .hero__feature-label { font-size: 0.75rem; }
  .hero__trustbar-inner { gap: 18px; }
  .hero__trust-item { font-size: 0.8rem; }
  .hero__trust-item:not(:last-child)::after { right: -9px; }
}

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3,1fr); } }

.cat-card {
  position: relative;
  background: #fff;
  border: 1px solid #E9EFE7;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20,133,59,0.07);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(20,133,59,0.13); }
.cat-card__blob {
  position: absolute; top: -40px; right: -40px;
  width: 176px; height: 176px; opacity: 0.65;
  transition: transform 700ms ease;
  pointer-events: none;
  z-index: 0;
}
.cat-card:hover .cat-card__blob { transform: scale(1.1); }
.cat-card__body { padding: clamp(24px,3vw,32px); position: relative; z-index: 1; }
.cat-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: #0F6A2E;
  margin-top: 24px; line-height: 1.2;
}
.cat-card__desc { font-size: 15px; line-height: 1.65; color: #4A524A; margin-top: 10px; }
.cat-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.cat-card__count { font-size: 0.875rem; color: #7C857B; margin-top: 16px; }
.cat-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #E06A12;
  margin-top: 24px;
  transition: gap 280ms ease;
}
.cat-card:hover .cat-card__link { gap: 12px; }

/* ============================================================
   PRODUCTS GRID (best-sellers + WooCommerce shop)
   ============================================================ */
.products-grid, ul.products {
  display: grid; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 640px)  { .products-grid, ul.products { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .products-grid, ul.products { grid-template-columns: repeat(3,1fr); } }

/* ---- Product Card ---- */
.product-card {
  background: #F4F7F0;
  border: 1px solid #E0E8D8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,133,59,0.07);
  display: flex; flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(20,133,59,0.12);
}

/* Image area — softer botanical gradient */
.product-card__img-wrap {
  position: relative;
  height: 260px;
  background: linear-gradient(145deg, #E0EBDA 0%, #D2E2CA 100%);
  overflow: hidden;
}

/* Botanical leaf illustration — top-right of image area */
.product-card__leaf-deco {
  position: absolute;
  top: -6px; right: -6px;
  width: 150px; height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  transform: rotate(8deg);
}

/* Category tag with icon */
.product-card__tag {
  position: absolute; left: 14px; top: 14px;
  z-index: 10;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 12px 5px 9px;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: #14853B;
  box-shadow: 0 2px 8px rgba(20,133,59,0.12);
}
.product-card__tag i { font-size: 9px; }

.product-card__badge {
  position: absolute; right: 14px; top: 14px; z-index: 10;
  background: #F47A20; color: #fff;
  border-radius: 999px; padding: 4px 10px;
  font-size: 11px; font-weight: 700;
}

.product-card__img-blob {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.45;
}

.product-card__img-link {
  position: absolute;
  inset: 0;
  display: block;
}

.product-card__img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  position: relative; z-index: 1;
  transition: transform 800ms ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }

/* Card body — white panel */
.product-card__body {
  padding: 22px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
  background: #fff;
}

.product-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem; font-weight: 700;
  line-height: 1.35; color: #0F6A2E;
  letter-spacing: -0.01em;
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: #14853B; }

/* Botanical seedling divider */
.product-card__divider {
  text-align: center;
  margin: 10px 0 8px;
  color: #6AAE6A;
  font-size: 15px;
  line-height: 1;
}

/* Benefit chips with icons */
.product-card__benefits {
  display: flex; flex-wrap: wrap; gap: 7px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 18px; /* minimum gap before footer */
}
.product-card__benefits .chip--sm {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  padding: 5px 13px;
  background: #fff; color: #3A6A3A;
  border: 1.5px solid #C8E4C4; border-radius: 999px;
  white-space: nowrap;
}
.product-card__benefits .chip--sm i { font-size: 10px; color: #3A8A3A; }

/* Footer — always pinned to bottom, price left, button right */
.product-card__footer {
  margin-top: auto;  /* absorbs remaining space, pins footer to bottom */
  padding-top: 18px;
  border-top: 1.5px dashed #E4EFE0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-cta-row { display: flex; justify-content: center; margin-top: clamp(32px,4vw,48px); }
.section-empty   { text-align: center; padding: 48px 16px; color: #7C857B; font-size: 1.05rem; }

/* ============================================================
   LIFESTYLE SECTION
   ============================================================ */
.lifestyle { position: relative; overflow: hidden; }
.lifestyle__blob--tr  { position: absolute; right: -96px; top: 40px; width: 384px; height: 384px; opacity: 0.4; pointer-events: none; }
.lifestyle__sprig     { position: absolute; left: 46%; top: -24px; height: 160px; opacity: 0.12; transform: rotate(6deg); pointer-events: none; }

.lifestyle__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .lifestyle__grid { grid-template-columns: 1fr 1fr; } }

.lifestyle__image-wrap { position: relative; }
.lifestyle__image-frame { overflow: hidden; border-radius: 32px; box-shadow: 0 28px 60px rgba(15,106,46,0.14); }
.lifestyle__image {
  width: 100%; height: clamp(380px, 50vw, 540px);
  object-fit: cover;
  transition: transform 1200ms ease;
}
.lifestyle__image-wrap:hover .lifestyle__image { transform: scale(1.04); }
.lifestyle__image-blob { position: absolute; left: -40px; top: -40px; z-index: -1; width: 192px; height: 192px; opacity: 0.6; }

.lifestyle__quote {
  position: absolute; bottom: -24px; right: 24px;
  max-width: 230px;
  border-radius: 22px; padding: 18px 20px;
  box-shadow: 0 14px 36px rgba(20,133,59,0.14);
}
.lifestyle__quote-icon { color: #F47A20; font-size: 1.1rem; }
.lifestyle__quote-text { font-size: 13.5px; font-weight: 500; line-height: 1.4; color: #0F6A2E; margin-top: 4px; }

.lifestyle__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 700; line-height: 1.08; color: #0F6A2E; margin-top: 16px;
}
.lifestyle__desc { font-size: 1.05rem; line-height: 1.7; color: #4A524A; margin-top: 20px; max-width: 560px; }
.lifestyle__points { display: grid; gap: 20px; margin-top: 28px; }
@media (min-width: 640px) { .lifestyle__points { grid-template-columns: 1fr 1fr; } }
.lifestyle__point { display: flex; gap: 16px; align-items: flex-start; }
.lifestyle__point-title { font-weight: 600; color: #0F6A2E; font-size: 0.9375rem; }
.lifestyle__point-desc  { font-size: 14px; line-height: 1.6; color: #4A524A; margin-top: 2px; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .brand-story__grid { grid-template-columns: 1fr 1fr; } }
.story-order-image   { order: 1; }
.story-order-content { order: 2; }
@media (min-width: 1024px) { .story-order-image { order: 2; } .story-order-content { order: 1; } }

.brand-story__image-wrap { position: relative; }
.brand-story__image-frame { overflow: hidden; border-radius: 32px; box-shadow: 0 28px 60px rgba(15,106,46,0.14); }
.brand-story__image {
  width: 100%; height: clamp(380px, 50vw, 520px);
  object-fit: cover; transition: transform 1200ms ease;
}
.brand-story__image-wrap:hover .brand-story__image { transform: scale(1.04); }
.brand-story__blob { position: absolute; left: -40px; bottom: -40px; z-index: -1; width: 224px; height: 224px; opacity: 0.7; }

.brand-story__stat-card {
  position: absolute; bottom: -28px; left: 28px;
  border-radius: 22px; padding: 20px 24px;
  box-shadow: 0 14px 36px rgba(20,133,59,0.15);
}
.brand-story__stat-num { font-family: "Playfair Display", Georgia, serif; font-size: 2.25rem; font-weight: 700; color: #14853B; line-height: 1; }
.brand-story__stat-label { font-size: 13px; font-weight: 500; color: #4A524A; margin-top: 4px; }
.brand-story__subbrand { position: absolute; right: 24px; top: 24px; }
.brand-story__tranaya  { height: 36px; width: auto; opacity: 0.9; filter: drop-shadow(0 2px 4px rgba(0,0,0,.12)); }

.brand-story__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700; line-height: 1.1; color: #0F6A2E; margin-top: 16px;
}
.brand-story__desc    { font-size: 1.05rem; line-height: 1.7; color: #4A524A; margin-top: 20px; }
.brand-story__benefits { display: grid; gap: 20px; margin-top: 32px; }
@media (min-width: 640px) { .brand-story__benefits { grid-template-columns: 1fr 1fr; } }
.brand-story__benefit { display: flex; align-items: center; gap: 16px; }
.brand-story__benefit-text { font-weight: 500; color: #0F6A2E; font-size: 0.9375rem; }

/* ============================================================
   WHY LUMINA
   ============================================================ */
.why-lumina { position: relative; overflow: hidden; }
.why-lumina__decor-icon { position: absolute; right: 6%; top: 12%; color: rgba(200,233,210,.45); font-size: 7rem; pointer-events: none; }
.why-lumina__grid { display: grid; gap: 28px; }
@media (min-width: 640px)  { .why-lumina__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .why-lumina__grid { grid-template-columns: repeat(4,1fr); } }

.why-lumina__card {
  background: #fff; border: 1px solid #E9EFE7;
  border-radius: 22px; padding: 28px; text-align: center;
  box-shadow: 0 4px 14px rgba(20,133,59,0.06);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.why-lumina__card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(20,133,59,0.13); }
.why-lumina__icon-wrap {
  display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 14px;
  background: #E4F3E9; color: #14853B; font-size: 1.5rem;
  margin-inline: auto;
  transition: background 280ms ease, color 280ms ease;
}
.why-lumina__card:hover .why-lumina__icon-wrap { background: #14853B; color: #fff; }
.why-lumina__card-title { font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #0F6A2E; margin-top: 20px; }
.why-lumina__card-desc  { font-size: 14px; line-height: 1.65; color: #4A524A; margin-top: 10px; }

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients { position: relative; overflow: hidden; }
.ingredients__blob { position: absolute; pointer-events: none; }
.ingredients__blob--tl { left: -128px; top: 96px; width: 440px; height: 440px; opacity: 0.4; }
.ingredients__blob--br { right: -112px; bottom: 40px; width: 320px; height: 320px; opacity: 0.4; }
.ingredients__sprig { position: absolute; right: 8%; top: 40px; height: 176px; opacity: 0.12; transform: rotate(200deg); pointer-events: none; }

.ingredients__grid {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px,3vw,40px) clamp(20px,3vw,32px);
}
.ingredients__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: clamp(120px,14vw,155px);
}
.ingredients__medallion-wrap { position: relative; }
.ingredients__item-blob { position: absolute; left: -20px; top: -20px; width: 112px; height: 112px; opacity: 0.7; transition: transform 700ms ease; }
.ingredients__item:hover .ingredients__item-blob { transform: scale(1.1); }
.ingredients__medallion {
  position: relative; display: grid; place-items: center;
  width: 112px; height: 112px; border-radius: 50%;
  background: linear-gradient(135deg,#1E9B49 0%,#14853B 45%,#0F6A2E 100%);
  box-shadow: 0 14px 36px rgba(20,133,59,0.18);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.ingredients__item:hover .ingredients__medallion { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(20,133,59,0.22); }
.ingredients__medallion--warm { background: linear-gradient(135deg,#FB9446 0%,#F47A20 100%); box-shadow: 0 14px 36px rgba(244,122,32,0.22); }
.ingredients__medallion-glare {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.45), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.ingredients__medallion-inner {
  display: grid; place-items: center;
  width: 72px; height: 72px; border-radius: 50%;
  font-size: 1.5rem; color: #fff;
  border: 1px solid rgba(255,255,255,.4); overflow: hidden;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ingredients__medallion-img { width: 72px; height: 72px; object-fit: cover; }
.ingredients__name    { font-family: "Playfair Display", Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #0F6A2E; margin-top: 16px; }
.ingredients__benefit { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #7C857B; margin-top: 4px; }

/* ============================================================
   BENEFITS BANNER
   ============================================================ */
.benefits-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg,#1E9B49 0%,#14853B 45%,#0F6A2E 100%);
  padding-block: clamp(56px,8vw,96px);
}
.benefits-banner__decor { position: absolute; pointer-events: none; color: rgba(255,255,255,.1); }
.benefits-banner__decor--l { left: 8%; top: 10%; font-size: 8rem; transform: rotate(18deg); }
.benefits-banner__decor--r { right: 6%; bottom: 8%; font-size: 8rem; }
.benefits-banner__head { text-align: center; }
.benefits-banner__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 700; line-height: 1.1; color: #fff;
  margin-top: 16px;
}
.benefits-banner__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 48px; }
@media (min-width: 1024px) { .benefits-banner__grid { grid-template-columns: repeat(4,1fr); } }
.benefits-banner__stat { text-align: center; }
.benefits-banner__stat-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.15); color: #FB9446; font-size: 1.25rem;
  margin-inline: auto;
}
.benefits-banner__stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 700;
  line-height: 1; color: #fff; margin-top: 16px;
}
.benefits-banner__stat-label { font-size: 14px; font-weight: 500; color: rgba(220,239,226,.9); margin-top: 8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { position: relative; overflow: hidden; }
.testimonials__blob  { position: absolute; left: -96px; top: 33%; width: 320px; height: 320px; opacity: 0.4; pointer-events: none; }
.testimonials__sprig { position: absolute; right: 4%; top: 8%; height: 160px; opacity: 0.12; pointer-events: none; }
.testimonials__grid  { display: grid; gap: 28px; }
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  position: relative;
  background: #fff; border: 1px solid #E9EFE7;
  border-radius: 22px; padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 14px rgba(20,133,59,0.07);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,133,59,0.13); }

.testimonial-card__quote-badge {
  position: absolute; top: -20px; left: 28px;
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: #F47A20; color: #fff;
  box-shadow: 0 8px 24px rgba(244,122,32,0.30); font-size: 1.1rem;
}
.testimonial-card__bg-quote { position: absolute; right: 28px; top: 28px; font-size: 3rem; color: #E4F3E9; }
.testimonial-card__review {
  font-size: 15px; line-height: 1.7; color: #4A524A;
  flex: 1; margin-top: 16px; font-style: normal;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; margin-top: 24px;
  border-top: 1px solid #E9EFE7;
}
.testimonial-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg,#1E9B49 0%,#14853B 45%,#0F6A2E 100%);
  display: grid; place-items: center; position: relative;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__avatar-initials {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  position: relative; z-index: 1;
}
.testimonial-card__name { display: block; font-weight: 600; color: #0F6A2E; }
.testimonial-card__loc  {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 12.5px; color: #7C857B; margin-top: 2px;
}
.testimonial-card__loc .fa-location-dot { font-size: 10px; color: #F47A20; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid {
  position: relative; display: grid; gap: 40px;
}
@media (min-width: 640px)  { .process__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4,1fr); } }
.process__connector {
  display: none; position: absolute; left: 0; right: 0; top: 32px;
  height: 2px; background: #C8E9D2; z-index: 0;
}
@media (min-width: 1024px) { .process__connector { display: block; } }
.process__step { text-align: center; position: relative; z-index: 1; }
.process__icon-wrap {
  position: relative; display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; color: #14853B; font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(20,133,59,0.13);
  outline: 4px solid #F3F8F1; margin-inline: auto;
}
.process__step-num {
  position: absolute; top: -4px; right: -4px;
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: #F47A20; color: #fff;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(244,122,32,0.35);
}
.process__step-title { font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #0F6A2E; margin-top: 20px; }
.process__step-desc  { font-size: 14px; line-height: 1.65; color: #4A524A; margin-top: 8px; margin-inline: auto; max-width: 15rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section__inner {
  position: relative; overflow: hidden;
  border-radius: 32px; border-radius: var(--r-xl,32px);
  padding: clamp(56px,8vw,96px) clamp(24px,6vw,80px);
  text-align: center;
  background: linear-gradient(135deg,#1E9B49 0%,#14853B 45%,#0F6A2E 100%);
  box-shadow: 0 28px 60px rgba(15,106,46,0.18);
}
.cta-section__blob { position: absolute; pointer-events: none; }
.cta-section__blob--tl { left: -64px; top: -64px; width: 288px; height: 288px; opacity: 0.18; }
.cta-section__blob--br { right: -64px; bottom: -80px; width: 320px; height: 320px; opacity: 0.10; }
.cta-section__leaf { position: absolute; pointer-events: none; color: rgba(255,255,255,.1); }
.cta-section__leaf--tr { right: 12%; top: 10%; font-size: 5rem; transform: rotate(12deg); }
.cta-section__leaf--bl { left: 10%; bottom: 12%; font-size: 4rem; }
.cta-section__leaf--tl { left: 16%; top: 14%; font-size: 3.5rem; opacity: 0.08; }
.cta-section__sprig { position: absolute; right: 4%; bottom: 0; height: 208px; opacity: 0.12; transform: rotate(200deg); pointer-events: none; }
.cta-section__content { position: relative; z-index: 1; }
.cta-section__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem,3.8vw,3.3rem);
  font-weight: 700; line-height: 1.1; color: #fff;
  max-width: 800px; margin-inline: auto; margin-top: 20px;
}
.cta-section__desc { font-size: 1.05rem; line-height: 1.65; color: rgba(220,239,226,.92); max-width: 640px; margin-inline: auto; margin-top: 20px; }
.cta-section__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact__grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.contact__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem,3vw,2.6rem); font-weight: 700; line-height: 1.1; color: #0F6A2E; margin-top: 16px;
}
.contact__desc  { font-size: 1rem; line-height: 1.7; color: #4A524A; max-width: 440px; margin-top: 16px; }
.contact__items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact__item  { display: flex; align-items: flex-start; gap: 16px; }
.contact__item-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #7C857B; }
.contact__item-value { font-size: 15px; font-weight: 500; color: #0F6A2E; margin-top: 2px; display: block; transition: color 160ms; }
a.contact__item-value:hover { color: #14853B; }
.contact__map-frame { border: 0; border-radius: 14px; margin-top: 24px; }

/* Contact form */
.contact__form-card { background: #fff; border: 1px solid #E9EFE7; border-radius: 22px; padding: clamp(24px,4vw,36px); box-shadow: 0 14px 36px rgba(20,133,59,0.10); }
.contact__form-title { font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #0F6A2E; }
.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-form__row { display: grid; gap: 20px; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field__label { font-size: 13px; font-weight: 600; color: #0F6A2E; }
.form-field__label span { color: #F47A20; margin-left: 2px; }
.form-field__input {
  width: 100%; border: 1.5px solid #E9EFE7; border-radius: 14px;
  padding: 12px 16px; font-size: 15px; background: #FFFDF8; color: #222222;
  outline: none; transition: border-color 160ms, box-shadow 160ms, background 160ms;
}
.form-field__input::placeholder { color: #7C857B; }
.form-field__input:focus { border-color: #14853B; background: #fff; box-shadow: 0 0 0 3px rgba(20,133,59,0.10); }
.form-field__input--textarea { resize: vertical; min-height: 120px; }
.contact-form__status { font-size: 14px; border-radius: 12px; padding: 0; overflow: hidden; max-height: 0; transition: max-height 280ms ease, padding 280ms ease; }
.contact-form__status.is-success { color: #14853B; background: #E4F3E9; padding: 12px 16px; max-height: 100px; }
.contact-form__status.is-error   { color: #c00; background: #fff0f0; padding: 12px 16px; max-height: 100px; }
.g-recaptcha { margin-block: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0F6A2E;
  color: rgba(220,239,226,.8);
  padding-top: clamp(48px,7vw,80px); padding-bottom: 32px;
}
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; } }

.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo__img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.footer-logo__name { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-logo__tagline { display: block; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.26em; color: #FB9446; margin-top: 2px; }
.footer-brand__about { font-size: 14px; line-height: 1.7; color: rgba(220,239,226,.8); max-width: 280px; margin-top: 20px; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social__link {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(220,239,226,.8);
  transition: background 160ms, color 160ms;
}
.footer-social__link:hover { background: #F47A20; color: #fff; }

.footer-nav__title { font-family: "Playfair Display", Georgia, serif; font-size: 1rem; font-weight: 700; color: #fff; }
.footer-nav__list  { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-nav__list a { font-size: 14px; color: rgba(220,239,226,.8); transition: color 160ms, padding-left 160ms; }
.footer-nav__list a:hover { color: #FB9446; padding-left: 4px; }

.footer-newsletter__desc { font-size: 14px; color: rgba(220,239,226,.8); margin-top: 16px; line-height: 1.6; }
.footer-newsletter__form {
  display: flex; overflow: hidden; border-radius: 999px;
  background: rgba(255,255,255,.1); padding: 4px; margin-top: 16px;
}
.footer-newsletter__input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  padding: 10px 16px; font-size: 14px; color: #fff;
}
.footer-newsletter__input::placeholder { color: rgba(220,239,226,.6); }
.footer-newsletter__submit {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #F47A20; color: #fff; flex-shrink: 0;
  transition: background 160ms;
}
.footer-newsletter__submit:hover { background: #E06A12; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding-top: 24px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; color: rgba(220,239,226,.7);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom__links { display: flex; gap: 24px; }
.footer-bottom__links a { transition: color 160ms; }
.footer-bottom__links a:hover { color: #FB9446; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination, .nav-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: clamp(40px,5vw,64px);
}
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 15px; font-weight: 500; color: #4A524A;
  border: 1.5px solid #E9EFE7; transition: background 160ms, color 160ms;
}
.page-numbers:hover, .page-numbers.current { background: #14853B; color: #fff; border-color: #14853B; }
.page-numbers.dots { border: none; width: auto; }

/* ============================================================
   POST CARDS (blog)
   ============================================================ */
.posts-grid { display: grid; gap: 28px; }
@media (min-width: 640px)  { .posts-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3,1fr); } }
.post-card {
  background: #fff; border: 1px solid #E9EFE7; border-radius: 22px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(20,133,59,0.06);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,133,59,0.13); }
.post-card__img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.post-card:hover .post-card__img { transform: scale(1.05); }
.post-card__body { padding: 24px; }
.post-card__title { font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: #0F6A2E; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: #14853B; }
.post-card__excerpt { font-size: 15px; line-height: 1.65; color: #4A524A; margin-top: 12px; }

/* ============================================================
   ARCHIVE / PAGE / SINGLE
   ============================================================ */
.archive-header__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.25rem,4vw,3.25rem); color: #0F6A2E; }
.archive-header__desc  { color: #4A524A; margin-top: 8px; max-width: 60ch; }
.page-content          { max-width: 840px; }
/* WooCommerce block pages (cart, checkout, account) need full container width */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content { max-width: 100%; }
.page-content__title   { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.25rem,4vw,3.25rem); color: #0F6A2E; }
.page-content__header  { margin-bottom: clamp(28px, 4vw, 48px); }
.single-post__hero-img { width: 100%; height: clamp(300px,45vw,560px); object-fit: cover; border-radius: 32px; }
.single-post__title    { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.25rem,4vw,3.25rem); color: #0F6A2E; }
.single-post__meta     { font-size: 0.875rem; color: #7C857B; display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.single-post__meta a   { color: #14853B; }
.single-post__body     { margin-top: 32px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 { position: relative; text-align: center; padding-block: clamp(48px,8vw,96px); }
.error-404__blob { position: absolute; left: 50%; top: -10%; transform: translateX(-50%); width: 500px; height: 500px; opacity: 0.3; pointer-events: none; z-index: 0; }
.error-404__num {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(6rem,15vw,12rem); font-weight: 900;
  color: #E4F3E9; line-height: 1;
}
.error-404__leaf  { font-size: clamp(4rem,10vw,8rem); color: #8FD3A4; margin-inline: clamp(4px,1vw,16px); }
.error-404__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.875rem,3vw,2.5rem); color: #0F6A2E; }
.error-404__desc  { color: #4A524A; max-width: 440px; margin-inline: auto; margin-top: 16px; }
.error-404__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-empty { text-align: center; padding: 48px 16px; }
.search-empty__icon { font-size: 3rem; color: #C8E9D2; margin-bottom: 16px; }

/* ============================================================
   WooCommerce TOOLBAR
   ============================================================ */

/* Shop/archive page heading */
.woocommerce-page .page-title,
.woocommerce h1.page-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #0F6A2E;
  margin-bottom: 24px;
}

/* Toolbar row: result count (left) + ordering dropdown (right) */
.woo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9EFE7;
  margin-bottom: 36px;
}
.woocommerce-result-count {
  font-size: 0.875rem;
  color: #7C857B;
  margin: 0;
}
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select {
  border: 1.5px solid #E9EFE7;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.875rem;
  background: #FFFDF8;
  color: #222222;
  outline: none;
  cursor: pointer;
}

/* WooCommerce breadcrumb */
.woo-breadcrumb { margin-bottom: 32px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumb__item { display: flex; align-items: center; gap: 4px; font-size: 0.875rem; }
.breadcrumb__item a { color: #4A524A; transition: color 160ms; }
.breadcrumb__item a:hover { color: #14853B; }
.breadcrumb__sep { color: #7C857B; font-size: 10px; }

/* Single product */
.product-enquiry { margin-top: 24px; }
.product-enquiry__note { font-size: 0.875rem; color: #7C857B; margin-top: 8px; }

/* ============================================================
   WP BLOCK-EDITOR RESET (prevent global-styles bleed)
   ============================================================ */
.woocommerce-page *:not(code,pre):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]) {
  font-family: "Poppins", system-ui, sans-serif;
}
.woocommerce-page h1,.woocommerce-page h2,.woocommerce-page h3 { font-family: "Playfair Display", Georgia, serif; }
