/* =====================================================================
   MENMAI NATURAL PRODUCTS
   Premium natural-food brand stylesheet
   Design tokens + sections + responsive
   ===================================================================== */

/* ------------------------------- Tokens ----------------------------- */
:root {
  /* Brand palette */
  --primary-green: #0d7774;
  --primary-green-dark: #095f5d;
  --secondary-green: #20b297;
  --secondary-green-soft: #39c6a6;
  --brown: #6b4632;
  --black: #111111;
  --gold: #c89b3c;

  /* Supporting palette */
  --cream: #fff8e8;
  --warm-white: #fffcf5;
  --light-green: #e8f5ef;
  --light-brown: #f4e8dc;

  /* Text */
  --text: var(--black);
  --text-soft: #5c594f;
  --text-on-green: #ffffff;

  /* Sections */
  --footer-dark: #0e2e2b;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 10px 30px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 20px 50px rgba(17, 17, 17, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
}

/* ------------------------------- Reset ------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-green);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--primary-green);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--primary-green);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ----------------------------- Utilities ---------------------------- */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, var(--space-7));
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.eyebrow {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

.eyebrow-center {
  text-align: center;
  display: block;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.stars-lg {
  font-size: 1.25rem;
}

/* ------------------------------ Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(13, 119, 116, 0.32);
}
.btn-primary:hover {
  background: var(--primary-green-dark);
  box-shadow: 0 12px 28px rgba(13, 119, 116, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.btn-ghost:hover {
  background: var(--light-green);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.62rem 1.25rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.wa-icon {
  flex: none;
}

/* =============================== HEADER ============================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 252, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 245, 0.94);
  box-shadow: var(--shadow-sm);
  border-color: rgba(108, 70, 50, 0.12);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.brand-mark {
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.16em;
  color: var(--primary-green);
}

.brand-sub {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav-link {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--text-soft);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--secondary-green);
  transition: width 0.25s ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-green);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
}

/* ---------------------------- Mobile nav ----------------------------- */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: min(320px, 84vw);
  background: var(--cream);
  z-index: 99;
  padding: 2rem 1.7rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-nav-link {
  display: block;
  padding: 0.85rem 0.6rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--light-green);
  color: var(--primary-green);
}
.mobile-nav .btn {
  margin-top: 1.2rem;
}

.nav-overlay {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(17, 17, 17, 0.4);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
}

body.nav-locked {
  overflow: hidden;
}

/* ================================ HERO =============================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(32, 178, 151, 0.14), transparent 60%),
    radial-gradient(45% 50% at 6% 88%, rgba(200, 155, 60, 0.16), transparent 65%),
    var(--cream);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: 8%;
  right: -8%;
  width: clamp(300px, 42vw, 560px);
  height: clamp(300px, 42vw, 560px);
  background: radial-gradient(circle at 30% 30%, #ffe9b8, #fbe3ae 55%, #f6d69a);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  opacity: 0.9;
  animation: blobFloat 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: 10%;
  background-image: radial-gradient(rgba(107, 70, 50, 0.18) 2px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

@keyframes blobFloat {
  0%,
  100% {
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    transform: translateY(0);
  }
  50% {
    border-radius: 56% 44% 44% 56% / 44% 56% 46% 54%;
    transform: translateY(-14px);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero-title .accent {
  color: var(--primary-green);
  position: relative;
  white-space: nowrap;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: var(--gold);
  opacity: 0.28;
  border-radius: 6px;
  z-index: -1;
}

.hero-sub {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.hero-trust .stars {
  font-size: 1.05rem;
}
.hero-trust strong {
  color: var(--text);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: min(430px, 88vw);
  aspect-ratio: 6 / 7;
  border-radius: 42% 58% 55% 45% / 50% 46% 54% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--warm-white);
  background: var(--light-green);
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(13, 119, 116, 0.18));
  pointer-events: none;
}

#hero-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating review cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 252, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 155, 60, 0.28);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.05rem;
  box-shadow: var(--shadow-md);
  width: min(235px, 58vw);
}

.float-card blockquote {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0.3rem 0 0.5rem;
}

.float-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brown);
}

.float-card .float-stars {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.avatar-inner {
  font-size: 0.78rem;
  font-weight: 700;
}

.float-card-1 {
  top: 2%;
  left: -1%;
  transform: rotate(-4deg);
  animation: floatY 6s ease-in-out infinite;
}

.float-card-2 {
  bottom: 20%;
  right: -3%;
  transform: rotate(3.5deg);
  animation: floatY 7s ease-in-out 0.8s infinite;
}

.float-card-3 {
  bottom: -4%;
  left: 3%;
  transform: rotate(-2deg);
  animation: floatY 6.5s ease-in-out 0.4s infinite;
}

@keyframes floatY {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

/* Decorative floating ingredients */
.ingredient {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  animation: floatY 8s ease-in-out infinite;
}

.i-leaf {
  width: 46px;
  height: 46px;
  top: -3%;
  right: 2%;
  background:
    radial-gradient(ellipse at 30% 30%, var(--secondary-green-soft), var(--secondary-green) 70%);
  border-radius: 0 70% 0 70%;
  transform: rotate(28deg);
  animation-duration: 9s;
}

.i-seed {
  width: 26px;
  height: 26px;
  left: -2%;
  top: 34%;
  background: radial-gradient(circle at 35% 35%, #d8b25f, var(--gold));
  border-radius: 50%;
  box-shadow: inset -2px -3px 5px rgba(107, 70, 50, 0.28);
  animation-duration: 7.5s;
}

.i-honey {
  width: 22px;
  height: 30px;
  right: 6%;
  bottom: 6%;
  background: linear-gradient(180deg, #efc767, #e0a93f);
  border-radius: 50% 50% 55% 55%;
  animation-duration: 8s;
}

.i-berry {
  width: 20px;
  height: 20px;
  left: 4%;
  top: 12%;
  background: radial-gradient(circle at 35% 30%, #f0846f, #b05234 78%);
  border-radius: 50%;
  animation-duration: 6.5s;
}

/* =========================== TRUST STRIP ============================= */
.trust-strip {
  background: var(--warm-white);
  border-block: 1px solid rgba(107, 70, 50, 0.1);
  padding-block: clamp(1.5rem, 3vw, 2.2rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  color: var(--text-soft);
}

.trust-item .stars {
  font-size: 1rem;
}

.trust-num {
  font-size: 0.98rem;
}
.trust-num strong {
  color: var(--text);
  font-weight: 700;
}

.trust-icon {
  width: 26px;
  height: 26px;
  color: var(--primary-green);
}

/* ============================== PRODUCTS ============================= */
.products {
  background: var(--warm-white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.product-card {
  background: var(--cream);
  border: 1px solid rgba(108, 72, 50, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-green);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.product-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text);
}

.product-desc {
  color: var(--text-soft);
  font-size: 0.92rem;
  flex: 1;
}

.product-cta {
  margin-top: 0.8rem;
}
.product-cta .btn {
  width: 100%;
}

.products-note {
  margin-top: 2.2rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ============================== BENEFITS ============================= */
.benefits {
  background: var(--light-green);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(32, 178, 151, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.benefit-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================ WHY CHOOSE US ========================== */
.why-us {
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7 / 8;
}

.why-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 255, 252, 0.96);
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 0.1rem;
}
.why-badge strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-green);
  line-height: 1;
}
.why-badge span {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.why-content .section-title {
  margin-bottom: 0.8rem;
}

.why-list {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}

.check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

/* ============================= CATEGORIES ============================ */
.categories {
  background: var(--cream);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.cat-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(108, 72, 50, 0.1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img {
  transform: scale(1.05);
}

.cat-body {
  padding: 1.3rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.cat-body h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 600;
}

.cat-body p {
  color: var(--text-soft);
  font-size: 0.92rem;
  flex: 1;
}

.cat-cta {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s ease, color 0.2s ease;
}
.cat-card:hover .cat-cta {
  gap: 0.7rem;
  color: var(--primary-green-dark);
}

/* ============================ TESTIMONIALS =========================== */
.testimonials {
  background: var(--warm-white);
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: 1.2rem;
  background: var(--cream);
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  width: fit-content;
  margin-inline: auto;
}
.review-summary strong {
  color: var(--text);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--light-green);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--secondary-green);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card figcaption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ================================ FAQS =============================== */
.faqs {
  background: var(--cream);
}

.faq-container {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--warm-white);
  border: 1px solid rgba(108, 72, 50, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}
.faq-item.is-open {
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s ease;
}
.faq-q:hover {
  color: var(--primary-green);
}

.faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  font-size: 1.15rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-green);
  color: #fff;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner p {
  padding: 0 1.3rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================== FINAL CTA ============================ */
.final-cta {
  position: relative;
  background:
    radial-gradient(60% 90% at 85% 15%, rgba(32, 178, 151, 0.35), transparent 60%),
    radial-gradient(50% 80% at 10% 90%, rgba(200, 155, 60, 0.3), transparent 60%),
    var(--primary-green);
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
}

.final-cta .section-title {
  color: #fff;
}

.final-cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.cta-sprig {
  position: absolute;
  top: -60px;
  left: 8%;
  width: 70px;
  height: 70px;
  background:
    radial-gradient(ellipse at 30% 30%, var(--secondary-green-soft), var(--secondary-green) 70%);
  border-radius: 0 70% 0 70%;
  transform: rotate(-20deg);
  opacity: 0.8;
  pointer-events: none;
}

/* ================================ FOOTER ============================= */
.site-footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--secondary-green-soft);
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col address {
  font-style: normal;
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

.footer-brand .brand-logo {
  width: 108px;
  height: 108px;
  background: #fff;
}

.footer-brand .brand-logo img {
  filter: brightness(1.02) saturate(1.02);
}

.footer-tag {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.services-list li::before {
  content: '\2713';
  color: var(--secondary-green-soft);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.footer-bottom a {
  color: var(--secondary-green-soft);
}
.footer-bottom a:hover {
  color: #fff;
}

/* ============================ BACK TO TOP ============================ */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-green-dark);
}

/* ============================ REVEAL SYSTEM ========================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================= RESPONSIVE ============================ */

/* Phone (default) -> tablet */
@media (min-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 640px) {
  .product-grid,
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet -> desktop */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .hero {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1rem;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 4rem;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1280px;
  }
  .hero-title {
    font-size: 4.3rem;
  }
}

/* ------------------ Reduced motion accessibility -------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}