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

:root {
  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;

  /* Gold palette */
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;

  /* Text */
  --text-primary: #f5f0e8;
  --text-muted: #8a8070;
  --text-secondary: #c8bfb0;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Legacy aliases (used by existing component styles) */
  --bg: #080706;
  --bg2: #0d0b09;
  --bg3: #111008;
  --white: #f2ede4;
  --white-dim: rgba(242,237,228,0.55);
  --white-faint: rgba(242,237,228,0.22);
  --max: 1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Cinzel', serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ===== PERFORMANCE HINTS ===== */
.bag-main { will-change: transform; }
#particleCanvas { will-change: transform; }
.product-card { will-change: transform; transition: transform 0.3s ease, border-color .3s, box-shadow .3s; }
.leaf { will-change: transform; }
.float-item { will-change: transform; }

/* ===== UTILITIES ===== */
.gold { color: var(--gold); }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

section { padding: var(--spacing-xl) var(--spacing-md); }

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

a { color: inherit; text-decoration: none; }

/* ── Cursor — Tea Leaf ── */
/* SVG tea leaf encoded as data URI for cursor */
body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 28 Q4 20 6 10 Q8 2 16 3 Q24 2 26 10 Q28 20 16 28Z' fill='%232d7a2d' opacity='0.9'/%3E%3Cpath d='M16 28 Q4 20 6 10 Q8 2 16 3 Q24 2 26 10 Q28 20 16 28Z' fill='none' stroke='%23c9a84c' stroke-width='1'/%3E%3Cline x1='16' y1='28' x2='16' y2='3' stroke='%23c9a84c' stroke-width='0.8' opacity='0.7'/%3E%3Cline x1='16' y1='12' x2='10' y2='8' stroke='%23c9a84c' stroke-width='0.6' opacity='0.5'/%3E%3Cline x1='16' y1='16' x2='22' y2='12' stroke='%23c9a84c' stroke-width='0.6' opacity='0.5'/%3E%3Cline x1='16' y1='20' x2='10' y2='17' stroke='%23c9a84c' stroke-width='0.6' opacity='0.5'/%3E%3C/svg%3E") 16 28, auto;
}

/* Pointer cursor on interactive elements */
a, button, [role="button"], .pcard, .ccard, .sachet-opt, .wa-btn, .theme-toggle {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 28 Q4 20 6 10 Q8 2 16 3 Q24 2 26 10 Q28 20 16 28Z' fill='%23c9a84c' opacity='0.95'/%3E%3Cpath d='M16 28 Q4 20 6 10 Q8 2 16 3 Q24 2 26 10 Q28 20 16 28Z' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3Cline x1='16' y1='28' x2='16' y2='3' stroke='%23ffffff' stroke-width='0.8' opacity='0.7'/%3E%3Cline x1='16' y1='12' x2='10' y2='8' stroke='%23ffffff' stroke-width='0.6' opacity='0.5'/%3E%3Cline x1='16' y1='16' x2='22' y2='12' stroke='%23ffffff' stroke-width='0.6' opacity='0.5'/%3E%3Cline x1='16' y1='20' x2='10' y2='17' stroke='%23ffffff' stroke-width='0.6' opacity='0.5'/%3E%3C/svg%3E") 16 28, pointer;
}

/* Touch devices — restore normal cursor */
@media (hover: none) {
  body, a, button, [role="button"] { cursor: auto; }
}

/* ── Canvas ── */
#particleCanvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.floating-assets { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.float-item { position: absolute; opacity: 0; animation: floatUp linear infinite; }
@keyframes floatUp {
  0%   { transform: translateY(105vh) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.14; }
  92%  { opacity: 0.08; }
  100% { transform: translateY(-10vh) rotate(200deg); opacity: 0; }
}

/* ── Parallax Logo Watermark ── */
.parallax-logo {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  top: 50%;
  right: -8vw;
  transform: translateY(-50%);
  width: min(55vw, 520px);
  opacity: 0;
  animation: logoFadeIn 1.8s ease 0.6s forwards;
  filter:
    drop-shadow(0 0 60px rgba(201,168,76,0.18))
    drop-shadow(0 0 120px rgba(201,168,76,0.08));
  transition: filter 0.4s ease;
}
.parallax-logo img {
  width: 100%;
  display: block;
  filter: grayscale(0.3) sepia(0.25) brightness(0.55) contrast(1.1);
  mix-blend-mode: luminosity;
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(-50%) scale(0.92) rotate(-4deg); }
  to   { opacity: 0.13; transform: translateY(-50%) scale(1) rotate(0deg); }
}
@media (max-width: 480px) {
  .parallax-logo { display: none; }
}

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 3rem;
  transition: background .35s, border-color .35s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  margin-left: auto;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  transition: background .25s, transform .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  padding: 0 3rem;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
/* Subtle grid */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 3;
  flex: 0 0 52%;
  max-width: 52%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: block;
  opacity: 0;
  animation: fadeUp .8s ease .2s forwards;
}
/* ── Hero Brand Block ── */
.hero-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .9s ease .28s forwards;
}
.hero-brand-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
  text-shadow:
    0 0 40px rgba(201,168,76,0.35),
    0 0 80px rgba(201,168,76,0.15);
}
.hero-brand-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.2rem 0;
}
.hero-brand-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white-dim);
  letter-spacing: 0.06em;
}

.hero-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .9s ease .45s forwards;
}
.hero-heading strong { font-weight: 900; color: var(--white); }
.light-italic { font-weight: 300; font-style: italic; color: var(--white-dim); }

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 480px;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp .9s ease .5s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp .9s ease .65s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(242,237,228,0.2);
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: rgba(242,237,228,0.5); color: var(--white); }

/* Trust strip */
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s ease .8s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-faint);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero right — 3D product */
.hero-right {
  position: relative;
  z-index: 3;
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.product-3d-wrap {
  position: relative;
  width: 340px;
  height: 440px;
  opacity: 0;
  animation: fadeIn 1.2s ease .4s forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.bag-main, .bag-shadow-1, .bag-shadow-2 {
  position: absolute;
  width: 280px;
}
.bag-main    { top: 0; left: 30px; z-index: 3; animation: bagFloat 6s ease-in-out infinite; }
.bag-shadow-1 { top: 20px; left: 60px; z-index: 2; transform: rotate(6deg) scale(0.97); opacity: 0.7; filter: blur(2px); }
.bag-shadow-2 { top: 35px; left: 85px; z-index: 1; transform: rotate(11deg) scale(0.94); opacity: 0.45; filter: blur(5px); }

@keyframes bagFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-18px) rotate(-1deg); }
}
.bag-svg { width: 100%; display: block; }
.bag-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 60px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.2) 0%, transparent 70%);
  filter: blur(12px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  position: relative; z-index: 2;
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 1.8rem 3rem;
}
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.strip-item {
  flex: 1;
  text-align: center;
  max-width: 220px;
}
.strip-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.strip-item span {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
}
.strip-div {
  width: 1px; height: 36px;
  background: rgba(201,168,76,0.12);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* ===== SECTION COMMON ===== */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label-row {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label-row h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-label-row h2 strong { color: var(--white); }

/* ===== PRODUCTS ===== */
#products {
  position: relative; z-index: 2;
  padding: 7rem 3rem 8rem;
  background: var(--bg);
}
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.pcard {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.pcard:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 24px rgba(201,168,76,0.18), 0 0 0 1px rgba(201,168,76,0.2);
}
.pcard--featured {
  border-color: rgba(201,168,76,0.2);
  background: var(--bg3);
}
.pcard-visual {
  position: relative;
  background: #060504;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard-visual svg {
  width: 80%; height: 80%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.7));
}
.pcard-visual img {
  width: 100%;
  object-fit: contain;
}
.pcard:hover .pcard-visual svg { transform: scale(1.05) translateY(-4px); }
.pcard-glow {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 85%, rgba(60,30,5,0.25) 0%, transparent 65%);
}
.pcard-glow--cinn { background: radial-gradient(ellipse at 50% 85%, rgba(120,50,10,0.2) 0%, transparent 65%); }
.pcard-glow--green { background: radial-gradient(ellipse at 50% 85%, rgba(20,80,15,0.18) 0%, transparent 65%); }
.pcard-glow--gold  { background: radial-gradient(ellipse at 50% 85%, rgba(201,168,76,0.12) 0%, transparent 65%); }
.pcard:hover .pcard-glow { opacity: 1; }
.pcard-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
}
.pcard-info {
  padding: 1.4rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 0.5rem;
}
.pcard-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.pcard-info h3 em {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.pcard-info p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--white-dim);
  margin-bottom: 1rem;
  flex: 1;
}
.pcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.pcard-chips span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(201,168,76,0.55);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
}
.pcard-btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition: background .25s, border-color .25s;
  align-self: flex-start;
}
.pcard-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.pcard-btn--gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}
.pcard-btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ===== STORY ===== */
.story-section {
  position: relative; z-index: 2;
  padding: 8rem 3rem;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.story-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1rem 0 1.8rem;
}
.story-text h2 strong { color: var(--white); }
.story-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 1rem;
}
.story-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* ===== QUOTE ===== */
.quote-band {
  position: relative; z-index: 2;
  padding: 5rem 3rem;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quote-band p {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.quote-band p em { font-style: italic; color: var(--white-dim); font-weight: 300; }
.quote-band p strong { font-weight: 800; color: var(--white); }
.quote-band span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}

/* ===== CONTACT ===== */
#contact {
  position: relative; z-index: 2;
  padding: 7rem 3rem 8rem;
  background: var(--bg2);
}
.contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}
.ccard {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ccard:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.ccard-icon {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(201,168,76,0.04);
}
.ccard-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.ccard-val {
  display: block;
  font-size: 0.88rem;
  color: var(--white-dim);
  text-decoration: none;
  line-height: 1.7;
  transition: color .25s;
  word-break: break-all;
}
.ccard-val--link:hover { color: var(--gold); }
.ccard-val--sub {
  display: block;
  font-size: 0.75rem;
  color: var(--white-faint);
  margin-top: 0.2rem;
}

/* Phone list */
.ccard-phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}
.ccard-phone-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--white-dim);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s, color .2s, background .2s;
}
.ccard-phone-item:hover {
  border-color: rgba(201,168,76,0.25);
  color: var(--white);
  background: rgba(201,168,76,0.05);
}
.ccard-phone-flag { font-size: 1rem; line-height: 1; }

/* Social list */
.ccard-social-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}
.ccard-social-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--white-dim);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s, color .2s, background .2s;
}
.ccard-social-item:hover {
  border-color: rgba(201,168,76,0.25);
  color: var(--white);
  background: rgba(201,168,76,0.05);
}
.btn-story { margin-top: 2rem; display: inline-flex; }

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 2;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.5rem 3rem 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-logo img { flex-shrink: 0; }
.footer-brand p {
  font-size: 0.78rem;
  color: var(--white-faint);
  font-style: italic;
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--white-faint);
  text-decoration: none;
  transition: color .25s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-bottom span {
  font-size: 0.7rem;
  color: rgba(242,237,228,0.2);
  letter-spacing: 0.05em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .hero-left { flex: 0 0 55%; max-width: 55%; }
  .hero-right { flex: 0 0 45%; max-width: 45%; }
  .product-3d-wrap { width: 280px; height: 380px; }
  .bag-main { width: 230px; }
  .bag-shadow-1 { width: 230px; }
  .bag-shadow-2 { width: 230px; }
}
@media (max-width: 860px) {
  #hero { flex-direction: column; padding-top: 5rem; min-height: 0; }
  .hero-left, .hero-right { flex: none; max-width: 100%; width: 100%; }
  .hero-left { padding: 4rem 0 2rem; }
  .hero-right { min-height: 380px; }
  .story-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 0 1.5rem; }
  #products, .story-section, #contact, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .stats-strip { padding: 1.5rem; }
  .strip-div { display: none; }
  .strip-inner { flex-wrap: wrap; gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }

  /* Hamburger open state */
  #navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem;
    gap: 1.2rem;
    z-index: 199;
  }
  #navbar.nav-open .nav-links a {
    font-size: 1rem;
    color: var(--white-dim);
  }
  #navbar.nav-open .nav-cta {
    display: block;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
    position: absolute;
    left: 0; right: 0;
    top: calc(68px + 1.5rem + 4 * 1.2rem + 3rem);
    z-index: 199;
  }
}
@media (max-width: 540px) {
  .products-row { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2.4rem; }
  .hero-trust { gap: 1rem; }
}
.ccard-val--sub { font-size: 0.78rem; opacity: 0.45; }
.story-svg-full { width: 100%; display: block; }

/* ===== WHY CHOOSE US ===== */
.why-section {
  position: relative; z-index: 2;
  padding: 7rem 3rem 8rem;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.why-inner { max-width: var(--max); margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.why-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--white-dim);
}

/* ===== PROCESS ===== */
.process-section {
  position: relative; z-index: 2;
  padding: 7rem 3rem 8rem;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.process-inner { max-width: var(--max); margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1rem;
}
.process-step {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding-right: 2.5rem;
  padding-left: 0;
}
.process-step:nth-child(3n) { border-right: none; padding-right: 0; }
.process-step:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2.5rem; }
.process-step:nth-child(3n+1) { padding-left: 0; }
.process-step:nth-child(3n+2) { padding-left: 2.5rem; }
.process-step:nth-child(3n) { padding-left: 2.5rem; }
.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--white-dim);
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  position: relative; z-index: 2;
  padding: 7rem 3rem 8rem;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.testi-inner { max-width: var(--max); margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.testi-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .3s, transform .3s;
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.testi-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--white-dim);
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.testi-author span {
  font-size: 0.72rem;
  color: var(--white-faint);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative; z-index: 2;
  padding: 6rem 3rem;
  background: var(--bg3);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}
.cta-banner-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.cta-banner-text h2 strong { color: var(--white); }
.cta-banner-text p {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 480px;
  line-height: 1.6;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.05); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-text p { max-width: 100%; }
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.05); padding-left: 0 !important; padding-right: 0 !important; }
  .process-step:first-child { border-top: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions a { text-align: center; }
  .why-section, .process-section, .testi-section, .cta-banner { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ===== SACHET TEA TYPE PICKER ===== */
.sachet-picker { margin-bottom: 1.2rem; }

.sachet-picker-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.sachet-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sachet-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  color: var(--white-dim);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  text-align: left;
  width: 100%;
}

.sachet-opt:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.05);
  color: var(--white);
}

.sachet-opt[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--white);
}

.sachet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sachet-dot--black { background: #3a2a1a; border: 1px solid #7a5a3a; }
.sachet-dot--cinn  { background: #8b3a0f; border: 1px solid #c4622a; }
.sachet-dot--green { background: #2a5a1a; border: 1px solid #4a8a2a; }

/* Disabled state for order button before selection */
.sachet-order-btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.sachet-order-btn[aria-disabled="false"] {
  opacity: 1;
  pointer-events: auto;
}

/* ===== BLACK TEA GRADE PICKER ===== */
.grade-picker { margin-bottom: 1.2rem; }

.grade-picker-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.grade-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.grade-opt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  color: var(--white-dim);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  transition: border-color .2s, background .2s, color .2s;
  width: 100%;
}
.grade-opt:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
  color: var(--white);
}
.grade-opt[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--white);
}

.grade-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.grade-dot--bop    { background: #5a3a1a; border: 1px solid #9a6a3a; }
.grade-dot--fbop   { background: #7a4a1a; border: 1px solid #c4822a; }
.grade-dot--op1    { background: #3a2a0a; border: 1px solid #8a6a2a; }
.grade-dot--silver { background: #c0c0c0; border: 1px solid #e8e8e8; }

.grade-opt-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}
.grade-opt-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.grade-opt-text em {
  font-size: 0.68rem;
  font-style: normal;
  color: var(--white-faint);
}
.grade-opt[aria-pressed="true"] .grade-opt-text strong { color: var(--gold); }
.grade-opt[aria-pressed="true"] .grade-opt-text em { color: var(--white-dim); }

/* Disabled / enabled state for order button */
.black-tea-order-btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}
.black-tea-order-btn[aria-disabled="false"] {
  opacity: 1;
  pointer-events: auto;
}

/* ===== WHATSAPP FLOATING WIDGET ===== */
.wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6), 0 2px 10px rgba(0,0,0,0.35);
}

.wa-icon-close { display: none; }
.wa-widget.open .wa-icon-open  { display: none; }
.wa-widget.open .wa-icon-close { display: block; }

/* Menu panel */
.wa-menu {
  background: #111008;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px;
  padding: 1rem;
  width: 260px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  transform-origin: bottom right;
}
.wa-widget.open .wa-menu {
  display: flex;
  animation: waSlideIn .2s ease;
}
@keyframes waSlideIn {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.wa-menu-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 0.3rem;
  padding: 0 0.2rem;
}

.wa-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: var(--white-dim);
  transition: background .2s, border-color .2s, color .2s;
}
.wa-contact:hover {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.3);
  color: var(--white);
}
.wa-contact svg { margin-left: auto; flex-shrink: 0; opacity: 0.4; }
.wa-contact:hover svg { opacity: 0.8; }

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #25d366;
  flex-shrink: 0;
}

.wa-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wa-contact-info strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.wa-contact-info span {
  font-size: 0.72rem;
  color: var(--white-faint);
}

@media (max-width: 540px) {
  .wa-widget { bottom: 1.2rem; right: 1.2rem; }
  .wa-menu { width: 230px; }
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-faint);
  transition: border-color .25s, color .25s, background .25s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

@media (max-width: 1100px) {
  .contact-row { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}

/* ===== STORY REAL IMAGE ===== */
.story-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  aspect-ratio: 4/3;
}

.story-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.88) saturate(1.1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.story-img-frame:hover .story-real-img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.15);
}

/* Subtle dark gradient at bottom for badge readability */
.story-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
  pointer-events: none;
}

.story-altitude-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 0.4rem 0.85rem;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.story-altitude-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .2s;
}
.theme-toggle:hover {
  background: rgba(201,168,76,0.14);
  border-color: var(--gold);
  transform: rotate(20deg);
}

/* Dark mode: show moon, hide sun */
.icon-sun  { display: none; }
.icon-moon { display: block; }

/* Light mode: show sun, hide moon */
body.light-mode .icon-sun  { display: block; }
body.light-mode .icon-moon { display: none; }

/* ===== LIGHT MODE THEME ===== */
body.light-mode {
  --bg-primary:   #f5f0e8;
  --bg-secondary: #ede8df;
  --bg-card:      #e8e2d8;
  --bg:           #f0ebe2;
  --bg2:          #e8e2d8;
  --bg3:          #dfd9cf;
  --text-primary: #1a1510;
  --text-muted:   #6b5f50;
  --text-secondary: #4a3f32;
  --white:        #1a1510;
  --white-dim:    rgba(26,21,16,0.75);
  --white-faint:  rgba(26,21,16,0.45);
  background: var(--bg-primary);
  color: #1a1510;
}

/* All text dark in light mode */
body.light-mode h1, body.light-mode h2,
body.light-mode h3, body.light-mode h4 { color: #1a1510; }
body.light-mode p  { color: rgba(26,21,16,0.7); }
body.light-mode .hero-heading,
body.light-mode .hero-heading strong { color: #1a1510; }
body.light-mode .hero-sub { color: rgba(26,21,16,0.65); }
body.light-mode .light-italic { color: rgba(26,21,16,0.5); }
body.light-mode .trust-item { color: rgba(26,21,16,0.5); }
body.light-mode .hero-eyebrow,
body.light-mode .hero-brand-tagline,
body.light-mode .eyebrow,
body.light-mode .section-eyebrow,
body.light-mode .pcard-tag,
body.light-mode .ccard-label,
body.light-mode .testi-stars,
body.light-mode .sachet-picker-label { color: var(--gold); }
body.light-mode .hero-brand-name { color: var(--gold-dark); text-shadow: none; }
body.light-mode .hero-brand-divider { background: linear-gradient(90deg, var(--gold-dark), transparent); }
body.light-mode .strip-item strong { color: var(--gold); }
body.light-mode .strip-item span,
body.light-mode .step-num { color: rgba(26,21,16,0.2); }
body.light-mode .nav-links a { color: rgba(26,21,16,0.6); }
body.light-mode .nav-links a:hover { color: #1a1510; }
body.light-mode .nav-brand { color: var(--gold); }
body.light-mode .pcard-info p,
body.light-mode .why-card p,
body.light-mode .step-body p,
body.light-mode .testi-card p,
body.light-mode .story-text p,
body.light-mode .cta-banner-text p { color: rgba(26,21,16,0.65); }
body.light-mode .pcard-info h3,
body.light-mode .why-card h4,
body.light-mode .step-body h4,
body.light-mode .testi-author strong { color: #1a1510; }
body.light-mode .testi-author span { color: rgba(26,21,16,0.4); }
body.light-mode .testi-author { border-top-color: rgba(0,0,0,0.08); }
body.light-mode .ccard-val { color: rgba(26,21,16,0.65); }
body.light-mode .ccard-val--sub { color: rgba(26,21,16,0.4); }
body.light-mode .ccard-phone-item,
body.light-mode .ccard-social-item { color: rgba(26,21,16,0.65); border-color: rgba(0,0,0,0.08); background: rgba(0,0,0,0.03); }
body.light-mode .ccard-phone-item:hover,
body.light-mode .ccard-social-item:hover { color: #1a1510; border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }
body.light-mode .pcard-chips span { color: rgba(100,70,30,0.7); border-color: rgba(100,70,30,0.2); }
body.light-mode .sachet-opt { color: rgba(26,21,16,0.65); border-color: rgba(0,0,0,0.1); background: rgba(0,0,0,0.03); }
body.light-mode .sachet-opt:hover,
body.light-mode .sachet-opt[aria-pressed="true"] { color: #1a1510; }
body.light-mode .quote-band p em { color: rgba(26,21,16,0.55); }
body.light-mode .quote-band span { color: rgba(201,168,76,0.6); }
body.light-mode .footer-logo span { color: var(--gold); }
body.light-mode .footer-brand p { color: rgba(26,21,16,0.4); }
body.light-mode .footer-nav a { color: rgba(26,21,16,0.45); }
body.light-mode .footer-nav a:hover { color: #1a1510; }
body.light-mode .footer-bottom span { color: rgba(26,21,16,0.35); }
body.light-mode .footer-social a { border-color: rgba(0,0,0,0.12); color: rgba(26,21,16,0.4); }
body.light-mode .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
body.light-mode .process-step { border-color: rgba(0,0,0,0.08) !important; }
body.light-mode .strip-div { background: rgba(0,0,0,0.1); }

body.light-mode #navbar { background: rgba(245,240,232,0.85); }
body.light-mode #navbar.scrolled {
  background: rgba(245,240,232,0.97);
  border-bottom-color: rgba(201,168,76,0.3);
}
body.light-mode #navbar.nav-open .nav-links {
  background: rgba(245,240,232,0.98);
  border-bottom-color: rgba(201,168,76,0.2);
}
body.light-mode #hero::before {
  background:
    radial-gradient(ellipse 55% 65% at 72% 50%, rgba(201,168,76,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
body.light-mode #hero::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
body.light-mode .pcard,
body.light-mode .ccard,
body.light-mode .why-card,
body.light-mode .testi-card { border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.light-mode .pcard:hover,
body.light-mode .ccard:hover,
body.light-mode .why-card:hover,
body.light-mode .testi-card:hover { border-color: rgba(201,168,76,0.5); }
body.light-mode #particleCanvas { opacity: 0.3; }
body.light-mode .float-item { opacity: 0.4; }
body.light-mode .story-real-img { filter: brightness(1) saturate(1.05); }
body.light-mode .story-altitude-badge { background: rgba(245,240,232,0.85); border-color: rgba(201,168,76,0.4); }
body.light-mode footer { border-top-color: rgba(0,0,0,0.08); }
body.light-mode .footer-bottom { border-top-color: rgba(0,0,0,0.08); }
body.light-mode .wa-menu { background: #f0ebe2; border-color: rgba(201,168,76,0.25); }
body.light-mode .wa-contact { border-color: rgba(0,0,0,0.08); background: rgba(0,0,0,0.03); color: rgba(26,21,16,0.7); }
body.light-mode .wa-contact:hover { background: rgba(37,211,102,0.08); }
body.light-mode .wa-menu-label { color: rgba(201,168,76,0.7); }
body.light-mode .wa-contact-info strong { color: #1a1510; }
body.light-mode .wa-contact-info span { color: rgba(26,21,16,0.45); }

/* ===== HERO CARD SHOWCASE ===== */
.hero-card-showcase {
  position: relative;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-single-card {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroCardFloat 5s ease-in-out infinite;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 4 images, each on for 3s, total cycle = 12s */
/* visible: 0-25%, fade out: 20-25%, invisible: 25-95%, fade in: 95-100% */
.hero-img {
  position: absolute;
  width: 100%;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6));
  opacity: 0;
  animation: heroImgCycle 12s ease-in-out infinite;
}

@keyframes heroImgCycle {
  0%        { opacity: 0;   transform: scale(0.96); }
  5%        { opacity: 1;   transform: scale(1); }
  22%       { opacity: 1;   transform: scale(1); }
  27%       { opacity: 0;   transform: scale(1.03); }
  100%      { opacity: 0;   transform: scale(0.96); }
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  transition: opacity 0.4s ease;
  opacity: 1;
  display: block;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
}

.hero-label-area {
  width: 100%;
  padding: 1.8rem 0 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  flex-shrink: 0;
}

.hero-card-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  transition: background .3s, transform .3s;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 860px) {
  .hero-card-showcase { width: 260px; }
  .hero-img-wrap { height: 240px; }
  .hero-img-a, .hero-img-b { max-width: 180px; }
}

/* ===== ORDER MODAL ===== */
.order-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.order-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.order-modal {
  background: #0f0e0b;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform .35s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh;
  overflow-y: auto;
}
.order-overlay.open .order-modal {
  transform: translateY(0) scale(1);
}
.order-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.order-close:hover { background: rgba(201,168,76,0.12); color: var(--gold); }

.order-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.order-modal h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.order-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.order-img-wrap img {
  width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}
.order-field { margin-bottom: 1.2rem; }
.order-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

/* Sachet type buttons */
.order-sachet-opts, .order-unit-opts, .order-grade-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.order-sachet-btn, .order-unit-btn, .order-grade-btn {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: var(--white-dim);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.order-sachet-btn:hover, .order-unit-btn:hover, .order-grade-btn:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--white);
}
.order-sachet-btn.active, .order-unit-btn.active, .order-grade-btn.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.order-text-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  padding: 0.6rem 0.85rem;
  transition: border-color .2s;
  font-family: inherit;
}
.order-text-input:focus { outline: none; border-color: var(--gold); }
.order-text-input::placeholder { color: var(--white-faint); }
.order-text-input.error { border-color: #e05555; }
.order-address-input { resize: vertical; min-height: 72px; line-height: 1.5; }

#shippingAddressField { display: none; }
#shippingAddressField.visible { display: block; }

/* ===== COUNTRY PICKER ===== */
.country-picker { position: relative; }
.country-input-wrap { position: relative; }
.country-search-input { width: 100%; padding-right: 2.2rem; }
.country-chevron {
  position: absolute; right: 0.75rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 0.75rem; pointer-events: none;
  transition: transform .2s;
}
.country-picker.open .country-chevron { transform: translateY(-50%) rotate(180deg); }
.country-dropdown {
  display: none;
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #1a1610;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 500;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.country-picker.open .country-dropdown { display: block; }
.country-option {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  color: var(--white-dim);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.country-option:hover, .country-option.highlighted {
  background: rgba(201,168,76,0.1);
  color: var(--white);
}
.country-option.selected { color: var(--gold); }
.country-option-flag { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.country-no-results {
  padding: 0.8rem 0.9rem;
  font-size: 0.8rem;
  color: var(--white-faint);
  text-align: center;
}
body.light-mode .country-dropdown { background: #fff; border-color: rgba(0,0,0,0.15); }
body.light-mode .country-option { color: #444; }
body.light-mode .country-option:hover { background: rgba(201,168,76,0.08); color: #111; }

body.light-mode .order-text-input { background: #fff; border-color: rgba(0,0,0,0.15); color: #1a1510; }

/* Qty */
.order-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.order-qty-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  background: rgba(201,168,76,0.06);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.order-qty-btn:hover { background: rgba(201,168,76,0.15); }
.order-qty-input {
  width: 70px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.4rem 0.5rem;
}
.order-qty-input:focus { outline: none; border-color: var(--gold); }

/* Confirm button */
.order-confirm-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--gold);
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background .25s, transform .2s;
}
.order-confirm-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.order-wa-btn { background: #25d366; margin-top: 1rem; }
.order-wa-btn:hover { background: #1ebe5d; }
.order-back-btn {
  width: 100%;
  padding: 0.65rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white-dim);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.6rem;
  transition: border-color .2s, color .2s;
}
.order-back-btn:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

/* Invoice box */
.invoice-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 1.4rem;
  margin-bottom: 0.5rem;
}
.invoice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}
.invoice-row:last-child { border-bottom: none; }
.invoice-row span:first-child { color: var(--white-dim); }
.invoice-row span:last-child { color: var(--white); font-weight: 600; }
.invoice-row.invoice-total span { color: var(--gold); font-weight: 700; font-size: 0.95rem; }
.invoice-id {
  font-size: 0.62rem;
  color: var(--white-faint);
  text-align: center;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
}

/* Light mode overrides */
body.light-mode .order-modal { background: #faf7f2; border-color: rgba(201,168,76,0.3); }
body.light-mode .order-modal h3 { color: #1a1510; }
body.light-mode .order-qty-input { background: #fff; border-color: rgba(0,0,0,0.15); color: #1a1510; }
body.light-mode .invoice-box { background: rgba(0,0,0,0.03); }
body.light-mode .invoice-row span:last-child { color: #1a1510; }

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  background: rgba(201,168,76,0.06);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
  flex-shrink: 0;
}
.lang-toggle:hover { background: rgba(201,168,76,0.14); border-color: var(--gold); }

/* RTL support */
body.rtl { direction: rtl; text-align: right; }
body.rtl .nav-inner { flex-direction: row-reverse; }
body.rtl .nav-links { flex-direction: row-reverse; }
body.rtl .hero-left { text-align: right; }
body.rtl .hero-actions { flex-direction: row-reverse; }
body.rtl .hero-trust { flex-direction: row-reverse; }
body.rtl .footer-inner { flex-direction: row-reverse; }
body.rtl .ccard { align-items: flex-end; }
body.rtl .order-modal { direction: rtl; text-align: right; }
body.rtl .invoice-row { flex-direction: row-reverse; }
body.rtl .story-wrap { direction: rtl; }
body.rtl .why-card { text-align: right; }
body.rtl .process-step { text-align: right; }
body.rtl .testi-author { flex-direction: row-reverse; }
body.rtl .cta-banner-inner { flex-direction: row-reverse; }
body.rtl .pcard-info { text-align: right; }
body.rtl .pcard-chips { flex-direction: row-reverse; }
body.rtl .sachet-options { align-items: flex-end; }
body.rtl .track-inner { text-align: center; }
body.rtl .track-form { flex-direction: row-reverse; }
body.rtl .footer-nav { flex-direction: row-reverse; }
body.rtl .ccard-phone-list, body.rtl .ccard-social-list { direction: rtl; }
body.rtl .order-field { text-align: right; }
body.rtl .order-ship-opts, body.rtl .order-sachet-opts { flex-direction: row-reverse; }
body.rtl .order-qty-wrap { flex-direction: row-reverse; }
body.rtl .wa-contact-info { text-align: right; }
body.rtl .wa-menu { text-align: right; }

/* ===== SHIPPING DESTINATION ===== */
.order-ship-opts {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.order-ship-btn {
  flex: 1;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: var(--white-dim);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.order-ship-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--white); }
.order-ship-btn.active { border-color: var(--gold); background: rgba(201,168,76,0.1); color: var(--gold); }
.order-ship-note {
  font-size: 0.72rem;
  color: var(--white-faint);
  font-style: italic;
  margin-top: 0.3rem;
}

/* ===== TRACK MY ORDER ===== */
.track-section {
  position: relative; z-index: 2;
  padding: 6rem 3rem;
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,0.08);
  text-align: center;
}
.track-inner {
  max-width: 520px;
  margin: 0 auto;
}
.track-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}
.track-inner p {
  font-size: 0.92rem;
  color: var(--white-dim);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.track-form {
  display: flex;
  gap: 0.7rem;
  max-width: 420px;
  margin: 0 auto;
}
.track-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  transition: border-color .2s;
}
.track-input:focus { outline: none; border-color: var(--gold); }
.track-input::placeholder { color: var(--white-faint); }
.track-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s, transform .2s;
}
.track-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
@media (max-width: 540px) {
  .track-form { flex-direction: column; }
  .track-section { padding: 4rem 1.5rem; }
}

body.light-mode .track-input { background: #fff; border-color: rgba(0,0,0,0.15); color: #1a1510; }
body.light-mode .track-inner p { color: rgba(26,21,16,0.65); }

/* ===== MOBILE RESPONSIVE — COMPREHENSIVE ===== */


/* ===================================================
   COMPREHENSIVE RESPONSIVE — ALL DEVICES
   Breakpoints:
   1100px  → large tablet / small laptop
    860px  → tablet portrait / large phone landscape
    768px  → tablet portrait (iPad)
    600px  → small tablet / large phone
    480px  → phone
    360px  → small phone
=================================================== */

/* ── 1100px: large tablet / small laptop ── */
@media (max-width: 1100px) {
  #hero { padding: 0 2rem; }
  #products, .story-section, #contact,
  .why-section, .process-section, .testi-section,
  .cta-banner, footer { padding-left: 2rem; padding-right: 2rem; }
  .stats-strip { padding: 1.8rem 2rem; }
}

/* ── 860px: tablet portrait ── */
@media (max-width: 860px) {
  section { padding-top: 5rem; padding-bottom: 5rem; }
  #hero { padding: 0 1.5rem; }
  .hero-left { padding: 3.5rem 0 2rem; }
  .hero-heading { font-size: 2.8rem; }

  /* All sections get consistent side padding */
  #products, .story-section, #contact,
  .why-section, .process-section, .testi-section,
  .cta-banner, .track-section, footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Grade picker on product card */
  .grade-options { gap: 0.4rem; }
  .grade-opt { padding: 0.5rem 0.75rem; }
  .grade-opt-text strong { font-size: 0.75rem; }
  .grade-opt-text em { font-size: 0.65rem; }

  /* Order modal */
  .order-overlay { padding: 0.75rem; }
  .order-modal { max-width: 500px; }

  /* Contact grid */
  .contact-row { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── 768px: iPad / tablet portrait ── */
@media (max-width: 768px) {
  .hero-heading { font-size: 2.5rem; }
  .hero-sub { font-size: 0.92rem; }
  .section-label-row h2 { font-size: 2rem; }

  /* Products: 2 col on tablet */
  .products-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Story */
  .story-wrap { gap: 2.5rem; }
  .story-text h2 { font-size: 2rem; }

  /* Why grid: 2 col */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process: 2 col */
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials: 1 col */
  .testi-grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  /* Order modal */
  .order-overlay { padding: 0.5rem; align-items: flex-end; }
  .order-modal {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    padding: 1.8rem 1.5rem 2rem;
  }

  /* Grade picker in modal: wrap */
  .order-grade-opts { flex-direction: column; gap: 0.4rem; }
  .order-grade-btn { width: 100%; text-align: left; }
}

/* ── 600px: small tablet / large phone ── */
@media (max-width: 600px) {
  section { padding-top: 4rem; padding-bottom: 4rem; }

  #hero { padding: 0 1.2rem; padding-top: 4.5rem; }
  .hero-left { padding: 3rem 0 1.5rem; }
  .hero-heading { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions a { text-align: center; justify-content: center; }
  .hero-right { min-height: 300px; }

  /* Products: 1 col */
  .products-row { grid-template-columns: 1fr; }
  .pcard-btn { width: 100%; text-align: center; align-self: stretch; }
  .black-tea-order-btn { width: 100%; text-align: center; }

  /* Why: 1 col */
  .why-grid { grid-template-columns: 1fr; }

  /* Process: 1 col */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
  .process-step:first-child { border-top: none; }

  /* Track */
  .track-form { flex-direction: column; gap: 0.75rem; }
  .track-input, .track-btn { width: 100%; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* Order modal */
  .order-modal { padding: 1.6rem 1.2rem 2rem; }
  .order-modal h3 { font-size: 1.1rem; }
  .order-img-wrap img { width: 90px; }
  .order-field { margin-bottom: 1rem; }
  .order-text-input { font-size: 0.85rem; }
  .order-confirm-btn { font-size: 0.85rem; padding: 0.85rem; }
  .invoice-box { padding: 1rem; }
  .invoice-row { font-size: 0.78rem; }

  /* Country picker */
  .country-dropdown { max-height: 180px; }

  /* Grade picker on card */
  .grade-opt { padding: 0.45rem 0.7rem; }
  .grade-opt-text strong { font-size: 0.72rem; }
  .grade-opt-text em { font-size: 0.62rem; }

  /* Sachet picker on card */
  .sachet-opt { font-size: 0.75rem; padding: 0.45rem 0.75rem; }

  /* WhatsApp */
  .wa-widget { bottom: 1rem; right: 1rem; }
  .wa-menu { width: 220px; }
  .wa-btn { width: 50px; height: 50px; }
}

/* ── 480px: phones ── */
@media (max-width: 480px) {
  section { padding-top: 3.5rem; padding-bottom: 3.5rem; }

  #hero { padding: 0 1rem; padding-top: 4.5rem; }
  .hero-heading { font-size: 2rem; }
  .hero-sub { font-size: 0.85rem; }
  .hero-trust { gap: 0.75rem; }
  .trust-item { font-size: 0.65rem; }
  .hero-right { min-height: 260px; }

  .section-label-row h2 { font-size: 1.7rem; }
  .section-label-row { margin-bottom: 2rem; }

  #products, .story-section, #contact,
  .why-section, .process-section, .testi-section,
  .cta-banner, .track-section, footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .stats-strip { padding: 1.2rem 1rem; }
  .strip-item strong { font-size: 1.2rem; }

  .pcard-info { padding: 1rem 1rem 1.3rem; }
  .pcard-info h3 { font-size: 0.95rem; }
  .pcard-info p { font-size: 0.78rem; }

  .story-text h2 { font-size: 1.6rem; }
  .story-text p { font-size: 0.82rem; }

  .why-card, .testi-card { padding: 1.2rem 1rem; }
  .why-card h4 { font-size: 0.9rem; }
  .why-card p, .testi-card p { font-size: 0.78rem; }

  .cta-banner-text h2 { font-size: 1.5rem; }
  .cta-banner-text p { font-size: 0.82rem; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions a { text-align: center; justify-content: center; }

  .ccard { padding: 1.3rem 1rem; }
  .ccard-phone-item, .ccard-social-item { font-size: 0.78rem; }

  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-logo { font-size: 1rem; }
  .footer-nav a { font-size: 0.7rem; }

  .nav-brand img { width: 34px; height: 34px; }
  .nav-brand span { font-size: 0.82rem; }
  .lang-toggle, .theme-toggle { padding: 0.3rem 0.5rem; font-size: 0.7rem; }

  /* Order modal */
  .order-modal { padding: 1.4rem 1rem 1.8rem; max-height: 93vh; }
  .order-grade-opts { flex-direction: column; gap: 0.35rem; }
  .order-grade-btn { width: 100%; text-align: left; font-size: 0.72rem; padding: 0.5rem 0.75rem; }
  .order-sachet-btn { font-size: 0.72rem; padding: 0.45rem 0.7rem; }
}

/* ── 360px: very small phones ── */
@media (max-width: 360px) {
  .hero-heading { font-size: 1.7rem; }
  .nav-brand span { display: none; }
  .order-modal { padding: 1.2rem 0.9rem 1.6rem; }
  .pcard-chips { display: none; }
  .grade-picker-label, .sachet-picker-label { font-size: 0.62rem; }
  .section-label-row h2 { font-size: 1.5rem; }
  .cta-banner-text h2 { font-size: 1.3rem; }
}

/* ── Landscape phones (height-constrained) ── */
@media (max-height: 500px) and (orientation: landscape) {
  .order-overlay { align-items: center; padding: 0.5rem; }
  .order-modal { max-height: 96vh; border-radius: 16px; max-width: 560px; }
  .order-img-wrap { display: none; }
  #hero { min-height: 0; padding-top: 5rem; }
  .hero-right { min-height: 240px; }
}

/* ── Touch devices: 44px minimum tap targets ── */
@media (hover: none) and (pointer: coarse) {
  .pcard-btn, .btn-primary, .btn-ghost, .nav-cta,
  .order-confirm-btn, .order-send-wa-btn, .track-btn,
  .order-grade-btn, .order-sachet-btn, .order-qty-btn,
  .sachet-opt, .grade-opt {
    min-height: 44px;
  }
  .order-qty-btn { width: 44px; height: 44px; }
  .country-option { padding: 0.75rem 0.9rem; }
  .wa-contact-btn { padding: 0.85rem 1rem; }
  .hamburger { padding: 8px; }
  .hamburger span { width: 24px; height: 2px; }
}
