/* =========================================================================
   THEJA'S PURE — STYLE SYSTEM
   Palette: deep forest green, leaf green, a magenta accent, cream & sand.
   Type: Fraunces (display serif) + Manrope (body/UI).
   Signature: a recurring leaf+droplet motif (from the brand mark) used as
   a divider / bullet throughout, echoing the logo's own swoosh.
   ========================================================================= */

:root {
  --forest: #1B4332;
  --forest-dark: #0E2A1D;
  --leaf: #4C9A6A;
  --leaf-deep: #337355;
  --leaf-light: #E9F2E8;
  --magenta: #C81762;
  --magenta-deep: #9E1150;
  --magenta-light: #FBE6EE;
  --cream: #FBF7EF;
  --sand: #F2EADA;
  --ink: #20281F;
  --ink-soft: #5B6559;
  --white: #FFFFFF;
  --line: #E3DECE;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px -12px rgba(27, 67, 50, 0.18);
  --shadow-lift: 0 18px 46px -16px rgba(27, 67, 50, 0.28);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  margin: 0 0 0.4em;
  line-height: 1.12;
  font-weight: 600;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: 12px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); display: inline-block; }
:focus-visible { outline: 2.5px solid var(--magenta); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--forest-dark); box-shadow: var(--shadow-lift); }
.btn-whatsapp { background: #25D366; color: #06340f; }
.btn-whatsapp:hover { background: #1ebc59; }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost { background: var(--leaf-light); color: var(--forest-dark); }
.btn-ghost:hover { background: #dfeddd; }
.btn-magenta { background: var(--magenta); color: var(--white); }
.btn-magenta:hover { background: var(--magenta-deep); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.icon { width: 18px; height: 18px; flex: none; }

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--forest-dark); }
.brand .brand-mark { width: 38px; height: 38px; flex: none; }
.brand .tagline { display: block; font-family: var(--font-body); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--leaf-deep); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--forest-dark); border-color: var(--magenta); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); display: flex; align-items: center; justify-content: center; transition: border-color .15s, transform .15s; }
.icon-btn:hover { border-color: var(--leaf); transform: translateY(-1px); }
.cart-badge { position: absolute; top: -4px; right: -4px; background: var(--magenta); color: #fff; font-size: 10.5px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.hamburger { display: none; }

/* -------------------------------- Search bar in header -------------------------------- */
.header-search { flex: 1; max-width: 340px; position: relative; display: none; }
.header-search input {
  width: 100%; padding: 10px 14px 10px 38px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--white); font-family: var(--font-body); font-size: 14px; color: var(--ink);
}
.header-search input:focus { border-color: var(--leaf); }
.header-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-soft); }

/* --------------------------------- Hero --------------------------------- */
.hero { position: relative; overflow: hidden; padding: 76px 0 90px; }
.hero-bg-shape {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(560px 420px at 88% -8%, var(--leaf-light) 0%, transparent 65%),
    radial-gradient(420px 320px at 4% 100%, var(--magenta-light) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 5vw, 62px); letter-spacing: -0.01em; }
.hero-copy h1 .accent { color: var(--leaf-deep); font-style: italic; }
.hero-copy .lede { font-size: 17.5px; color: var(--ink-soft); max-width: 480px; margin: 18px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--forest-dark); }
.hero-badge .icon { color: var(--leaf-deep); width: 20px; height: 20px; }
.hero-visual { position: relative; }
.hero-visual .card-stack { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); background: linear-gradient(155deg, var(--forest) 0%, var(--leaf-deep) 100%); box-shadow: var(--shadow-lift); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-visual .card-stack svg { width: 62%; height: 62%; }
.hero-visual .float-chip { position: absolute; background: var(--white); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-soft); font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.hero-visual .chip-1 { top: -16px; left: -10px; color: var(--forest-dark); }
.hero-visual .chip-2 { bottom: -14px; right: -14px; color: var(--magenta-deep); }

/* ------------------------------ Section base ----------------------------- */
.section { padding: 78px 0; }
.section-tight { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--ink-soft); font-size: 16px; }
.section-alt { background: var(--sand); }
.divider-motif { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 16px; }
.divider-motif svg { width: 22px; height: 22px; color: var(--leaf-deep); }
.divider-motif .line { width: 40px; height: 1.5px; background: var(--line); }

/* ----------------------------- Category cards ---------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.category-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px 20px; text-align: center;
  border: 1.5px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--leaf); }
.category-card .cat-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--leaf-light); display: flex; align-items: center; justify-content: center; color: var(--forest); }
.category-card .cat-icon svg { width: 28px; height: 28px; }
.category-card h3 { font-size: 17px; margin-bottom: 2px; }
.category-card .cat-count { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.category-card .cat-blurb { font-size: 12.5px; color: var(--ink-soft); min-height: 32px; }
.category-card .btn { margin-top: 4px; }

/* ------------------------------ Product grid ----------------------------- */
.product-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.search-box { position: relative; flex: 1; min-width: 220px; max-width: 420px; }
.search-box input { width: 100%; padding: 12px 16px 12px 42px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--white); font-size: 14.5px; }
.search-box input:focus { border-color: var(--leaf); }
.search-box svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--ink-soft); }
.toolbar-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.select-pill { padding: 10px 14px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--white); font-size: 13.5px; font-weight: 600; color: var(--ink); }

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.chip { padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--white); font-size: 13.5px; font-weight: 700; color: var(--ink-soft); transition: all .15s ease; }
.chip:hover { border-color: var(--leaf); color: var(--forest-dark); }
.chip.active { background: var(--forest); border-color: var(--forest); color: var(--white); }
.subchip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.subchip { padding: 6px 13px; border-radius: 100px; background: var(--leaf-light); font-size: 12.5px; font-weight: 700; color: var(--forest-dark); border: 1.5px solid transparent; }
.subchip.active { background: var(--magenta-light); color: var(--magenta-deep); border-color: var(--magenta); }

.result-count { font-size: 13.5px; color: var(--ink-soft); margin: -6px 0 20px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--line);
  display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--leaf); }
.product-media { position: relative; aspect-ratio: 1/1; background: var(--leaf-light); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }
.badge-row { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.badge { font-size: 10.5px; font-weight: 800; letter-spacing: .04em; padding: 5px 10px; border-radius: 100px; text-transform: uppercase; }
.badge-featured { background: var(--forest); color: #fff; }
.badge-popular { background: var(--magenta); color: #fff; }
.badge-out { background: #b3462f; color: #fff; }
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--leaf-deep); }
.product-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--forest-dark); }
.product-meta { font-size: 12.5px; color: var(--ink-soft); }
.product-price { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.product-price .contact { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--magenta-deep); }
.product-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 10px; }
.product-actions .btn { flex: 1; padding: 10px 10px; font-size: 12.5px; }

.empty-state { text-align: center; padding: 70px 20px; color: var(--ink-soft); }
.empty-state svg { width: 54px; height: 54px; color: var(--leaf); margin-bottom: 14px; }

.load-more-wrap { text-align: center; margin-top: 36px; }

/* -------------------------------- About --------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-visual { border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--leaf-light), var(--sand)); aspect-ratio: 4/3.2; display: flex; align-items: center; justify-content: center; }
.about-visual svg { width: 46%; height: 46%; }
.about-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.about-points .icon-dot { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--leaf-light); color: var(--forest); display: flex; align-items: center; justify-content: center; }
.about-points .icon-dot svg { width: 15px; height: 15px; }

/* ------------------------------- CTA strip ------------------------------- */
.cta-strip { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%); border-radius: var(--radius-lg); padding: 52px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: 28px; margin-bottom: 6px; }
.cta-strip p { color: #d9e8dd; margin: 0; }
.cta-strip .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-strip .btn-outline:hover { background: #fff; color: var(--forest-dark); }

/* -------------------------------- Footer --------------------------------- */
.site-footer { background: var(--forest-dark); color: #cfe0d3; padding: 62px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand svg { width: 32px; height: 32px; }
.site-footer .tagline { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf); font-weight: 700; margin-bottom: 16px; }
.site-footer p { color: #a9c0ae; font-size: 14px; }
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: #b9cebd; font-size: 14.5px; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #8fa793; }

/* ---------------------------- Floating WhatsApp --------------------------- */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  display: flex; align-items: center; gap: 10px; background: #25D366; color: #06340f;
  padding: 14px 20px 14px 14px; border-radius: 100px; box-shadow: 0 12px 30px -8px rgba(0,0,0,.35);
  font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease;
}
.float-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px -6px rgba(0,0,0,.4); }
.float-whatsapp svg { width: 26px; height: 26px; flex: none; }
.float-whatsapp .pulse { position: absolute; inset: 0; border-radius: 100px; border: 2px solid #25D366; animation: pulse-ring 2.2s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.35); opacity: 0; } }

/* -------------------------------- Cart drawer ----------------------------- */
.overlay { position: fixed; inset: 0; background: rgba(15, 30, 20, .45); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: var(--cream);
  z-index: 95; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column;
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.3);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { margin: 0; font-size: 20px; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.cart-item img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; background: var(--leaf-light); flex: none; }
.cart-item-info { flex: 1; }
.cart-item-info .name { font-weight: 700; font-size: 14.5px; color: var(--forest-dark); }
.cart-item-info .variant { font-size: 12px; color: var(--ink-soft); }
.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-control button { width: 26px; height: 26px; border-radius: 8px; border: 1.5px solid var(--line); background: #fff; font-weight: 800; }
.qty-control span { font-weight: 700; min-width: 18px; text-align: center; }
.cart-item-remove { align-self: flex-start; font-size: 12px; color: var(--magenta-deep); font-weight: 700; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty svg { width: 46px; height: 46px; color: var(--leaf); margin-bottom: 12px; }
.cart-foot { padding: 18px 22px 24px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.cart-foot .hint { font-size: 12px; color: var(--ink-soft); text-align: center; }

/* -------------------------------- Modal ---------------------------------- */
.modal-wrap { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.modal-wrap.open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--cream); width: 100%; max-width: 940px; max-height: 92vh; overflow-y: auto;
  border-radius: 26px 26px 0 0; transform: translateY(30px); transition: transform .3s ease;
  display: grid; grid-template-columns: 1fr 1fr;
}
.modal-wrap.open .modal-card { transform: translateY(0); }
@media (min-width: 760px) {
  .modal-wrap { align-items: center; padding: 30px; }
  .modal-card { border-radius: 26px; }
}
.modal-media { background: var(--leaf-light); position: relative; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: none; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
.modal-body { padding: 32px 30px; display: flex; flex-direction: column; }
.modal-body .product-cat { margin-bottom: 8px; }
.modal-body h2 { font-size: 28px; }
.modal-desc { color: var(--ink-soft); font-size: 15px; margin: 10px 0 18px; }
.modal-section { margin-bottom: 18px; }
.modal-section .label { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); margin-bottom: 10px; }
.option-row { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill { padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 13.5px; }
.option-pill.active { background: var(--forest); border-color: var(--forest); color: #fff; }
.modal-price { font-family: var(--font-display); font-size: 26px; margin-bottom: 4px; }
.modal-price .contact { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--magenta-deep); }
.modal-qty { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.modal-qty button { width: 34px; height: 34px; border-radius: 10px; border: 1.5px solid var(--line); background: #fff; font-weight: 800; font-size: 16px; }
.modal-qty span { font-weight: 800; font-size: 16px; min-width: 20px; text-align: center; }
.modal-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.modal-actions .btn { flex: 1; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table td { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.spec-table td:first-child { color: var(--ink-soft); width: 40%; }
.spec-table td:last-child { font-weight: 700; color: var(--forest-dark); }

/* ------------------------------- Toast ------------------------------------ */
.toast { position: fixed; bottom: 100px; right: 24px; z-index: 200; background: var(--forest-dark); color: #fff; padding: 14px 20px; border-radius: 12px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-lift); transform: translateY(20px); opacity: 0; transition: all .25s ease; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* -------------------------------- About / trust strip ----------------------- */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.trust-item { text-align: center; padding: 18px 10px; }
.trust-item .icon-dot { width: 46px; height: 46px; border-radius: 50%; background: var(--leaf-light); color: var(--forest); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.trust-item .icon-dot svg { width: 22px; height: 22px; }
.trust-item h4 { font-size: 13.5px; margin: 0 0 2px; }
.trust-item p { font-size: 12px; color: var(--ink-soft); margin: 0; }

/* --------------------------------- Mobile menu ----------------------------- */
.mobile-menu { position: fixed; inset: 0; background: var(--cream); z-index: 99; transform: translateX(100%); transition: transform .25s ease; padding: 90px 28px 28px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 16px 4px; font-size: 19px; font-weight: 700; color: var(--forest-dark); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 20px; }

/* ------------------------------------ Utility ------------------------------ */
.hide { display: none !important; }
.mt-0 { margin-top: 0; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1040px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .header-search { display: none !important; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media img { min-height: 220px; }
  .cta-strip { flex-direction: column; text-align: center; padding: 40px 26px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .float-whatsapp span.label { display: none; }
  .float-whatsapp { padding: 14px; border-radius: 50%; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 12px; }
  .product-actions { flex-wrap: wrap; }
  .product-actions .btn { flex: 1 1 100%; }
  .container { padding: 0 16px; }
  .section { padding: 54px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cart-drawer { width: 100vw; }
}
