/* ============================================================
   SohanKobirajBD — storefront styles
   Hand-written, no framework: one small file, no build step.
   ============================================================ */

:root{
  --green-900:#063d1a;
  --green-800:#0a5624;
  --green-700:#0d7a30;
  --green-600:#16a34a;
  --green-500:#22c55e;
  --leaf:#7cc243;
  --gold:#ffb800;
  --gold-600:#e09b00;
  --amber-50:#fff8e6;

  --ink:#14261a;
  --body:#3c4b41;
  --muted:#6b7d71;
  --bg:#f6faf6;
  --card:#ffffff;
  --border:#e2ece4;
  --border-2:#d3e2d7;

  --red:#dc2626;
  --red-50:#fef2f2;

  --radius:14px;
  --radius-sm:10px;
  --radius-lg:22px;
  --shadow-sm:0 1px 2px rgba(6,61,26,.06);
  --shadow:0 4px 16px rgba(6,61,26,.08);
  --shadow-lg:0 12px 34px rgba(6,61,26,.14);
  --container:1200px;
  --header-h:64px;
}

*,*::before,*::after{box-sizing:border-box}

html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Hind Siliguri','Noto Sans Bengali','Nirmala UI',SolaimanLipi,system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size:16px;
  line-height:1.75;
  color:var(--body);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer}
h1,h2,h3,h4,h5{margin:0 0 .5em;color:var(--ink);font-weight:700;line-height:1.35}
h1{font-size:clamp(1.6rem,4vw,2.6rem)}
h2{font-size:clamp(1.35rem,3vw,2rem)}
h3{font-size:clamp(1.1rem,2.2vw,1.35rem)}
p{margin:0 0 1em}
ul,ol{margin:0 0 1em;padding-left:1.35em}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:16px}

/* Keyboard users get a way past the header without tabbing the whole nav. */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--green-700);color:#fff;padding:.6rem 1.1rem;border-radius:0 0 10px 0;font-weight:700;
}
.skip-link:focus{left:0}

:where(a,button,input,select,textarea,summary):focus-visible{
  outline:3px solid var(--green-500);outline-offset:2px;border-radius:4px;
}

/* Opt-in only. Applied to long, far-below-the-fold blocks (reviews, FAQ) so the
   browser can skip their layout until they scroll near. Deliberately not applied
   to every section — sections containing sticky elements or scroll anchors
   (#order-form) must stay unconstrained. */
.cv-auto{content-visibility:auto;contain-intrinsic-size:auto 640px}
.wrap-sm{max-width:760px;margin-inline:auto}
.center{text-align:center}
.hide{display:none !important}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---------------------------- Buttons ---------------------------- */

.btn{
  --btn-bg:var(--green-700);
  --btn-fg:#fff;
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.7rem 1.4rem;border:0;border-radius:999px;
  background:var(--btn-bg);color:var(--btn-fg);
  font-weight:700;font-size:1rem;line-height:1.3;
  transition:transform .12s ease,box-shadow .18s ease,filter .18s ease;
  box-shadow:var(--shadow-sm);
  text-align:center;
}
.btn:hover{filter:brightness(1.07);box-shadow:var(--shadow)}
.btn:active{transform:translateY(1px)}
.btn--gold{--btn-bg:linear-gradient(135deg,var(--gold),var(--gold-600));--btn-fg:#3a2a00}
.btn--outline{--btn-bg:transparent;--btn-fg:var(--green-700);border:2px solid var(--green-700)}
.btn--outline:hover{--btn-bg:var(--green-700);--btn-fg:#fff}
.btn--ghost{--btn-bg:#eef6ef;--btn-fg:var(--green-800)}
.btn--danger{--btn-bg:var(--red)}
.btn--lg{padding:.95rem 2rem;font-size:1.1rem}
.btn--sm{padding:.45rem .95rem;font-size:.9rem}
.btn--block{display:flex;width:100%}
.btn[disabled]{opacity:.55;pointer-events:none}

.btn-pulse{animation:pulse 2.2s infinite}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,184,0,.55)}
  70%{box-shadow:0 0 0 14px rgba(255,184,0,0)}
  100%{box-shadow:0 0 0 0 rgba(255,184,0,0)}
}
@media (prefers-reduced-motion:reduce){
  .btn-pulse{animation:none}
  html{scroll-behavior:auto}
}

/* ---------------------------- Header ---------------------------- */

.topbar{
  background:linear-gradient(90deg,var(--green-800),var(--green-600));
  color:#eaf7ec;font-size:.85rem;
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:38px;padding-block:6px}
.topbar a{color:#fff}
.topbar__links{display:flex;gap:1rem;align-items:center}

.header{
  position:sticky;top:0;z-index:60;background:#fff;
  border-bottom:1px solid var(--border);box-shadow:0 1px 0 rgba(6,61,26,.04);
}
.header__inner{display:flex;align-items:center;gap:1rem;min-height:var(--header-h)}
.logo{display:flex;align-items:center;flex-shrink:0}
.logo img{height:44px;width:auto;object-fit:contain}
.logo__text{font-weight:800;color:var(--green-800);font-size:1.15rem}

.nav{display:flex;align-items:center;gap:.25rem;margin-inline:auto}
.nav a{
  padding:.5rem .85rem;border-radius:999px;font-weight:600;color:var(--ink);
  font-size:.97rem;transition:background .15s,color .15s;
}
.nav a:hover,.nav a.is-active{background:#eaf6ec;color:var(--green-800)}

.header__actions{display:flex;align-items:center;gap:.4rem;margin-left:auto}

.icon-btn{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;background:#f1f7f2;color:var(--green-800);border:0;
  transition:background .15s;
}
.icon-btn:hover{background:#e0f0e3}
.icon-btn svg{width:21px;height:21px}
.cart-badge{
  position:absolute;top:-2px;right:-2px;min-width:20px;height:20px;padding:0 5px;
  display:none;align-items:center;justify-content:center;
  background:var(--gold);color:#3a2a00;border-radius:999px;font-size:.72rem;font-weight:800;
}
.cart-badge.show{display:flex}

.burger{display:none}

.searchbar{flex:1;max-width:340px;position:relative}
.searchbar input{
  width:100%;padding:.6rem 2.6rem .6rem 1rem;border:1.5px solid var(--border-2);
  border-radius:999px;background:#fbfdfb;font-size:.95rem;outline:none;color:var(--ink);
}
.searchbar input:focus{border-color:var(--green-500);background:#fff}
.searchbar button{
  position:absolute;right:4px;top:50%;transform:translateY(-50%);
  width:34px;height:34px;border-radius:50%;border:0;background:var(--green-700);color:#fff;
  display:grid;place-items:center;
}
.searchbar svg{width:17px;height:17px}

/* Mobile drawer */
.drawer{
  position:fixed;inset:0 auto 0 0;width:min(86vw,320px);background:#fff;z-index:120;
  transform:translateX(-102%);transition:transform .25s ease;padding:1rem;overflow-y:auto;
  box-shadow:var(--shadow-lg);
}
.drawer.open{transform:none}
.drawer a{display:block;padding:.7rem .4rem;border-bottom:1px solid var(--border);font-weight:600;color:var(--ink)}
.overlay{position:fixed;inset:0;background:rgba(6,30,14,.5);z-index:110;opacity:0;pointer-events:none;transition:opacity .2s}
.overlay.open{opacity:1;pointer-events:auto}

/* ---------------------------- Hero ---------------------------- */

.hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(900px 420px at 88% 10%, rgba(124,194,67,.22), transparent 60%),
    linear-gradient(135deg,#f0f8f1 0%,#e6f4e9 50%,#f7fbf5 100%);
  padding-block:clamp(2rem,5vw,4.25rem);
}
.hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:2.5rem;align-items:center}
.hero__eyebrow{
  display:inline-flex;align-items:center;gap:.45rem;padding:.35rem .9rem;border-radius:999px;
  background:#fff;color:var(--green-800);font-weight:700;font-size:.85rem;box-shadow:var(--shadow-sm);
  margin-bottom:1rem;
}
.hero h1{color:var(--green-900);margin-bottom:.6rem}
.hero h1 span{color:var(--green-600)}
.hero__lead{font-size:clamp(1rem,1.6vw,1.12rem);color:var(--body);max-width:52ch;margin-bottom:1.5rem}
.hero__cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem}
.hero__trust{display:flex;flex-wrap:wrap;gap:1.25rem;font-size:.9rem;color:var(--green-800);font-weight:600}
.hero__trust span{display:inline-flex;align-items:center;gap:.4rem}
.hero__art{position:relative}
.hero__art img{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);width:100%}
.hero__badge{
  position:absolute;bottom:14px;left:-10px;background:#fff;border-radius:var(--radius);
  padding:.7rem 1rem;box-shadow:var(--shadow-lg);font-weight:700;color:var(--green-800);font-size:.9rem;
}

/* --------------------------- Sections --------------------------- */

.section{padding-block:clamp(2.25rem,4.5vw,3.75rem)}
.section--tint{background:#fff}
.section__head{text-align:center;margin-bottom:2rem}
.section__head h2{margin-bottom:.35rem}
.section__head p{color:var(--muted);margin:0}
.section__head--row{display:flex;align-items:flex-end;justify-content:space-between;text-align:left;gap:1rem}

.eyebrow{
  display:inline-block;padding:.25rem .8rem;border-radius:999px;background:#eaf6ec;
  color:var(--green-700);font-weight:700;font-size:.82rem;margin-bottom:.6rem;letter-spacing:.02em;
}

/* --------------------------- Grids --------------------------- */

.grid{display:grid;gap:1.15rem}
.grid--4{grid-template-columns:repeat(4,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--cats{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}

/* ------------------------- Product card ------------------------- */

.card{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--border-2)}

.card__media{position:relative;aspect-ratio:1/1;background:#f3f8f4;overflow:hidden}
.card__media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.card:hover .card__media img{transform:scale(1.05)}

.badge{
  position:absolute;top:10px;left:10px;padding:.22rem .6rem;border-radius:999px;
  font-size:.75rem;font-weight:800;background:var(--red);color:#fff;z-index:2;
}
.badge--gold{background:var(--gold);color:#3a2a00}
.badge--green{background:var(--green-600)}
.badge--out{background:#64748b}
.badge.right{left:auto;right:10px}

.card__body{padding:.9rem 1rem 1.05rem;display:flex;flex-direction:column;flex:1;gap:.35rem}
.card__cat{font-size:.78rem;color:var(--muted)}
.card__title{font-size:1rem;font-weight:700;color:var(--ink);line-height:1.45;margin:0;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card__title a:hover{color:var(--green-700)}
.card__unit{font-size:.82rem;color:var(--muted)}

.stars{display:inline-flex;gap:1px;color:var(--gold);font-size:.85rem;line-height:1}
.rating-row{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:var(--muted)}

.price{display:flex;align-items:baseline;gap:.5rem;margin-top:auto;padding-top:.35rem}
.price__now{font-size:1.22rem;font-weight:800;color:var(--green-700)}
.price__old{font-size:.95rem;color:#9aa8a0;text-decoration:line-through}
.price__save{font-size:.78rem;font-weight:700;color:var(--red)}

.card__actions{display:flex;gap:.5rem;margin-top:.7rem}
.card__actions .btn{flex:1;padding-inline:.6rem;font-size:.9rem}

/* -------------------------- Category card ------------------------ */

.cat{
  display:flex;flex-direction:column;align-items:center;gap:.6rem;padding:1.15rem .75rem;
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);text-align:center;
  transition:transform .18s,box-shadow .18s,border-color .18s;
}
.cat:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--green-500)}
.cat__icon{
  width:62px;height:62px;border-radius:50%;display:grid;place-items:center;
  background:linear-gradient(135deg,#e8f6ea,#d8efdd);font-size:1.7rem;overflow:hidden;
}
.cat__icon img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.cat__name{font-weight:700;color:var(--ink);font-size:.95rem;line-height:1.4}

/* --------------------------- Combo card -------------------------- */

.combo-card{
  display:grid;grid-template-columns:200px 1fr;gap:0;background:#fff;
  border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;
  transition:box-shadow .2s,border-color .2s;
}
.combo-card:hover{box-shadow:var(--shadow);border-color:var(--green-500)}
.combo-card__media{position:relative;background:#f3f8f4}
.combo-card__media img{width:100%;height:100%;object-fit:cover;aspect-ratio:1/1}
.combo-card__body{padding:1.1rem 1.25rem;display:flex;flex-direction:column;gap:.45rem}
.combo-items{list-style:none;padding:0;margin:.2rem 0 .5rem;font-size:.88rem;color:var(--body)}
.combo-items li{display:flex;gap:.45rem;align-items:flex-start;padding:.12rem 0}
.combo-items li::before{content:'✓';color:var(--green-600);font-weight:800}

/* --------------------------- Features --------------------------- */

.features{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.feature{
  display:flex;gap:.85rem;align-items:flex-start;padding:1.15rem;background:#fff;
  border:1px solid var(--border);border-radius:var(--radius);
}
.feature__icon{
  flex-shrink:0;width:46px;height:46px;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--green-600),var(--leaf));color:#fff;font-size:1.25rem;
}
.feature h4{margin:0 0 .15rem;font-size:1rem}
.feature p{margin:0;font-size:.87rem;color:var(--muted);line-height:1.6}

/* --------------------------- Reviews --------------------------- */

.review{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.2rem;
  display:flex;flex-direction:column;gap:.6rem;height:100%;
}
.review__top{display:flex;align-items:center;gap:.7rem}
.avatar{
  width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--green-600),var(--leaf));
  color:#fff;display:grid;place-items:center;font-weight:800;font-size:1.05rem;flex-shrink:0;
}
.review__name{font-weight:700;color:var(--ink);line-height:1.3}
.review__loc{font-size:.8rem;color:var(--muted)}
.review__text{margin:0;font-size:.93rem;color:var(--body)}

/* ---------------------------- Tables ---------------------------- */

.table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
table.tbl{width:100%;border-collapse:collapse;background:#fff;font-size:.94rem}
table.tbl th,table.tbl td{padding:.8rem .85rem;text-align:left;border-bottom:1px solid var(--border)}
table.tbl th{background:#f3f8f4;font-weight:700;color:var(--ink);white-space:nowrap}
table.tbl tbody tr:hover{background:#fafdfa}

/* ----------------------------- Forms ---------------------------- */

.field{margin-bottom:1rem}
.field label,.lbl{display:block;font-weight:700;color:var(--ink);margin-bottom:.35rem;font-size:.93rem}
.req{color:var(--red)}
.input,.select,.textarea{
  width:100%;padding:.72rem .9rem;border:1.5px solid var(--border-2);border-radius:var(--radius-sm);
  background:#fff;font:inherit;font-size:1rem;color:var(--ink);outline:none;transition:border-color .15s,box-shadow .15s;
}
.input:focus,.select:focus,.textarea:focus{border-color:var(--green-500);box-shadow:0 0 0 3px rgba(34,197,94,.14)}
.textarea{min-height:96px;resize:vertical;line-height:1.6}
.select{appearance:none;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7d71' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .8rem center;background-size:17px;padding-right:2.4rem}
.help{font-size:.82rem;color:var(--muted);margin-top:.25rem}
.err{color:var(--red);font-size:.85rem;margin-top:.25rem;font-weight:600}
.input.is-invalid,.select.is-invalid,.textarea.is-invalid{border-color:var(--red);background:var(--red-50)}

.radio-card{
  display:flex;align-items:center;gap:.7rem;padding:.8rem 1rem;border:1.5px solid var(--border-2);
  border-radius:var(--radius-sm);cursor:pointer;background:#fff;transition:border-color .15s,background .15s;
  margin-bottom:.55rem;
}
.radio-card:hover{border-color:var(--green-500)}
.radio-card input{accent-color:var(--green-600);width:18px;height:18px;flex-shrink:0}
.radio-card.checked{border-color:var(--green-600);background:#f2faf4}
.radio-card__label{flex:1;font-weight:600;color:var(--ink);font-size:.95rem}
.radio-card__price{font-weight:800;color:var(--green-700)}

.checkline{display:flex;align-items:center;gap:.55rem;font-weight:600;color:var(--ink);cursor:pointer}
.checkline input{width:18px;height:18px;accent-color:var(--green-600)}

/* ----------------------------- Qty ------------------------------ */

.qty{display:inline-flex;align-items:center;border:1.5px solid var(--border-2);border-radius:999px;overflow:hidden;background:#fff}
.qty button{width:38px;height:38px;border:0;background:#f3f8f4;color:var(--green-800);font-size:1.15rem;font-weight:700;display:grid;place-items:center}
.qty button:hover{background:#e3f1e6}
.qty input{width:52px;height:38px;border:0;text-align:center;font-weight:700;font-size:1rem;color:var(--ink);outline:none;-moz-appearance:textfield}
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}

/* ---------------------------- Alerts ---------------------------- */

.alert{padding:.85rem 1.1rem;border-radius:var(--radius-sm);margin-bottom:1rem;font-weight:600;border:1px solid transparent}
.alert--success{background:#ecfdf3;color:#166534;border-color:#bbf7d0}
.alert--error{background:var(--red-50);color:#991b1b;border-color:#fecaca}
.alert--info{background:#eff6ff;color:#1e40af;border-color:#bfdbfe}
.alert--warn{background:var(--amber-50);color:#92400e;border-color:#fde68a}

/* ------------------------ Product detail ------------------------ */

.crumbs{font-size:.86rem;color:var(--muted);padding-block:1rem}
.crumbs a:hover{color:var(--green-700)}
.crumbs span{margin-inline:.35rem}

.pd{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:2.5rem;align-items:start}
.pd__gallery{position:sticky;top:calc(var(--header-h) + 14px)}
.pd__main{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff;aspect-ratio:1/1}
.pd__main img{width:100%;height:100%;object-fit:cover}
.pd__thumbs{display:flex;gap:.6rem;margin-top:.7rem;overflow-x:auto;padding-bottom:4px}
.pd__thumbs button{
  width:74px;height:74px;flex-shrink:0;border:2px solid var(--border);border-radius:10px;
  overflow:hidden;padding:0;background:#fff;
}
.pd__thumbs button.active{border-color:var(--green-600)}
.pd__thumbs img{width:100%;height:100%;object-fit:cover}

.pd__title{font-size:clamp(1.4rem,3vw,2rem);margin-bottom:.4rem}
.pd__price{display:flex;align-items:baseline;gap:.75rem;flex-wrap:wrap;margin:.9rem 0}
.pd__price .now{font-size:2rem;font-weight:800;color:var(--green-700)}
.pd__price .old{font-size:1.15rem;color:#9aa8a0;text-decoration:line-through}
.pd__price .save{background:var(--red-50);color:var(--red);font-weight:800;font-size:.85rem;padding:.2rem .6rem;border-radius:999px}

.tick-list{list-style:none;padding:0;margin:.5rem 0 1.2rem;display:grid;gap:.45rem}
.tick-list li{display:flex;gap:.6rem;align-items:flex-start;font-size:.97rem}
.tick-list li::before{content:'✓';flex-shrink:0;width:22px;height:22px;border-radius:50%;
  background:var(--green-600);color:#fff;display:grid;place-items:center;font-size:.78rem;font-weight:800;margin-top:3px}

.buybox{
  background:linear-gradient(135deg,#f4fbf5,#eaf6ec);border:1.5px solid var(--border-2);
  border-radius:var(--radius);padding:1.15rem;margin-block:1.25rem;
}
.buybox__row{display:flex;gap:.75rem;align-items:center;flex-wrap:wrap}
.buybox__row .btn{flex:1;min-width:150px}

.trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin-top:1.2rem}
.trust{display:flex;gap:.55rem;align-items:center;font-size:.85rem;font-weight:600;color:var(--green-800)}
.trust svg{width:26px;height:26px;flex-shrink:0;color:var(--green-600)}

.tabs{display:flex;gap:.4rem;border-bottom:2px solid var(--border);margin-bottom:1.25rem;overflow-x:auto}
.tabs button{
  padding:.7rem 1.1rem;border:0;background:none;font-weight:700;color:var(--muted);
  border-bottom:3px solid transparent;margin-bottom:-2px;white-space:nowrap;
}
.tabs button.active{color:var(--green-700);border-bottom-color:var(--green-600)}
.tabpane{display:none}
.tabpane.active{display:block;animation:fade .2s ease}
@keyframes fade{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}}

.prose{line-height:1.85;color:var(--body)}
.prose h3,.prose h4{margin-top:1.4em}
.prose ul{padding-left:1.3em}
.prose img{border-radius:var(--radius);margin-block:1rem}
.prose table{width:100%;border-collapse:collapse;margin-block:1rem}
.prose td,.prose th{border:1px solid var(--border);padding:.6rem}

/* ---------------------------- Cart ------------------------------ */

.cart-grid{display:grid;grid-template-columns:1fr 360px;gap:1.75rem;align-items:start}
.panel{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem}
.panel__title{font-size:1.1rem;margin-bottom:1rem;padding-bottom:.65rem;border-bottom:1px solid var(--border)}
.summary{position:sticky;top:calc(var(--header-h) + 14px)}
.sum-row{display:flex;justify-content:space-between;padding:.45rem 0;font-size:.97rem}
.sum-row--total{border-top:2px dashed var(--border-2);margin-top:.5rem;padding-top:.8rem;font-size:1.2rem;font-weight:800;color:var(--green-700)}

.cart-item{display:grid;grid-template-columns:86px 1fr auto;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--border);align-items:center}
.cart-item:last-child{border-bottom:0}
.cart-item img{width:86px;height:86px;object-fit:cover;border-radius:10px;background:#f3f8f4}

.empty{text-align:center;padding:3.5rem 1rem}
.empty svg{width:88px;height:88px;color:#c9dccd;margin-bottom:1rem}

/* -------------------------- Checkout ---------------------------- */

.co-grid{display:grid;grid-template-columns:1.25fr .85fr;gap:1.75rem;align-items:start}
.step-badge{
  display:inline-grid;place-items:center;width:28px;height:28px;border-radius:50%;
  background:var(--green-700);color:#fff;font-weight:800;font-size:.9rem;margin-right:.5rem;
}
.mini-item{display:flex;gap:.7rem;align-items:center;padding:.55rem 0;border-bottom:1px dashed var(--border)}
.mini-item img{width:52px;height:52px;border-radius:8px;object-fit:cover;background:#f3f8f4}
.mini-item__name{font-size:.9rem;font-weight:600;color:var(--ink);line-height:1.4}

/* -------------------------- Thank you --------------------------- */

.success-hero{text-align:center;padding:2.5rem 1rem 1.5rem}
.success-ring{
  width:96px;height:96px;margin:0 auto 1.1rem;border-radius:50%;display:grid;place-items:center;
  background:#ecfdf3;color:var(--green-600);border:3px solid #bbf7d0;
}
.success-ring svg{width:50px;height:50px}

/* -------------------------- Landing page ------------------------ */

.lp{background:#fff}
.lp-hero{
  background:
    radial-gradient(800px 380px at 85% 0%, rgba(124,194,67,.25), transparent 62%),
    linear-gradient(160deg,#0a5624 0%,#0d7a30 45%,#16a34a 100%);
  color:#eefaf0;padding-block:clamp(1.75rem,4vw,3rem);
}
.lp-hero h1{color:#fff;font-size:clamp(1.55rem,4.2vw,2.75rem);text-shadow:0 2px 12px rgba(0,0,0,.18)}
.lp-hero p{color:#dff3e3;font-size:clamp(1rem,1.7vw,1.15rem)}
.lp-hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:2rem;align-items:center}
.lp-hero img{border-radius:var(--radius-lg);box-shadow:0 20px 46px rgba(0,0,0,.3)}
.lp-badge{
  display:inline-block;background:var(--gold);color:#3a2a00;font-weight:800;
  padding:.35rem 1rem;border-radius:999px;font-size:.9rem;margin-bottom:.9rem;
}
.lp-price{display:flex;align-items:baseline;gap:.8rem;flex-wrap:wrap;margin:1rem 0 1.25rem}
.lp-price .now{font-size:clamp(1.9rem,4vw,2.6rem);font-weight:800;color:var(--gold)}
.lp-price .old{font-size:1.2rem;text-decoration:line-through;opacity:.75}

.countdown{display:flex;gap:.5rem;margin:1rem 0}
.cd-box{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);border-radius:10px;padding:.5rem .7rem;text-align:center;min-width:62px;backdrop-filter:blur(4px)}
.cd-box b{display:block;font-size:1.35rem;line-height:1.2;color:#fff}
.cd-box span{font-size:.72rem;opacity:.85}

.lp-section{padding-block:clamp(2rem,4vw,3.25rem)}
.lp-section--tint{background:#f6faf6}
.lp-benefit{
  display:flex;gap:.85rem;align-items:flex-start;background:#fff;border:1px solid var(--border);
  border-left:4px solid var(--green-600);border-radius:12px;padding:1rem 1.15rem;
}
.lp-benefit b{color:var(--green-800)}
.num-badge{
  flex-shrink:0;width:34px;height:34px;border-radius:50%;background:var(--green-600);color:#fff;
  display:grid;place-items:center;font-weight:800;
}

.faq{border:1px solid var(--border);border-radius:12px;background:#fff;margin-bottom:.7rem;overflow:hidden}
.faq summary{padding:.95rem 1.15rem;font-weight:700;color:var(--ink);cursor:pointer;list-style:none;display:flex;justify-content:space-between;gap:1rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+';font-size:1.4rem;color:var(--green-600);line-height:1}
.faq[open] summary::after{content:'−'}
.faq__body{padding:0 1.15rem 1.05rem;color:var(--body);font-size:.95rem}

.order-form{
  background:#fff;border:2px solid var(--green-600);border-radius:var(--radius-lg);
  padding:clamp(1.15rem,3vw,1.9rem);box-shadow:var(--shadow-lg);
}
.order-form__head{text-align:center;margin-bottom:1.25rem}
.order-form__head h3{color:var(--green-800);margin-bottom:.25rem}

.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:90;background:#fff;
  border-top:1px solid var(--border);box-shadow:0 -6px 22px rgba(6,61,26,.12);
  padding:.6rem 1rem;display:none;align-items:center;gap:.75rem;
}
.sticky-cta .btn{flex:1}
.sticky-cta__price{font-weight:800;color:var(--green-700);font-size:1.05rem;white-space:nowrap}

/* ---------------------------- Footer ---------------------------- */

.footer{background:var(--green-900);color:#cfe6d5;padding-block:2.5rem 1.25rem;margin-top:3rem}
.footer h4{color:#fff;font-size:1.02rem;margin-bottom:.85rem}
.footer a{color:#cfe6d5}
.footer a:hover{color:var(--gold)}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:2rem}
.footer__list{list-style:none;padding:0;margin:0;display:grid;gap:.45rem;font-size:.93rem}
.footer__logo img{height:56px;background:rgba(255,255,255,.06);border-radius:10px;padding:6px}
.footer__bottom{border-top:1px solid rgba(255,255,255,.14);margin-top:2rem;padding-top:1rem;
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.86rem}
.social{display:flex;gap:.55rem}
.social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.1);display:grid;place-items:center;transition:background .15s}
.social a:hover{background:var(--green-600)}
.social svg{width:19px;height:19px}

/* --------------------------- Floating --------------------------- */

.float-actions{position:fixed;right:16px;bottom:18px;z-index:80;display:flex;flex-direction:column;gap:.6rem}
.float-btn{
  width:54px;height:54px;border-radius:50%;display:grid;place-items:center;color:#fff;
  box-shadow:var(--shadow-lg);transition:transform .15s;
}
.float-btn:hover{transform:scale(1.07)}
.float-btn svg{width:27px;height:27px}
.float-btn--wa{background:#25d366}
.float-btn--call{background:var(--green-700)}
.float-btn--msg{background:#0084ff}

.toast{
  position:fixed;left:50%;bottom:26px;transform:translate(-50%,20px);z-index:200;
  background:var(--green-800);color:#fff;padding:.8rem 1.3rem;border-radius:999px;
  font-weight:700;box-shadow:var(--shadow-lg);opacity:0;pointer-events:none;transition:.25s;
  max-width:92vw;text-align:center;font-size:.95rem;
}
.toast.show{opacity:1;transform:translate(-50%,0)}

/* -------------------------- Pagination -------------------------- */

.pager{display:flex;justify-content:center;gap:.35rem;margin-top:2rem;flex-wrap:wrap}
.pager a,.pager span{
  min-width:40px;height:40px;padding-inline:.6rem;border-radius:10px;display:grid;place-items:center;
  background:#fff;border:1px solid var(--border);font-weight:700;color:var(--ink);font-size:.92rem;
}
.pager a:hover{border-color:var(--green-600);color:var(--green-700)}
.pager .active{background:var(--green-700);color:#fff;border-color:var(--green-700)}
.pager .disabled{opacity:.45}

/* -------------------------- Responsive -------------------------- */

@media (max-width:1024px){
  .grid--4{grid-template-columns:repeat(3,1fr)}
  .features{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr}
  .cart-grid,.co-grid{grid-template-columns:1fr}
  .summary{position:static}
}

@media (max-width:900px){
  .nav,.searchbar{display:none}
  .burger{display:inline-flex}
  .hero__grid,.pd,.lp-hero__grid{grid-template-columns:1fr}
  .hero__art{order:-1}
  .pd__gallery{position:static}
  .grid--3{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:640px){
  body{font-size:15px}
  .grid--4,.grid--3,.grid--2{grid-template-columns:repeat(2,1fr)}
  /* Testimonials need full width to stay readable on a phone. */
  .grid--reviews{grid-template-columns:1fr}
  .grid{gap:.8rem}
  .features{grid-template-columns:1fr}
  .combo-card{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .topbar__links span.hide-sm{display:none}
  .card__body{padding:.7rem .75rem .85rem}
  .card__title{font-size:.92rem}
  .price__now{font-size:1.08rem}
  .card__actions{flex-direction:column}
  .cart-item{grid-template-columns:64px 1fr;gap:.7rem}
  .cart-item img{width:64px;height:64px}
  .trust-row{grid-template-columns:1fr}
  .sticky-cta{display:flex}
  .lp-page{padding-bottom:76px}
  .logo img{height:38px}
  .float-actions{bottom:80px}
}

/* ================================================================
   MOBILE
   ~99% of this shop's visitors are on a phone, so everything below
   treats the phone as the real layout, not the fallback.
   ================================================================ */

:root{
  --tap:44px;                 /* smallest comfortable touch target */
  --bottom-bar:60px;          /* height of the fixed bottom bar */
  --safe-b:env(safe-area-inset-bottom,0px);
}

/* Grey flash on tap looks broken on Android; the :active states handle feedback. */
html{-webkit-tap-highlight-color:transparent}

/* iOS zooms the page whenever a focused field is under 16px. */
@media (max-width:900px){
  .input,.select,.textarea,.searchbar input,input,select,textarea{font-size:16px}
}

/* ---------------------- Bottom navigation ---------------------- */

.bottom-nav{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:95;
  background:#fff;border-top:1px solid var(--border);
  box-shadow:0 -4px 18px rgba(6,61,26,.10);
  padding-bottom:var(--safe-b);
}
.bottom-nav__inner{display:flex;align-items:stretch;height:var(--bottom-bar)}
.bottom-nav a{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
  color:var(--muted);font-size:.7rem;font-weight:700;position:relative;padding-top:2px;
  transition:color .15s;
}
.bottom-nav a.is-active{color:var(--green-700)}
.bottom-nav a.is-active::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:26px;height:3px;border-radius:0 0 3px 3px;background:var(--green-600);
}
.bottom-nav svg{width:22px;height:22px}
.bottom-nav .cart-badge{top:2px;right:calc(50% - 20px)}

/* ------------------- Product / combo bottom bar ---------------- */

.buy-bar{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:96;
  background:#fff;border-top:1px solid var(--border);
  box-shadow:0 -4px 18px rgba(6,61,26,.12);
  padding:.5rem .75rem calc(.5rem + var(--safe-b));
  gap:.5rem;align-items:center;
}
.buy-bar__price{display:flex;flex-direction:column;line-height:1.15;flex-shrink:0}
.buy-bar__price b{font-size:1.1rem;color:var(--green-700);font-weight:800}
.buy-bar__price s{font-size:.75rem;color:#9aa8a0}
.buy-bar .btn{flex:1;min-height:var(--tap);padding-inline:.7rem;font-size:.95rem}
.buy-bar__cart{
  width:var(--tap);height:var(--tap);flex-shrink:0;border-radius:12px;background:#eef6ef;
  display:grid;place-items:center;color:var(--green-800);position:relative;
}
.buy-bar__cart svg{width:22px;height:22px}

/* ---------------- Scrollable chip / filter rows ---------------- */

.chip-row{display:flex;gap:.5rem;flex-wrap:wrap}

@media (max-width:900px){
  .chip-row{
    flex-wrap:nowrap;overflow-x:auto;scroll-snap-type:x proximity;
    padding-bottom:.35rem;margin-inline:-16px;padding-inline:16px;
    scrollbar-width:none;-webkit-overflow-scrolling:touch;
  }
  .chip-row::-webkit-scrollbar{display:none}
  .chip-row > *{flex:0 0 auto;scroll-snap-align:start}
}

/* -------------------- Swipeable product gallery ---------------- */

@media (max-width:900px){
  .pd__slider{
    display:flex;gap:.6rem;overflow-x:auto;scroll-snap-type:x mandatory;
    margin-inline:-16px;padding-inline:16px;scrollbar-width:none;-webkit-overflow-scrolling:touch;
  }
  .pd__slider::-webkit-scrollbar{display:none}
  .pd__slide{
    flex:0 0 100%;scroll-snap-align:center;border:1px solid var(--border);
    border-radius:var(--radius);overflow:hidden;background:#fff;aspect-ratio:1/1;
  }
  .pd__slide img{width:100%;height:100%;object-fit:cover}
  .pd__main{display:none}
  .pd__thumbs{display:none}
  .pd__dots{display:flex;justify-content:center;gap:.35rem;margin-top:.6rem}
  .pd__dots span{width:7px;height:7px;border-radius:50%;background:#cfe0d3;transition:width .2s,background .2s}
  .pd__dots span.active{width:20px;background:var(--green-600)}
}
@media (min-width:901px){
  .pd__slider{display:none}
  .pd__dots{display:none}
}

/* ----------------------- Phone layout -------------------------- */

@media (max-width:900px){
  body{padding-bottom:calc(var(--bottom-bar) + var(--safe-b))}
  body.no-bottom-nav{padding-bottom:0}

  .bottom-nav{display:block}
  .has-buy-bar .bottom-nav{display:none}
  .has-buy-bar .buy-bar{display:flex}

  .float-actions{bottom:calc(var(--bottom-bar) + var(--safe-b) + 12px);right:12px}
  .float-btn{width:48px;height:48px}
  .float-btn svg{width:24px;height:24px}

  /* The bottom bar already carries a call button; two would just be clutter. */
  .float-btn--call{display:none}

  /* The notice scrolls instead of wrapping onto a second line and
     stealing a chunk of a small screen. */
  .topbar__inner{gap:.6rem}
  .topbar__marquee{
    flex:1;min-width:0;overflow:hidden;white-space:nowrap;
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 10px,#000 calc(100% - 10px),transparent);
    mask-image:linear-gradient(90deg,transparent,#000 10px,#000 calc(100% - 10px),transparent);
  }
  .topbar__marquee span{display:inline-block;padding-left:100%;animation:marquee 22s linear infinite}
  .topbar__links{flex-shrink:0}
}

@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-100%)}
}

@media (prefers-reduced-motion:reduce){
  .topbar__marquee span{animation:none;padding-left:0}
  .topbar__marquee{text-overflow:ellipsis}
}

@media (max-width:900px){
  /* Every control is at least a thumb wide. */
  .btn{min-height:var(--tap);padding-block:.6rem}
  .btn--sm{min-height:40px;padding:.5rem .9rem;font-size:.9rem}
  .btn--lg{min-height:52px;font-size:1.05rem}
  .icon-btn{width:var(--tap);height:var(--tap)}

  .topbar__links a{display:inline-flex;align-items:center;min-height:32px}
  .footer__list a,.footer__bottom a{display:inline-block;padding-block:.35rem}
  .crumbs{padding-block:.75rem;font-size:.82rem}

  .qty button{width:var(--tap);height:var(--tap);font-size:1.3rem}
  .qty input{height:var(--tap);width:56px;font-size:1.05rem}

  .radio-card{padding:.85rem .9rem;min-height:56px}
  .radio-card input{width:22px;height:22px}
  .checkline input{width:22px;height:22px}

  .pd__thumbs button{width:56px;height:56px}
  .tabs button{min-height:var(--tap)}
  .faq summary{min-height:var(--tap);align-items:center}

  /* One tall column reads better than two cramped ones on the money pages. */
  .panel{padding:1rem}
  .section__head--row{flex-direction:column;align-items:flex-start;gap:.6rem}
}

@media (max-width:640px){
  /* Product cards: two per row still, but the buttons go full width. */
  .card__actions .btn{width:100%}

  /* The cart line becomes name-over-controls instead of a squeezed 3-column grid. */
  .cart-item{grid-template-columns:72px 1fr;grid-template-areas:'img info' 'total total';row-gap:.5rem}
  .cart-item img{grid-area:img;width:72px;height:72px}
  .cart-item > div:nth-child(2){grid-area:info}
  .cart-item > div:last-child{grid-area:total;text-align:right;border-top:1px dashed var(--border);padding-top:.5rem}

  .sum-row{font-size:1rem}
  .sum-row--total{font-size:1.25rem}

  /* Checkout: labels and fields stack, nothing side by side. */
  .co-grid .grid--2{grid-template-columns:1fr}

  .hero__cta .btn,.hero__cta{width:100%}
  .hero__badge{left:8px;bottom:8px;font-size:.82rem;padding:.5rem .8rem}

  .success-ring{width:78px;height:78px}
  .success-ring svg{width:40px;height:40px}

  table.tbl th,table.tbl td{padding:.6rem .5rem;font-size:.88rem}
}

/* Landing pages keep their own single CTA and no bottom nav. */
.lp-page .bottom-nav{display:none}
@media (max-width:900px){
  .lp-page{padding-bottom:calc(72px + var(--safe-b))}
  .sticky-cta{display:flex;padding-bottom:calc(.6rem + var(--safe-b))}
  .sticky-cta .btn{min-height:var(--tap)}
}

@media print{
  .header,.topbar,.footer,.float-actions,.sticky-cta,.bottom-nav,.buy-bar,.no-print{display:none !important}
  body{background:#fff;padding-bottom:0}
}
