/* ===== CSS VARIABLES ===== */
  :root {
    --forest: #2D5016;
    --forest-dark: #1A3009;
    --cream: #F5F0E8;
    --cream-dark: #EBE4D4;
    --brown: #8B6914;
    --amber: #E8A020;
    --amber-light: #F4B84A;
    --white: #FFFFFF;
    --text-dark: #1C2B10;
    --text-mid: #4A5C2E;
    --shadow-soft: 0 4px 24px rgba(45,80,22,0.10);
    --shadow-card: 0 8px 32px rgba(45,80,22,0.13);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
  }
  @keyframes counterNum {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes spinLeaf {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.45s; }

  /* ===== NAVBAR ===== */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
  }
  #navbar.scrolled {
    background: rgba(26,48,9,0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
  }
  .nav-logo .leaf { font-size: 1.6rem; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 2px;
    background: var(--amber);
    transition: right var(--transition);
  }
  .nav-links a:hover { color: var(--amber-light); }
  .nav-links a:hover::after { right: 0; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .cart-btn {
    position: relative;
    background: var(--amber);
    border: none;
    color: var(--white);
    padding: 8px 16px 8px 14px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background var(--transition), transform var(--transition);
  }
  .cart-btn:hover { background: var(--amber-light); transform: scale(1.05); }
  .cart-count {
    position: absolute;
    top: -6px; right: -6px;
    background: #E53935;
    color: white;
    border-radius: 50%;
    width: 20px; height: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .cart-count.show { display: flex; }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    width: 26px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s ease;
    display: block;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(26,48,9,0.97);
    padding: 24px 5%;
    z-index: 999;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* ===== HERO — MOBILE-FIRST FULL-SCREEN PHOTO ===== */
#hero {
  position: relative;
  min-height: 100svh;            /* mobile: full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;     /* content sits over bottom area */
  overflow: hidden;
  padding-top: 72px;             /* navbar offset */
}

/* --- Background photo layer --- */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=90&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);        /* slight zoom for Ken Burns start */
  animation: heroBgZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroBgZoom {
  from { transform: scale(1.04); background-position: center 40%; }
  to   { transform: scale(1.12); background-position: center 48%; }
}

/* --- Gradient overlay (deep bottom, lighter top) --- */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 22, 5, 0.55) 0%,
      rgba(10, 22, 5, 0.35) 30%,
      rgba(10, 22, 5, 0.7)  65%,
      rgba(10, 22, 5, 0.92) 100%
    );
}

/* Dot pattern overlay */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

/* --- Main content block (mobile-first: centered) --- */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: auto auto 0;           /* push to bottom vertically on mobile */
  padding: 32px 20px 70px;       /* bottom pad leaves room for 48px ticker */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Badge */
.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp 0.9s ease both;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 160, 32, 0.7);
  animation: pulseBadge 2s infinite;
  flex-shrink: 0;
}
@keyframes pulseBadge {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 160, 32, 0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(232, 160, 32, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 160, 32, 0); }
}

/* Main heading */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 12px;
  font-weight: 700;
  animation: fadeUp 0.9s 0.15s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-title-highlight {
  display: block;
  font-style: italic;
  color: var(--amber-light);
  position: relative;
}
.hero-title-highlight::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -4px;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  border-radius: 2px;
}

/* Subtext */
.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 20px;
  animation: fadeUp 0.9s 0.3s ease both;
}

  /* CTA buttons */
  .btn-primary {
    background: var(--forest);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(45,80,22,0.25);
  }
  .btn-primary:hover {
    background: var(--amber);
    box-shadow: 0 6px 20px rgba(139,105,20,0.3);
    transform: translateY(-2px);
  }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.45s ease both;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, #D48C15 100%);
  color: white;
  border: none;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(232, 160, 32, 0.4);
  transition: all 0.3s ease;
  width: 100%;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(232, 160, 32, 0.55);
}
.hero-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: white;
  transform: translateY(-2px);
}

/* Trust indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.9s 0.6s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.trust-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  text-align: left;
}
.trust-text strong {
  color: white;
  font-weight: 700;
}
.trust-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.18);
  display: none;                 /* hidden on mobile to save space */
}

/* --- Floating stat cards --- */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 12px 18px;
  display: none;                 /* hidden on mobile by default */
  align-items: center;
  gap: 14px;
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  animation: floatFloat 6s infinite ease-in-out alternate;
  z-index: 3;
}
.hfc-top {
  top: 120px;
  left: 5%;
  animation-delay: 0s;
}
.hfc-bottom {
  bottom: 140px;
  right: 5%;
  animation-delay: -3s;
}
.hfc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), #D48C15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(232, 160, 32, 0.45);
  flex-shrink: 0;
}
.hfc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}
.hfc-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}
@keyframes floatFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

/* --- Ticker strip (bottom of hero) --- */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: rgba(8, 18, 4, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(232, 160, 32, 0.2);
  overflow: hidden;
  z-index: 3;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.hero-ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
}
.hero-ticker-track:hover {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  padding: 0 28px;
  white-space: nowrap;
  transition: color 0.2s;
}
.ticker-item:hover {
  color: var(--amber-light);
}
.ticker-dot {
  color: var(--amber);
  font-size: 0.55rem;
  opacity: 0.8;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: none;                /* hidden on mobile */
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}
.hero-scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.hero-scroll-wheel {
  width: 3px; height: 7px;
  background: var(--amber);
  border-radius: 3px;
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
.hero-scroll span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========= TABLET+ OVERRIDES (min-width: 600px) ========= */
@media (min-width: 600px) {
  .hero-content {
    padding: 48px 32px 80px;
  }
}

/* ========= DESKTOP OVERRIDES (min-width: 1024px) ========= */
@media (min-width: 1024px) {
  #hero {
    justify-content: center;       /* vertically center content */
    align-items: flex-start;       /* anchor content to the left */
  }
  .hero-content {
    margin: 0;
    padding: 90px 0 70px 7%;
    align-items: flex-start;
    text-align: left;
    max-width: 58%;
  }
  .hero-title {
    align-items: flex-start;
  }
  .hero-title-highlight::after {
    left: 0;
    transform: none;
    width: 50%;
  }
  .hero-sub {
    margin: 0 0 20px;
  }
  .hero-cta {
    margin-bottom: 24px;
    max-width: none;
    width: auto;
    flex-direction: row;
  }
  .hero-btn-primary,
  .hero-btn-ghost { width: auto; }
  .hero-trust {
    justify-content: flex-start;
  }
  .hero-float-card {
    display: flex;                 /* show floating cards on desktop */
  }
  .hfc-top  { top: 130px; right: 6%; left: auto; }
  .hfc-bottom { bottom: 160px; right: 5%; }
  .hero-scroll { display: flex; bottom: 64px; }
  .hero-stat { padding: 24px 20px; }
  .hero-stat .num { font-size: 2.4rem; }
  .hero-stat .label { font-size: 0.82rem; }
}

@media (min-width: 1400px) {
  .hero-content {
    max-width: 54%;
    padding-left: 9%;
  }
  .hfc-top  { right: 7%; }
  .hfc-bottom { right: 6%; }
}


  /* ===== SECTION BASE ===== */
  section { padding: 100px 5%; }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
  }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    color: var(--forest-dark);
    line-height: 1.22;
    margin-bottom: 20px;
  }
  h2.section-title em {
    font-style: italic;
    color: var(--brown);
  }

  /* ===== ABOUT ===== */
  #about {
    background: var(--white);
    overflow: hidden;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: center;
  }

  /* --- Image column --- */
  .about-img-wrap {
    position: relative;
    padding: 24px 24px 24px 0;
  }
  .about-img-main {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 24px 60px rgba(45,80,22,0.18);
  }
  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
  }
  .about-img-main:hover img { transform: scale(1.04); }
  .about-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(26,48,9,0.55) 100%
    );
    border-radius: 28px;
    pointer-events: none;
  }

  /* Decorative dots background */
  .about-deco-dots {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(var(--amber) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.35;
    z-index: 0;
    border-radius: 12px;
  }

  /* Floating badge (top right of image) */
  .about-float-badge {
    position: absolute;
    top: 0;
    right: -12px;
    background: linear-gradient(135deg, var(--forest), #3D6B20);
    color: white;
    border-radius: 20px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(45,80,22,0.3);
    z-index: 2;
    animation: floatFloat 5s ease-in-out infinite alternate;
  }
  .about-float-badge-icon {
    font-size: 1.6rem;
    line-height: 1;
  }
  .about-float-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .about-float-label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.85;
    margin-top: 2px;
    white-space: nowrap;
  }

  /* Floating card (bottom left of image) */
  .about-float-card {
    position: absolute;
    bottom: 0;
    left: -12px;
    background: white;
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(45,80,22,0.15);
    border: 1.5px solid var(--cream-dark);
    z-index: 2;
    animation: floatFloat 6s 2s ease-in-out infinite alternate-reverse;
  }
  .about-float-card-icon {
    font-size: 1.8rem;
    line-height: 1;
  }
  .about-float-card-text {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.4;
  }
  .about-float-card-text strong {
    color: var(--forest-dark);
    font-weight: 800;
    font-size: 0.85rem;
  }

  /* --- Text column --- */
  .about-lead {
    font-size: 1rem;
    color: #4A5C2E;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  /* Quote block */
  .about-quote {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--cream);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 28px;
  }
  .about-quote-line {
    width: 4px;
    min-height: 48px;
    background: linear-gradient(to bottom, var(--amber), var(--forest));
    border-radius: 4px;
    flex-shrink: 0;
  }
  .about-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--forest-dark);
    line-height: 1.7;
    margin: 0;
  }

  /* Stats row */
  .about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
  }
  .about-stat {
    flex: 1;
    text-align: center;
    padding: 18px 12px;
  }
  .about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
  }
  .about-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
  }
  .about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
  }

  /* Mini feature cards */
  .about-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .mini-card {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--forest-dark);
    transition: all var(--transition);
    border: 1.5px solid transparent;
    cursor: default;
  }
  .mini-card:hover { background: var(--forest); color: white; border-color: var(--forest); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(45,80,22,0.2); }
  .mini-card .icon { font-size: 1.3rem; }

  /* Desktop grid */
  @media (min-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr 1fr;
      gap: 72px;
    }
    .about-img-wrap {
      padding: 32px 32px 32px 0;
    }
    .about-float-badge { right: -16px; }
    .about-float-card  { left: -16px; }
  }

  /* ===== CATALOG ===== */
  #catalog { background: var(--cream); }
  .filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .filter-tag {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    color: var(--text-mid);
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all var(--transition);
  }
  .filter-tag:hover, .filter-tag.active {
    background: var(--forest);
    border-color: var(--forest);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(45,80,22,0.18); }
  .product-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .product-card-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-card-img img { transform: scale(1.08); }
  .product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--forest);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
  }
  .product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .product-desc {
    font-size: 0.85rem;
    color: #7A8C6A;
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
  }
  .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber);
  }
  .add-to-cart {
    background: var(--forest);
    color: white;
    border: none;
    padding: 9px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.83rem;
    transition: all var(--transition);
    white-space: nowrap;
  }
  .add-to-cart:hover { background: var(--amber); transform: scale(1.04); }
  .add-to-cart.added { background: #4CAF50; animation: pulse 0.4s ease; }
  .product-card.hidden { display: none; }

  /* ===== BENEFITS ===== */
  #benefits {
    background: var(--forest-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #benefits::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(45,80,22,0.5) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  #benefits .section-tag { color: var(--amber-light); }
  #benefits h2.section-title { color: var(--white); }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .benefit-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
  }
  .benefit-card:hover {
    background: rgba(232,160,32,0.12);
    border-color: rgba(232,160,32,0.4);
    transform: translateY(-6px);
  }
  .benefit-icon { font-size: 2.6rem; margin-bottom: 18px; }
  .benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--amber-light);
    margin-bottom: 10px;
  }
  .benefit-text { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

  /* ===== REVIEWS ===== */
  #reviews { background: var(--cream); overflow: hidden; }
  .reviews-slider-wrap {
    position: relative;
    margin-top: 48px;
  }
  .reviews-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 10px 4px 30px; /* padding for shadow to not clip */
    margin: -10px -4px -30px;
  }
  .reviews-track::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 calc(50% - 14px);
    width: calc(50% - 14px);
    max-width: calc(50% - 14px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-card);
    scroll-snap-align: start;
    white-space: normal;
  }
  .review-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  .review-avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }
  .review-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
  .review-role { font-size: 0.82rem; color: #8A9C7A; margin-top: 2px; }
  .review-stars { color: var(--amber); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-size: 0.95rem; color: #5A6C4A; line-height: 1.75; font-style: italic; }
  .review-text::before { content: '«'; color: var(--amber); font-size: 1.4rem; font-family: 'Playfair Display', serif; }
  .review-text::after  { content: '»'; color: var(--amber); font-size: 1.4rem; font-family: 'Playfair Display', serif; }
  .slider-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
  }
  .slider-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--forest);
    transition: all var(--transition);
    box-shadow: var(--shadow-soft);
  }
  .slider-btn:hover { background: var(--forest); color: white; border-color: var(--forest); }
  .slider-dots {
    display: flex;
    gap: 8px;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: all var(--transition);
  }
  .dot.active { background: var(--forest); width: 24px; border-radius: 4px; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--forest-dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 5% 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-slogan { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 24px; }
  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li + li { margin-top: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    transition: color var(--transition);
  }
  .footer-col ul li a:hover { color: var(--amber-light); }
  .contact-item {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
    margin-bottom: 12px;
    align-items: flex-start;
  }
  .contact-item span { font-size: 1.1rem; flex-shrink: 0; }
  .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
  }
  .contact-item a:hover { color: var(--amber-light); }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
  }
  .social-link:hover { background: var(--amber); border-color: var(--amber); color: white; transform: translateY(-3px); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ===== CART DRAWER ===== */
  .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }
  .cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 380px;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
  }
  .close-cart {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition);
  }
  .close-cart:hover { background: var(--forest); color: white; }
  .cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
  .cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9AAC8A;
  }
  .cart-empty .empty-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.5; }
  .cart-empty p { font-size: 1rem; font-weight: 600; }
  .cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
    align-items: flex-start;
  }
  .cart-item-img {
    width: 64px; height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 4px; line-height: 1.3; }
  .cart-item-price { font-size: 0.88rem; color: var(--amber); font-weight: 700; margin-bottom: 8px; }
  .qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
  }
  .qty-btn:hover { background: var(--forest); color: white; }
  .qty-num { font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }
  .cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #C0C0A8;
    font-size: 1.1rem;
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
  }
  .cart-item-remove:hover { color: #E53935; }
  .cart-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid var(--cream-dark);
  }
  .cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 1.08rem;
  }
  .cart-total .label { font-weight: 600; color: var(--text-mid); }
  .cart-total .amount { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--amber); }
  .checkout-btn {
    width: 100%;
    background: var(--forest);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    transition: all var(--transition);
    letter-spacing: 0.02em;
  }
  .checkout-btn:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.4); }

  /* ===== MODAL ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: white;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    position: relative;
  }
  .modal-overlay.open .modal { transform: scale(1); }
  .modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.25s;
  }
  .modal-close:hover { background: var(--forest); color: white; }
  .modal-img-wrap {
    position: relative;
    background: #f4f6f3;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    padding-bottom: 12px;
  }
  .modal-img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
  }
  .modal-gallery {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .gallery-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s;
  }
  .gallery-thumb:hover { opacity: 0.8; }
  .gallery-thumb.active {
    opacity: 1;
    border-color: var(--amber);
  }
  .modal-body { padding: 30px 32px 32px; }
  .modal-badge {
    display: inline-block;
    background: var(--forest);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 14px;
  }
  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .success-modal p {
    color: var(--text-mid);
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  /* ===== SCROLL PROGRESS & TO TOP ===== */
  .scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
  }
  .scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--forest) 0%, var(--amber) 100%);
    width: 0%;
  }

  .scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(45,80,22,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .scroll-top-btn:hover {
    background: var(--amber);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139,105,20,0.4);
  }

  /* ===== TEXTURE OVERLAYS ===== */
  .modal-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 20px; }
  .modal-info {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .modal-variants {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .variant-btn {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    color: var(--text-mid);
    padding: 8px 18px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all var(--transition);
  }
  .variant-btn:hover, .variant-btn.active {
    background: var(--forest);
    border-color: var(--forest);
    color: white;
  }
  .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--amber);
    font-weight: 700;
  }
  .modal-actions { display: flex; align-items: center; gap: 14px; }
  .modal-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    padding: 8px 14px;
    border-radius: 50px;
  }
  .modal-qty-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--cream-dark);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
  }
  .modal-qty-btn:hover { background: var(--forest); color: white; border-color: var(--forest); }

  /* ===== CHECKOUT MODAL ===== */
  .checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
  }
  .checkout-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .checkout-modal {
    background: var(--white);
    border-radius: 28px;
    max-width: 500px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  }
  .checkout-overlay.open .checkout-modal {
    transform: scale(1) translateY(0);
  }
  .checkout-modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.25s;
    z-index: 5;
  }
  .checkout-modal-close:hover { background: var(--forest); color: white; }

  .checkout-modal-header {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    border-radius: 28px 28px 0 0;
    padding: 36px 32px 28px;
    text-align: center;
    color: white;
  }
  .checkout-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  }
  .checkout-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .checkout-modal-header p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  /* Order summary strip */
  .checkout-summary {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 16px 28px;
    max-height: 140px;
    overflow-y: auto;
  }
  .checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 4px 0;
    color: var(--text-dark);
    gap: 12px;
  }
  .checkout-summary-item .s-name {
    flex: 1;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .checkout-summary-item .s-qty {
    color: #8A9C7A;
    flex-shrink: 0;
  }
  .checkout-summary-item .s-price {
    font-weight: 700;
    color: var(--amber);
    flex-shrink: 0;
  }

  /* Form */
  .checkout-form {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .form-label-icon { font-size: 1rem; }
  .form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  }
  .form-input:focus {
    border-color: var(--forest);
    background: white;
    box-shadow: 0 0 0 4px rgba(45,80,22,0.10);
  }
  .form-input.error {
    border-color: #E53935;
    box-shadow: 0 0 0 4px rgba(229,57,53,0.10);
    background: #fff8f8;
  }
  .form-input.valid {
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76,175,80,0.10);
  }
  .form-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.55;
  }
  .form-error {
    font-size: 0.78rem;
    color: #E53935;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 4px;
  }
  .form-error.show { display: flex; }

  /* Phone input */
  .phone-input-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--cream-dark);
    border-radius: 14px;
    background: var(--cream);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  }
  .phone-input-wrap:focus-within {
    border-color: var(--forest);
    background: white;
    box-shadow: 0 0 0 4px rgba(45,80,22,0.10);
  }
  .phone-input-wrap.error {
    border-color: #E53935;
    box-shadow: 0 0 0 4px rgba(229,57,53,0.10);
    background: #fff8f8;
  }
  .phone-input-wrap.valid {
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76,175,80,0.10);
  }
  .phone-prefix {
    padding: 14px 12px 14px 18px;
    font-weight: 800;
    color: var(--forest);
    font-size: 0.95rem;
    flex-shrink: 0;
    border-right: 2px solid var(--cream-dark);
    background: rgba(45,80,22,0.05);
  }
  .phone-input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 14px;
  }
  .phone-input:focus {
    box-shadow: none !important;
    border: none !important;
  }

  /* Total row */
  .checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(45,80,22,0.07), rgba(139,105,20,0.07));
    border: 1.5px solid var(--cream-dark);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-mid);
  }
  .checkout-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
  }

  /* Submit button */
  .checkout-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--forest) 0%, #3D6B20 100%);
    color: white;
    border: none;
    padding: 17px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(45,80,22,0.32);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
  }
  .checkout-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .checkout-submit-btn:hover::before { opacity: 1; }
  .checkout-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232,160,32,0.4);
  }
  .checkout-submit-btn span { position: relative; z-index: 1; }
  .checkout-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
  }

  .checkout-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: #9AAC8A;
    line-height: 1.5;
  }

  /* ===== SUCCESS MODAL ===== */
  .success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
  }
  .success-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .success-modal {
    background: white;
    border-radius: 28px;
    max-width: 420px;
    width: 100%;
    padding: 48px 36px 40px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  }
  .success-overlay.open .success-modal {
    transform: scale(1);
  }
  .success-anim {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: successPop 0.6s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  @keyframes successPop {
    from { transform: scale(0) rotate(-20deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  .success-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--forest-dark);
    margin-bottom: 16px;
  }
  .success-modal p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 8px;
  }
  .success-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.83rem;
    color: var(--text-mid);
    font-weight: 600;
    margin: 20px 0 28px;
  }
  .success-close-btn {
    background: linear-gradient(135deg, var(--forest) 0%, #3D6B20 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(45,80,22,0.3);
  }
  .success-close-btn:hover {
    background: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,160,32,0.4);
  }

  /* ===== TEXTURE OVERLAYS ===== */
  .texture-bg {
    background-image:
      radial-gradient(circle at 20% 80%, rgba(45,80,22,0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(139,105,20,0.05) 0%, transparent 50%);
  }

  /* ===== RESPONSIVE (non-hero sections) ===== */
  @media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img { aspect-ratio: 16/9; }
    .review-card { 
      flex: 0 0 85%;
      width: 85%;
      max-width: 85%;
      scroll-snap-align: center; 
    }
  }
  @media (max-width: 768px) {
    section { padding: 72px 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .products-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .cart-drawer { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-mini-cards { grid-template-columns: 1fr; }
    .modal-body { padding: 20px; }
    .modal-footer { flex-direction: column; align-items: flex-start; }
    .scroll-top-btn { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  }
  @media (max-width: 480px) {
    .filter-tags { gap: 8px; }
  }