/* =====================================================
   NexaStore — style.css  (single file, root directory)
   System fonts · 1200px max · Large typography
   Header: deep blue gradient · Footer: teal gradient
   ===================================================== */

/* ── RESET ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:18px;scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:#f4f5f7;color:#1a1d23;line-height:1.6;overflow-x:hidden
}
h1,h2,h3,h4{
  font-family:'Outfit',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  /* Outfit loads only if cached from Google elsewhere; otherwise falls back cleanly */
  line-height:1.15;font-weight:800
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font-family:inherit}
ul{list-style:none}

/* ── TOKENS ─────────────────────────────────────────── */
:root{
  --bg:#f4f5f7;
  --surf:#fff;
  --surf2:#f8f9fb;
  --bdr:#e2e5ea;
  --bdr2:#c8cdd6;
  --acc:#1a73e8;
  --acc-h:#1558c0;
  --acc-lt:#e8f0fe;
  --txt:#1a1d23;
  --txt2:#4a5060;
  --txt3:#8a92a0;
  --grn:#15803d;--grn-lt:#dcfce7;
  --red:#dc2626;--red-lt:#fee2e2;
  --gld:#d97706;--gld-lt:#fef3c7;
  --r:.5rem;--rl:.75rem;--rx:1rem;--r2:1.375rem;
  --sh:0 1px 4px rgba(0,0,0,.07);
  --shm:0 4px 18px rgba(0,0,0,.10);
  --shl:0 10px 36px rgba(0,0,0,.13);
  /* Header gradient — deep blue, white text */
  --hdr-bg:linear-gradient(160deg,#208FCE 0%,#2F71B2 45%,#267ad4 100%);
  --hdr-txt:#fff;
  --hdr-txt2:rgba(255,255,255,.75);
  --hdr-bdr:rgba(255,255,255,.15);
  /* Footer gradient — teal */
  --ftr-bg:linear-gradient(170deg,#5fc8c2 -10%,#179595 100%);
}

/* ── LAYOUT ──────────────────────────────────────────── */
.wrap{max-width:1232px;margin:0 auto;padding:0 1rem}
.section{padding:4rem 0}

/* ══════════════════════════════════════════════════════
   HEADER  — deep blue gradient, white text
   3 rows: logo-row / cats-row / brands-row
   ══════════════════════════════════════════════════════ */
#site-header{
  position:sticky;top:0;z-index:200;
  background:var(--hdr-bg);
  box-shadow:0 2px 20px rgba(14,58,130,.45);
  isolation:isolate;
}
#site-header::after{
  content:'';
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size:180px 180px;
  opacity:.045;
  pointer-events:none;
  mix-blend-mode:overlay;
  z-index:0;
}
#site-header>*{position:relative;z-index:1}

/* Row 1 */
.hdr-top{border-bottom:1px solid var(--hdr-bdr)}
.hdr-row{display:flex;align-items:center;gap:1.25rem;height:4rem}

/* Logo */
.logo{
  font-size:1.625rem;font-weight:800;letter-spacing:-.03em;
  color:#fff;flex-shrink:0;white-space:nowrap;
}
.logo em{font-style:normal;color:#7dd3fc}  /* sky-blue accent */
.logo img{height:40px;width:auto;display:block}

/* Search — centered, takes remaining space */
.hdr-search{flex:1;position:relative;max-width:36rem;margin:0 auto}
.hdr-search input{
  width:100%;padding:.5625rem 2.75rem .5625rem 1.125rem;
  border:none;border-radius:2rem;
  background:rgba(255,255,255,.18);backdrop-filter:blur(4px);
  font-size:1rem;color:#fff;outline:none;
  transition:background .18s;
}
.hdr-search input::placeholder{color:rgba(255,255,255,.6)}
.hdr-search input:focus{background:rgba(255,255,255,.28)}
.hdr-search button{
  position:absolute;right:.75rem;top:50%;transform:translateY(-50%);
  background:none;border:none;color:rgba(255,255,255,.8);
  cursor:pointer;font-size:1rem;display:flex;align-items:center;padding:0;
  transition:color .15s;
}
.hdr-search button:hover{color:#fff}

/* Icons */
.hdr-icons{display:flex;align-items:center;gap:.25rem;flex-shrink:0}
.hdr-btn{
  display:flex;align-items:center;gap:.375rem;
  padding:.5rem .75rem;border-radius:var(--rl);
  font-size:.9375rem;font-weight:700;color:#fff;
  background:none;border:none;cursor:pointer;
  transition:background .15s,color .15s;white-space:nowrap;
  text-decoration:none;
}
.hdr-btn svg{width:1.25rem;height:1.25rem;flex-shrink:0}
.hdr-btn:hover{background:rgba(255,255,255,.1);color:#ff5555}
/* Cart: SVG already yellow via stroke attr; label inherits white */
.hdr-cart{gap:.4375rem}
.hdr-btn{color:#FFD43B}             /* yellow text on Cart + Account */
.hdr-btn:hover{color:#ff9900}       /* slight orange on hover */
.hdr-cart .cart-lbl{color:#FFD43B}
.hdr-cart:hover .cart-lbl{color:#ff9900}
.cart-badge{
  background:#fff;color:var(--acc);
  font-size:.6875rem;font-weight:800;
  min-width:1rem;height:1rem;border-radius:.5rem;
  display:inline-flex;align-items:center;justify-content:center;padding:0 .25rem;
}
.cur-sel{
  padding:.375rem .625rem;
  border:1.5px solid rgba(255,255,255,.3);border-radius:var(--rl);
  background:rgba(255,255,255,.12);
  font-size:.9rem;font-weight:700;color:#fff;cursor:pointer;outline:none;
}
.cur-sel:focus{border-color:rgba(255,255,255,.6)}
.cur-sel option{background:#1a3c6e;color:#fff}

/* Row 2 — categories (centered, scroll on overflow) */
.hdr-cats{
  border-bottom:1px solid var(--hdr-bdr);
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.3) transparent;
}
.hdr-cats::-webkit-scrollbar{height:3px;background:transparent}
.hdr-cats::-webkit-scrollbar-thumb{background:rgba(255,255,255,.3);border-radius:2px}
.hdr-cats.no-overflow::-webkit-scrollbar{display:none}
.hdr-cats.no-overflow{scrollbar-width:none}
.hdr-cats-inner{
  display:flex;justify-content:center;
  max-width:1232px;
  margin:0 auto;
  padding:0 1rem;
}
.cat-pill{
  display:flex;align-items:center;gap:.4375rem;
  padding:.625rem 1rem;
  font-size:1rem;font-weight:700;
  color:#fff;
  background:none;border:none;
  border-bottom:2.5px solid transparent;
  white-space:nowrap;cursor:pointer;
  transition:background .15s,border-color .15s,opacity .15s;
  text-decoration:none;
}
.cat-pill svg{width:22px;height:22px;flex-shrink:0;color:#f4a024}
.cat-pill:hover{background:rgba(255,255,255,.1)}
.cat-pill.active{background:#f4a024;color:#fff;border-color:#f4a024;font-weight:700}
.cat-pill.active svg, .cat-pill.active .cat-pill-svg{stroke:#fff;color:#fff}
.cat-pill.dimmed{opacity:.4}
.cat-pill.dimmed:hover{opacity:.7;background:rgba(255,255,255,.06)}

/* When content overflows, switch from center to flex-start so scrolling works correctly */
.hdr-cats.overflow .hdr-cats-inner,
.hdr-brands.overflow .hdr-brands-inner{justify-content:flex-start}



/* Row 3 — brands (centered, scroll on overflow) */
.hdr-brands{
  background:linear-gradient(160deg,#125fa3 0%,#1E5A94 45%,#235F9B 100%);
  overflow-x:auto;-webkit-overflow-scrolling:touch;
   scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.3) transparent;
;border-bottom:0.1875rem solid #f4a024}
.hdr-brands::-webkit-scrollbar{height:3px;background:transparent}
.hdr-brands::-webkit-scrollbar-thumb{background:rgba(255,255,255,.3);border-radius:2px}
.hdr-brands.no-overflow::-webkit-scrollbar{display:none}
.hdr-brands.no-overflow{scrollbar-width:none}
.hdr-brands-inner{
  display:flex;align-items:stretch;justify-content:center;
  max-width:1232px;
  margin:0 auto;
  padding:0 1rem;
  gap:0;
}
.brand-pill{
  padding:.625rem .875rem;
  border:none;background:none;
  font-size:1rem;font-weight:700;color:#fff;
  white-space:nowrap;cursor:pointer;
  transition:background .15s,border-color .15s;
  text-decoration:none;
  display:inline-flex;align-items:center;
  border-bottom:2.5px solid transparent;
}
.brand-pill:hover{background:rgba(255,255,255,.08)}
.brand-pill.active{background:#f4a024;color:#fff!important;border-color:#f4a024;font-weight:700}
.brand-sep{display:none}   /* separators removed */

/* ══════════════════════════════════════════════════════
   FOOTER — teal gradient
   ══════════════════════════════════════════════════════ */
#site-footer{
  background:var(--ftr-bg);
  padding:2.75rem 0 0;margin-top:3.5rem;
  color:rgba(255,255,255,.9);
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem}
.footer-logo{
  display:inline-block;margin-bottom:.875rem;
}
.footer-logo img{
  height:2.25rem;width:auto;display:block;
  /* filter:brightness(0) invert(1);   white logo on dark footer */
}
.footer-brand p{font-size:.9375rem;color:rgba(255,255,255,.78);line-height:1.7;max-width:17rem;margin-bottom:1.125rem}
.social-row{display:flex;gap:.5rem}
.soc{
  width:2rem;height:2rem;border-radius:var(--rl);
  border:1.5px solid rgba(255,255,255,.3);background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;
  font-size:.8125rem;font-weight:700;color:rgba(255,255,255,.85);
  text-decoration:none;transition:all .15s;
}
.soc:hover{background:rgba(255,255,255,.25);color:#fff;border-color:rgba(255,255,255,.55)}
.footer-col h4{font-size:1rem;font-weight:800;color:#fff;margin-bottom:1rem}
.footer-col li{margin-bottom:.5rem}
.footer-col a{font-size:.9375rem;color:rgba(255,255,255,.72);transition:color .15s}
.footer-col a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.2);padding:1rem 0;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.75rem;
}
.footer-bottom p{font-size:.875rem;color:rgba(255,255,255,.62)}
.pay-icons{display:flex;gap:.375rem}
.pay-icon{
  padding:.25rem .5625rem;
  border:1.5px solid rgba(255,255,255,.3);border-radius:.375rem;
  font-size:.75rem;font-weight:700;color:rgba(255,255,255,.72);
}

/* ── Chat bubble ─────────────────────────────────── */
/* old chat-bubble removed; replaced by live chat widget below */

/* ══════════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════════ */

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.375rem;
  padding:.625rem 1.375rem;border-radius:var(--rx);
  font-size:1rem;font-weight:700;border:none;
  cursor:pointer;transition:all .18s;white-space:nowrap;
}
.btn-primary{background:var(--acc);color:#fff}
.btn-primary:hover{background:var(--acc-h);transform:translateY(-1px);box-shadow:0 4px 16px rgba(26,115,232,.3)}
.btn-outline{background:none;border:2px solid var(--bdr2);color:var(--txt)}
.btn-outline:hover{border-color:var(--acc);color:var(--acc)}
.btn-lg{padding:.9375rem 2.125rem;font-size:1.0625rem;border-radius:var(--r2)}
.btn-sm{padding:.375rem .875rem;font-size:.875rem}

/* Badges */
.badge{display:inline-block;padding:.25rem .625rem;border-radius:2rem;font-size:.75rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}
.badge-new{background:var(--acc);color:#fff}
.badge-hot{background:#dc2626;color:#fff}
.badge-sale{background:#d97706;color:#fff}

/* Product card */
.prod-card{
  background:var(--surf);border:none;border-radius:var(--rx);overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  transition:box-shadow .22s,transform .22s;
}
.prod-card:hover{box-shadow:var(--shl);transform:translateY(-.25rem)}
.prod-img{position:relative;overflow:hidden;background:#fff;height:18rem;display:flex;align-items:center;justify-content:center}
.prod-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.prod-img-contain{padding:1rem}
.prod-img-contain img{object-fit:contain}
.prod-card:hover .prod-img-cover img{transform:scale(1.05)}
.prod-card:hover .prod-img-contain img{transform:scale(1.04)}
.prod-img-badge{position:absolute;top:.75rem;left:.75rem}
.prod-wish{
  position:absolute;top:.75rem;right:.75rem;
  width:2.125rem;height:2.125rem;border-radius:50%;
  background:rgba(255,255,255,.9);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;cursor:pointer;opacity:0;transition:all .18s;border:none;
}
.prod-card:hover .prod-wish{opacity:1}
.prod-wish:hover{background:var(--red-lt);color:var(--red)}
.prod-body{padding:1rem 1.125rem 1.25rem;flex:1;display:flex;flex-direction:column}
.prod-cat{font-size:.75rem;font-weight:700;color:var(--acc);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.25rem}
.prod-name{font-size:1.0625rem;font-weight:700;color:var(--txt);line-height:1.3;margin-bottom:.3125rem}
.prod-rating{display:flex;align-items:center;gap:.3rem;margin-bottom:.75rem}
.stars{color:var(--gld);font-size:.875rem;letter-spacing:.05em}
.rval{font-size:.875rem;font-weight:700}
.rcnt{font-size:.8125rem;color:var(--txt3)}
.prod-price{display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap;margin-top:auto}
.p-now{font-size:1.25rem;font-weight:800}
.p-old{font-size:.9375rem;color:var(--txt3);text-decoration:line-through}
.p-save{font-size:.75rem;font-weight:700;color:var(--grn);background:var(--grn-lt);padding:.125rem .4375rem;border-radius:.25rem}

/* 3-col product grid */
.prod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}

/* Section heading */
.sec-head{margin-bottom:2rem}
.sec-lbl{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--acc);display:block;margin-bottom:.4375rem}
.sec-head h2{font-size:clamp(1.5rem,2.5vw,2.125rem);font-weight:800;letter-spacing:-.03em;color:var(--txt)}
.sec-head p{font-size:1rem;color:var(--txt2);margin-top:.4375rem}

/* Breadcrumb */
.breadcrumb{display:flex;align-items:center;gap:.4375rem;font-size:.9375rem;color:var(--txt3);padding:1rem 0;flex-wrap:wrap}
.breadcrumb a{color:var(--txt3);transition:color .15s}.breadcrumb a:hover{color:var(--acc)}
.breadcrumb span{color:var(--bdr2)}

/* Form fields */
.field{margin-bottom:1.125rem}
.field label{display:block;font-size:.9375rem;font-weight:700;color:var(--txt2);margin-bottom:.4375rem}
.field input,.field select,.field textarea{
  width:100%;padding:.6875rem 1rem;
  border:1.5px solid var(--bdr2);border-radius:var(--rl);
  background:var(--surf);font-size:1rem;color:var(--txt);
  outline:none;transition:border-color .15s,box-shadow .15s;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--acc);box-shadow:0 0 0 3px rgba(26,115,232,.1)}
.field input::placeholder,.field textarea::placeholder{color:var(--txt3)}

/* Page hero (inner pages) */
.page-hero{background:linear-gradient(135deg,#eef2ff 0%,#f0f7ff 100%);border-bottom:1px solid var(--bdr);padding:2.5rem 0 2.25rem}
.page-hero h1{font-size:clamp(1.625rem,3vw,2.25rem);font-weight:800;letter-spacing:-.03em}
.page-hero p{font-size:1rem;color:var(--txt2);margin-top:.5rem;max-width:36rem}

/* ══════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════ */
.hero{
  background:linear-gradient(135deg,#eef2ff 0%,#f0f9ff 60%,#f4f5f7 100%);
  border-bottom:1px solid var(--bdr);
  padding:3rem 0 2.5rem;
}
.hero-inner{
  display:grid;grid-template-columns:1fr 1.3fr;   /* image column wider */
  gap:2rem;align-items:center;
}
.hero-text{
  display:flex;flex-direction:column;justify-content:center;
}
.hero h1{
  font-size:clamp(1.75rem,3.5vw,2.875rem);
  font-weight:800;letter-spacing:-.04em;
  color:var(--txt);line-height:1.1;margin-bottom:.875rem;
}
.hero h1 em{font-style:normal;color:var(--acc)}
.hero p{
  font-size:1rem;color:var(--txt2);
  line-height:1.65;max-width:28rem;margin-bottom:1.5rem;
}
.hero-stats{display:flex;gap:2.25rem;flex-wrap:wrap}
.stn{font-size:1.625rem;font-weight:800;color:var(--txt)}
.stn span{color:var(--acc)}
.stl{font-size:.875rem;color:var(--txt3);margin-top:.125rem}

.hero-vis{
  display:block;position:relative;
  width:100%;
  min-height:16rem;
  max-height:22rem;
  aspect-ratio:5/3;        /* desired ratio; only kicks in within min/max */
  text-decoration:none;
  animation:floatY 5s ease-in-out infinite;
}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-.625rem)}}
.hero-img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  border-radius:.625rem;overflow:hidden;
  box-shadow:0 8px 28px rgba(0,0,0,.12);
  transition:box-shadow .25s;
}
.hero-vis:hover .hero-img{box-shadow:0 14px 40px rgba(0,0,0,.2)}

/* Best Seller chip — top-right of the hero image */
.hero-vis .chip{
  position:absolute;top:1rem;right:1rem;
  background:var(--surf);
  border-radius:var(--rx);padding:.6875rem 1rem;
  box-shadow:0 6px 20px rgba(0,0,0,.18);
  white-space:nowrap;
  z-index:1;
}
.chip-lbl{
  font-size:.6875rem;color:var(--txt3);
  text-transform:uppercase;letter-spacing:.06em;font-weight:700;
}
.chip-val{
  font-size:.9375rem;font-weight:800;color:var(--txt);
  margin-top:.125rem;
}
.chip-sub{
  font-size:.75rem;color:var(--grn);font-weight:700;
  margin-top:.125rem;
}


.trust{background:var(--surf);border-bottom:1px solid var(--bdr);padding:1rem 0}
.trust-inner{display:flex;align-items:center;justify-content:space-around;gap:.75rem;flex-wrap:wrap}
.ti{display:flex;align-items:center;gap:.75rem}
.ti-icon{font-size:1.375rem}
.ti-lbl strong{display:block;font-size:.9375rem;font-weight:700;color:var(--txt)}
.ti-lbl span{font-size:.8125rem;color:var(--txt3)}


.nl{background:linear-gradient(135deg,#eef2ff,#f0f9ff);border-top:1px solid var(--bdr);border-bottom:1px solid var(--bdr);padding:3.5rem 0;text-align:center}
.nl h2{font-size:clamp(1.375rem,2.5vw,1.875rem);font-weight:800;letter-spacing:-.03em;margin-bottom:.5rem}
.nl p{font-size:1rem;color:var(--txt2);margin-bottom:1.625rem}
.nl-form{display:flex;gap:.5rem;max-width:28rem;margin:0 auto}
.nl-form input{flex:1;padding:.75rem 1.125rem;border:2px solid var(--bdr2);border-radius:2rem;font-size:1rem;outline:none}
.nl-form input:focus{border-color:var(--acc)}
.nl-form button{padding:.75rem 1.5rem;background:var(--acc);color:#fff;border:none;border-radius:2rem;font-size:1rem;font-weight:700;cursor:pointer;transition:background .18s}
.nl-form button:hover{background:var(--acc-h)}

/* ══════════════════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════════════════ */
.toolbar{display:flex;align-items:center;justify-content:space-between;gap:.875rem;flex-wrap:wrap;padding:1.125rem 0 .875rem}
.res-cnt{font-size:1rem;color:var(--txt2)}.res-cnt strong{color:var(--txt)}
.sort-sel{padding:.5rem 1rem;border:2px solid var(--bdr2);border-radius:var(--rl);background:var(--surf);font-size:1rem;color:var(--txt);outline:none;cursor:pointer}
.sort-sel:focus{border-color:var(--acc)}
.view-toggle{display:flex;gap:.25rem}
.vbtn{width:2.375rem;height:2.375rem;border-radius:var(--r);border:2px solid var(--bdr2);background:var(--surf);color:var(--txt2);font-size:.9375rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .15s}
.vbtn.active,.vbtn:hover{background:var(--acc);border-color:var(--acc);color:#fff}
.prod-grid.lv{grid-template-columns:1fr}
.prod-grid.lv .prod-card{flex-direction:row}
.prod-grid.lv .prod-img{width:13rem;flex-shrink:0;height:10rem}
.prod-grid.lv .prod-body{padding:1.125rem 1.375rem}
.atags{display:flex;align-items:center;gap:.4375rem;flex-wrap:wrap;padding-bottom:.875rem}
.atag{display:inline-flex;align-items:center;gap:.3rem;padding:.25rem .75rem;border-radius:2rem;background:var(--acc-lt);border:1px solid rgba(26,115,232,.2);font-size:.875rem;font-weight:600;color:var(--acc)}
.atag button{background:none;border:none;font-size:1rem;color:var(--acc);cursor:pointer;line-height:1;padding:0}
.pagination{display:flex;align-items:center;justify-content:center;gap:.4375rem;padding:2.25rem 0}
.pgbtn{min-width:2.375rem;height:2.375rem;padding:0 .5625rem;border-radius:var(--r);border:2px solid var(--bdr2);background:var(--surf);font-size:1rem;color:var(--txt2);display:flex;align-items:center;justify-content:center;transition:all .15s;text-decoration:none}
.pgbtn:hover{border-color:var(--acc);color:var(--acc)}
.pgbtn.active{background:var(--acc);border-color:var(--acc);color:#fff;font-weight:700}
.pgbtn.off{opacity:.35;pointer-events:none}
.pgdots{padding:0 .375rem;color:var(--txt3);user-select:none}
.no-res{text-align:center;padding:4.5rem 0;color:var(--txt2)}
.no-res .nri{font-size:3rem;margin-bottom:1rem}
.no-res h3{font-size:1.375rem;color:var(--txt);margin-bottom:.5rem}

/* ══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════ */
.pdp-wrap{display:grid;grid-template-columns:1fr 1fr;gap:3rem;padding:1.75rem 0 3.5rem;align-items:start}
.gallery{position:sticky;top:10rem}
.main-box{position:relative;border-radius:var(--r2);overflow:hidden;background:var(--surf2);height:30rem;cursor:crosshair}
.main-box img{width:100%;height:100%;object-fit:cover;pointer-events:none;display:block}
.gal-badge{position:absolute;top:.875rem;left:.875rem}
.gal-wish{position:absolute;top:.875rem;right:.875rem;width:2.375rem;height:2.375rem;border-radius:50%;background:rgba(255,255,255,.92);border:none;font-size:1.125rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .18s}
.gal-wish:hover,.gal-wish.on{background:var(--red-lt);color:var(--red)}
.thumbs{display:flex;gap:.625rem;margin-top:.875rem;overflow-x:auto;padding-bottom:.3125rem;scrollbar-width:thin}
.thumbs::-webkit-scrollbar{height:3px}
.thumbs::-webkit-scrollbar-thumb{background:var(--bdr2);border-radius:2px}
.thumb{width:5rem;height:5rem;flex-shrink:0;border-radius:var(--rl);overflow:hidden;border:2px solid var(--bdr);cursor:pointer;transition:border-color .15s}
.thumb.on{border-color:var(--acc)}
.thumb img{width:100%;height:100%;object-fit:cover}

@media(hover:hover){.main-box:hover .mag-lens{display:block}}
@media(hover:none){.main-box{cursor:pointer}}
#zoom-win,.mag-lens{display:none!important}
#zoom-win img{position:absolute;max-width:none}
#lb{display:none;position:fixed;inset:0;z-index:1000;background:rgba(0,0,0,.95);align-items:center;justify-content:center;touch-action:pinch-zoom}
#lb.open{display:flex}
#lb img{max-width:100%;max-height:100%;object-fit:contain}
#lb-x{position:absolute;top:1rem;right:1rem;background:rgba(255,255,255,.15);border:none;color:#fff;width:2.75rem;height:2.75rem;border-radius:50%;font-size:1.25rem;cursor:pointer}
.panel-pills{display:flex;flex-wrap:wrap;gap:.4375rem;margin-bottom:1rem}
.pp{padding:.25rem .75rem;border-radius:2rem;font-size:.8125rem;font-weight:700}
.pp-stk{background:var(--grn-lt);color:var(--grn)}
/* Badges inside panel-pills row: same height as pills, vertically centered */
.panel-pills .badge{
  padding:.3125rem .6875rem;
  border-radius:1.25rem;
  font-size:.75rem;font-weight:800;letter-spacing:.04em;
  display:inline-flex;align-items:center;justify-content:center;
  line-height:1;
}
.pp-new{background:#dcfce7;color:#166534}
.pp-sku{background:var(--surf2);color:var(--txt3);border:1px solid var(--bdr)}
.pdp-h1{font-size:clamp(1.5rem,2.8vw,2rem);font-weight:800;letter-spacing:-.03em;margin-bottom:.3125rem}
.panel-brand{font-size:1rem;color:var(--txt2);margin-bottom:1rem}
.panel-brand span{font-weight:700;color:var(--txt)}
.panel-rating{display:flex;align-items:center;gap:.875rem;padding-bottom:1.125rem;border-bottom:1px solid var(--bdr);margin-bottom:1.125rem}
.big-stars{font-size:1.125rem;color:var(--gld)}
.rat-det{font-size:1rem}.rat-det strong{color:var(--txt)}.rat-det a{color:var(--acc);cursor:pointer}
.price-row{display:flex;align-items:baseline;gap:.875rem;flex-wrap:wrap;margin-bottom:.4375rem}
.pnow{font-size:2.125rem;font-weight:800;color:var(--txt)}
.pwas{font-size:1.0625rem;color:var(--txt3);text-decoration:line-through}
.psave{padding:.25rem .6875rem;background:var(--red-lt);color:var(--red);border-radius:var(--r);font-size:.9375rem;font-weight:700}
.price-note{font-size:.9375rem;color:var(--txt3);margin-bottom:1.25rem}
.short-desc{font-size:1rem;color:var(--txt2);line-height:1.75;margin-bottom:1.125rem;padding-bottom:1.125rem;border-bottom:1px solid var(--bdr)}
.var-blk{margin-bottom:1.125rem}
.var-lbl{font-size:.9375rem;font-weight:700;color:var(--txt2);margin-bottom:.5rem}
.var-lbl span{color:var(--txt)}
.opt-row{display:grid;grid-template-columns:repeat(2,1fr);gap:.625rem}
.opt{padding:.4375rem 1rem;border-radius:var(--rx);border:2px solid var(--bdr2);background:var(--surf);font-size:.9375rem;font-weight:600;color:var(--txt2);cursor:pointer;transition:all .15s}
.opt:hover,.opt.on{border-color:var(--acc);color:var(--acc);background:var(--acc-lt)}
.qty-row{display:flex;align-items:center;gap:1.125rem;margin-bottom:1.25rem}
.qty-lbl{font-size:.9375rem;font-weight:700;color:var(--txt2)}
.qty-ctrl{display:flex;align-items:center;border:2px solid var(--bdr2);border-radius:var(--rx);overflow:hidden;background:var(--surf)}
.qty-ctrl button{width:2.625rem;height:2.625rem;background:none;border:none;font-size:1.25rem;color:var(--txt2);cursor:pointer;transition:background .15s}
.qty-ctrl button:hover{background:var(--bg);color:var(--txt)}
.qty-ctrl input{width:3rem;text-align:center;border:none;outline:none;font-size:1.125rem;font-weight:800;background:none;color:var(--txt)}
.stk-ok{color:var(--grn);font-size:.9375rem}
.stk-lo{color:var(--gld);font-size:.9375rem}
.act-row{display:flex;gap:.75rem;margin-bottom:1rem}
.btn-atc{flex:1;display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.9375rem 1.375rem;border-radius:var(--r2);background:var(--acc);color:#fff;border:none;font-size:1.0625rem;font-weight:700;cursor:pointer;transition:all .2s}
.btn-atc:hover{background:var(--acc-h);transform:translateY(-1px);box-shadow:0 6px 20px rgba(26,115,232,.35)}
.btn-pp{flex:1;display:flex;align-items:center;justify-content:center;gap:.4375rem;padding:.9375rem 1.375rem;border-radius:var(--r2);background:#ffc439;color:#003087;border:none;font-size:1.0625rem;font-weight:800;cursor:pointer;transition:all .2s}
.btn-pp:hover{background:#ffb300;transform:translateY(-1px)}
.trust-mini{display:grid;grid-template-columns:1fr 1fr;gap:.5625rem;margin-bottom:1.125rem}
.tm{display:flex;align-items:center;gap:.5rem;padding:.6875rem .875rem;background:var(--surf2);border-radius:var(--rl);font-size:.9375rem;color:var(--txt2)}
.share-row{display:flex;align-items:center;gap:.4375rem;flex-wrap:wrap}
.sh-lbl{font-size:.9375rem;color:var(--txt3);font-weight:700}
.sh-btn{padding:.3125rem .75rem;border-radius:var(--r);border:2px solid var(--bdr2);background:var(--surf);font-size:.875rem;font-weight:600;color:var(--txt2);cursor:pointer;transition:all .15s}
.sh-btn:hover{border-color:var(--acc);color:var(--acc)}
.anav{position:sticky;top:10rem;z-index:100;background:var(--surf);border-top:1px solid var(--bdr);border-bottom:1px solid var(--bdr);overflow-x:auto;scrollbar-width:none}
.anav::-webkit-scrollbar{display:none}
.anav-inner{display:flex;padding:0 1.75rem}
.anav-btn{padding:.875rem 1.5rem;background:none;border:none;font-size:1rem;font-weight:700;color:var(--txt2);border-bottom:2px solid transparent;white-space:nowrap;cursor:pointer;transition:all .15s;margin-bottom:-1px}
.anav-btn:hover{color:var(--txt)}
.anav-btn.on{color:var(--acc);border-bottom-color:var(--acc)}
.det-sec{padding:2.75rem 0;border-top:1px solid var(--bdr)}
.det-sec h2{font-size:1.375rem;font-weight:800;letter-spacing:-.02em;margin-bottom:1.5rem}
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:1.75rem}
.feat-card{padding:1.25rem;background:var(--surf);border-radius:var(--rx);box-shadow:var(--sh);transition:box-shadow .15s}
.feat-card:hover{box-shadow:var(--shm)}
.feat-icon{font-size:1.625rem;margin-bottom:.625rem}
.feat-txt{font-size:.9375rem;color:var(--txt2);line-height:1.6}
.inbox{display:flex;flex-wrap:wrap;gap:.5625rem}
.inbox-i{display:flex;align-items:center;gap:.375rem;padding:.375rem .875rem;background:var(--surf);border:2px solid var(--bdr);border-radius:2rem;font-size:.9375rem;color:var(--txt2)}
.specs-wrap{background:var(--surf);border-radius:var(--rx);overflow:hidden;box-shadow:var(--sh)}
.specs-tbl{width:100%;border-collapse:collapse}
.specs-tbl tr{border-bottom:1px solid var(--bdr)}
.specs-tbl tr:last-child{border:none}
.specs-tbl td{padding:.9375rem 1.125rem;font-size:1rem}
.specs-tbl td:first-child{color:var(--txt3);font-weight:700;width:38%}
.specs-tbl tr:hover td{background:var(--surf2)}
.rov{display:grid;grid-template-columns:auto 1fr;gap:2.25rem;align-items:center;padding:1.625rem;background:var(--surf);border-radius:var(--rx);box-shadow:var(--sh);margin-bottom:1.5rem}
.rov-num{font-size:3.75rem;font-weight:800;line-height:1;color:var(--txt);text-align:center}
.rov-stars{font-size:1.25rem;color:var(--gld);text-align:center}
.rov-cnt{font-size:.875rem;color:var(--txt3);text-align:center;margin-top:.25rem}
.bar-row{display:flex;align-items:center;gap:.5625rem;margin-bottom:.5rem;font-size:.9375rem}
.bar-lbl{width:2.5rem;text-align:right;color:var(--txt3);flex-shrink:0}
.bar-track{flex:1;height:.375rem;background:var(--bg);border-radius:.25rem;overflow:hidden}
.bar-fill{height:100%;background:var(--gld);border-radius:.25rem}
.bar-pct{width:2.75rem;color:var(--txt3);font-size:.875rem}
.rv-list{display:flex;flex-direction:column;gap:1rem}
.rv-card{padding:1.375rem;background:var(--surf);border-radius:var(--rx);box-shadow:var(--sh)}
.rv-head{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:.625rem;margin-bottom:1rem}
.rv-user{display:flex;align-items:center;gap:.75rem}
.rv-av{width:2.5rem;height:2.5rem;border-radius:50%;background:var(--acc);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1rem;flex-shrink:0}
.rv-name{font-weight:700;font-size:1rem}
.rv-from{font-size:.8125rem;color:var(--txt3)}
.rv-meta{text-align:right}
.rv-date{font-size:.8125rem;color:var(--txt3)}
.rv-stars{color:var(--gld);font-size:.9375rem}
.rv-ver{font-size:.8125rem;color:var(--grn);font-weight:700}
.rv-title{font-weight:800;font-size:1rem;margin-bottom:.4375rem}
.rv-body{font-size:1rem;color:var(--txt2);line-height:1.7}
.ship-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.125rem}
.ship-card{padding:1.5rem;background:var(--surf);border-radius:var(--rx);box-shadow:var(--sh)}
.ship-card h3{font-size:1.0625rem;margin-bottom:1rem}
.ship-tbl{width:100%;border-collapse:collapse;font-size:.9375rem}
.ship-tbl td{padding:.5625rem 0;border-bottom:1px solid var(--bdr);vertical-align:top}
.ship-tbl td:last-child{text-align:right;color:var(--grn);font-weight:700}
.ship-list li{padding:.375rem 0;font-size:1rem;color:var(--txt2)}
.rel-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.125rem}
.rel-grid .prod-img{height:11rem}
  .gallery{position:relative;top:auto}
  .pay-row img,.ship-row img{max-height:2.25rem}

/* ══════════════════════════════════════════════════════
   CART
   ══════════════════════════════════════════════════════ */
.cart-layout{display:grid;grid-template-columns:1fr 22rem;gap:2rem;padding:1.75rem 0 3.5rem;align-items:start}
.cart-row{display:flex;align-items:center;gap:.875rem;padding:1.375rem 0;border-bottom:1px solid var(--bdr)}
.cart-img{width:5.5rem;height:5.5rem;border-radius:var(--rl);object-fit:cover;flex-shrink:0}
.cart-name{font-size:1rem;font-weight:700;color:var(--txt);margin-bottom:.3125rem}
.cart-meta{font-size:.9375rem;color:var(--txt3)}
.c-qty{display:flex;align-items:center;border:2px solid var(--bdr2);border-radius:var(--rl);overflow:hidden;background:var(--surf);width:fit-content}
.c-qty button{width:2.125rem;height:2.125rem;background:none;border:none;font-size:1.0625rem;color:var(--txt2);cursor:pointer;transition:background .15s}
.c-qty button:hover{background:var(--bg);color:var(--txt)}
.c-qty span{width:2.125rem;text-align:center;font-weight:800;font-size:1rem;color:var(--txt)}
.cart-price{font-size:1.0625rem;font-weight:800;color:var(--txt);width:6.5rem;text-align:right;flex-shrink:0}
.rm-btn{background:none;border:none;font-size:1.25rem;color:var(--txt3);cursor:pointer;flex-shrink:0;transition:color .15s}
.rm-btn:hover{color:var(--red)}
.sum-card{background:var(--surf);border-radius:var(--r2);padding:1.625rem;position:sticky;top:10rem;box-shadow:var(--sh)}
.sum-card h2{font-size:1.125rem;font-weight:800;margin-bottom:1.375rem}
.sum-row{display:flex;justify-content:space-between;font-size:1rem;color:var(--txt2);margin-bottom:.75rem}
.sum-row.total{font-size:1.125rem;font-weight:800;color:var(--txt);border-top:2px solid var(--bdr);padding-top:1rem;margin-top:1rem;margin-bottom:0}
.co-btn{width:100%;padding:1.0625rem;background:var(--acc);color:#fff;border:none;border-radius:var(--r2);font-size:1.0625rem;font-weight:700;cursor:pointer;transition:all .2s;margin-top:1.25rem;display:flex;align-items:center;justify-content:center;gap:.5rem;text-decoration:none}
.co-btn:hover{background:var(--acc-h);transform:translateY(-1px)}
.pp-co{width:100%;padding:1.0625rem;background:#ffc439;color:#003087;border:none;border-radius:var(--r2);font-size:1.0625rem;font-weight:800;cursor:pointer;transition:all .2s;margin-top:.75rem;display:flex;align-items:center;justify-content:center;gap:.4375rem}
.pp-co:hover{background:#ffb300}
.trust-sm{margin-top:1.25rem;padding-top:1.125rem;border-top:1px solid var(--bdr);display:flex;flex-direction:column;gap:.5rem}
.tsi{font-size:.9375rem;color:var(--txt2)}
.coup-row{display:flex;gap:.5rem;margin-top:1.125rem}
.coup-row input{flex:1;padding:.5625rem .875rem;border:2px solid var(--bdr2);border-radius:var(--rl);font-size:1rem;outline:none}
.coup-row input:focus{border-color:var(--acc)}
.coup-row button{padding:.5625rem 1rem;background:var(--bg);border:2px solid var(--bdr2);border-radius:var(--rl);font-size:1rem;font-weight:700;cursor:pointer;color:var(--txt2);transition:all .15s}
.coup-row button:hover{border-color:var(--acc);color:var(--acc)}

/* ══════════════════════════════════════════════════════
   CHECKOUT
   ══════════════════════════════════════════════════════ */
.co-layout{display:grid;grid-template-columns:1fr 21rem;gap:2rem;padding:1.75rem 0 3.5rem;align-items:start}
.co-card{background:var(--surf);border-radius:var(--r2);padding:1.625rem;margin-bottom:1.375rem;box-shadow:var(--sh)}
.co-card h2{font-size:1.125rem;font-weight:800;margin-bottom:1.25rem;display:flex;align-items:center;gap:.625rem}
.step-badge{width:1.625rem;height:1.625rem;border-radius:50%;background:var(--acc);color:#fff;font-size:.8125rem;font-weight:800;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.875rem}
.divider{display:flex;align-items:center;gap:.875rem;margin:1.25rem 0;color:var(--txt3);font-size:.9375rem;font-weight:700}
.divider::before,.divider::after{content:'';flex:1;height:1px;background:var(--bdr)}
.pp-full{width:100%;padding:1.0625rem;background:#ffc439;color:#003087;border:none;border-radius:var(--r2);font-size:1.0625rem;font-weight:800;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:background .18s}
.pp-full:hover{background:#ffb300}
.pp-note{text-align:center;font-size:.9375rem;color:var(--txt3);margin-top:.625rem}
.oc-card{background:var(--surf);border-radius:var(--r2);padding:1.5rem;position:sticky;top:10rem;box-shadow:var(--sh)}
.oc-card h2{font-size:1.125rem;font-weight:800;margin-bottom:1.125rem}
.oc-item{display:flex;align-items:center;gap:.875rem;margin-bottom:1rem}
.oc-img{width:4rem;height:4rem;border-radius:var(--rl);object-fit:cover;position:relative;flex-shrink:0}
.oc-img-badge{position:absolute;top:-.5rem;right:-.5rem;width:1.375rem;height:1.375rem;border-radius:50%;background:var(--acc);color:#fff;font-size:.75rem;font-weight:800;display:flex;align-items:center;justify-content:center}
.oc-name{font-weight:700;font-size:.9375rem}
.oc-meta{font-size:.875rem;color:var(--txt3)}
.oc-price{font-size:1rem;font-weight:800;margin-left:auto;flex-shrink:0}
.sum-total{font-size:1.125rem;font-weight:800;color:var(--txt);border-top:2px solid var(--bdr);padding-top:1rem;margin-top:1rem;display:flex;justify-content:space-between}
.trust-co{margin-top:1.125rem;padding-top:1rem;border-top:1px solid var(--bdr)}
.tci{font-size:.9375rem;color:var(--txt2);margin-bottom:.5rem}
.card-icons{display:flex;gap:.4375rem;margin-bottom:1rem}
.card-icon{padding:.25rem .625rem;border:2px solid var(--bdr2);border-radius:.375rem;font-size:.8125rem;font-weight:700;color:var(--txt3)}

/* ══════════════════════════════════════════════════════
   LOGIN
   ══════════════════════════════════════════════════════ */
.auth-wrap{max-width:27rem;margin:2.75rem auto 4.5rem;padding:0 1rem}
.auth-card{background:var(--surf);border-radius:var(--r2);padding:2.25rem;box-shadow:var(--shm)}
.auth-tabs{display:flex;border-bottom:2px solid var(--bdr);margin-bottom:1.625rem}
.auth-tab{flex:1;padding:.75rem;background:none;border:none;font-size:1rem;font-weight:800;color:var(--txt2);border-bottom:2.5px solid transparent;margin-bottom:-2px;cursor:pointer;transition:all .15s}
.auth-tab.on{color:var(--acc);border-bottom-color:var(--acc)}
.auth-panel{display:none}.auth-panel.on{display:block}
.divider{display:flex;align-items:center;gap:.875rem;margin:1.25rem 0;color:var(--txt3);font-size:.875rem;font-weight:700}
.divider::before,.divider::after{content:'';flex:1;height:1px;background:var(--bdr)}
.social-login{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.125rem}
.sl-btn{display:flex;align-items:center;justify-content:center;gap:.75rem;padding:.75rem;border:2px solid var(--bdr2);border-radius:var(--rl);background:var(--surf);font-size:1rem;font-weight:700;color:var(--txt);cursor:pointer;transition:all .15s;width:100%}
.sl-btn:hover{border-color:var(--bdr);background:var(--bg)}
.auth-submit{width:100%;padding:.9375rem;background:var(--acc);color:#fff;border:none;border-radius:var(--rl);font-size:1.0625rem;font-weight:700;cursor:pointer;transition:all .2s;margin-top:.3125rem}
.auth-submit:hover{background:var(--acc-h)}
.forgot-link{float:right;font-size:.9375rem;color:var(--acc);cursor:pointer;text-decoration:none}
.forgot-link:hover{text-decoration:underline}
.pw-strength{height:.3125rem;border-radius:.25rem;background:var(--bdr);margin-top:.4375rem;overflow:hidden}
.pw-strength-bar{height:100%;border-radius:.25rem;transition:width .3s,background .3s;width:0}
.auth-terms{font-size:.9375rem;color:var(--txt3);text-align:center;margin-top:1rem;line-height:1.65}
.auth-terms a{color:var(--acc)}
.back-link{display:inline-flex;align-items:center;gap:.375rem;font-size:.9375rem;color:var(--acc);cursor:pointer;margin-bottom:1.25rem}
.back-link:hover{text-decoration:underline}

/* ══════════════════════════════════════════════════════
   ACCOUNT
   ══════════════════════════════════════════════════════ */
.acct-wrap{display:grid;grid-template-columns:15rem 1fr;gap:2rem;padding:1.75rem 0 3.5rem;align-items:start}
.acct-sidebar{background:var(--surf);border-radius:var(--r2);overflow:hidden;position:sticky;top:10rem;box-shadow:var(--shm)}
.acct-user{padding:1.375rem;border-bottom:1px solid var(--bdr);text-align:center}
.acct-avatar{width:4.5rem;height:4.5rem;border-radius:50%;background:var(--acc);color:#fff;font-size:1.5rem;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto .75rem}
.acct-name{font-weight:800;font-size:1.0625rem;color:var(--txt)}
.acct-email{font-size:.875rem;color:var(--txt3)}
.acct-nav{padding:.625rem 0}
.acct-nav-btn{display:flex;align-items:center;gap:.75rem;width:100%;padding:.875rem 1.25rem;background:none;border:none;font-size:1rem;font-weight:700;color:var(--txt2);cursor:pointer;transition:all .15s;text-align:left}
.acct-nav-btn:hover{background:var(--bg);color:var(--txt)}
.acct-nav-btn.on{background:var(--acc-lt);color:var(--acc)}
.acct-nav-btn svg{width:1.125rem;height:1.125rem;flex-shrink:0;stroke:currentColor;fill:none;stroke-width:2}
.acct-main{background:var(--surf);border-radius:var(--r2);overflow:hidden;box-shadow:var(--shm)}
.acct-panel{display:none;padding:1.75rem}
.acct-panel.on{display:block}
.acct-panel h2{font-size:1.25rem;font-weight:800;margin-bottom:1.375rem}
.order-card{box-shadow:var(--sh);border-radius:var(--rx);overflow:hidden;margin-bottom:1.125rem}
.order-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.625rem;padding:1rem 1.125rem;background:var(--surf2);border-bottom:1px solid var(--bdr);border-radius:var(--rx) var(--rx) 0 0}
.order-id{font-size:.9375rem;font-weight:800;color:var(--txt)}
.order-date{font-size:.875rem;color:var(--txt3)}
.status{display:inline-flex;align-items:center;gap:.375rem;padding:.25rem .75rem;border-radius:2rem;font-size:.875rem;font-weight:700}
.status-delivered{background:var(--grn-lt);color:var(--grn)}
.status-shipped{background:var(--acc-lt);color:var(--acc)}
.order-body{display:flex;align-items:center;gap:1rem;padding:1.125rem}
.order-img{width:4rem;height:4rem;border-radius:var(--rl);object-fit:cover}
.order-name{font-weight:700;font-size:1rem}
.order-foot{display:flex;align-items:center;justify-content:space-between;padding:.875rem 1.125rem;border-top:1px solid var(--bdr);flex-wrap:wrap;gap:.625rem}
.order-total{font-size:1.125rem;font-weight:800;color:var(--txt)}
.addr-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.125rem}
.addr-card{box-shadow:var(--sh);border-radius:var(--rx);padding:1.25rem;background:var(--surf)}
.addr-card.def-addr{background:var(--acc-lt);box-shadow:0 0 0 2px var(--acc)}
.addr-def{font-size:.75rem;font-weight:800;color:var(--acc);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.625rem;display:block}
.addr-name{font-weight:800;font-size:1rem;margin-bottom:.4375rem}
.addr-detail{font-size:.9375rem;color:var(--txt2);line-height:1.7}
.addr-actions{display:flex;gap:.5rem;margin-top:1rem}
.wish-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.125rem}
.wish-grid .prod-img{height:11rem}
.prof-row{display:grid;grid-template-columns:1fr 1fr;gap:.875rem}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-hero{background:linear-gradient(135deg,#eef2ff 0%,#f0f9ff 100%);border-bottom:1px solid var(--bdr);padding:3.5rem 0;text-align:center}
.about-hero h1{font-size:clamp(2rem,4vw,2.875rem);font-weight:800;letter-spacing:-.04em;margin-bottom:.9375rem}
.about-hero p{font-size:1.0625rem;color:var(--txt2);max-width:36rem;margin:0 auto}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin:2.75rem 0}
.stat-card{background:var(--surf);border-radius:var(--rx);padding:1.625rem;text-align:center;box-shadow:var(--sh)}
.stat-n{font-size:2.125rem;font-weight:800;color:var(--acc)}
.stat-l{font-size:.9375rem;color:var(--txt2);margin-top:.4375rem}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.25rem}
.val-card{background:var(--surf);border-radius:var(--rx);padding:1.625rem;box-shadow:var(--sh)}
.val-icon{font-size:1.875rem;margin-bottom:.75rem}
.val-card h3{font-size:1.0625rem;font-weight:800;margin-bottom:.625rem}
.val-card p{font-size:.9375rem;color:var(--txt2);line-height:1.7}

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-grid{display:grid;grid-template-columns:1fr 21rem;gap:2rem;padding:1.75rem 0 3.5rem;align-items:start}
.contact-card{background:var(--surf);border-radius:var(--r2);padding:1.625rem;box-shadow:var(--sh);margin-bottom:1.375rem}
.contact-card h2{font-size:1.125rem;font-weight:800;margin-bottom:1.25rem}
.info-icon{font-size:1.5rem;flex-shrink:0;margin-top:.125rem}
.info-label{font-size:.8125rem;font-weight:800;color:var(--txt3);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.3125rem}
.info-val{font-size:1rem;color:var(--txt)}
.info-sub{font-size:.875rem;color:var(--txt3);margin-top:.1875rem}
.faq-item{border-bottom:1px solid var(--bdr);padding:1rem 0;cursor:pointer}
.faq-item:last-child{border:none}
.faq-q{font-weight:700;font-size:1rem;display:flex;justify-content:space-between;align-items:center;gap:.5rem}
.faq-a{font-size:1rem;color:var(--txt2);line-height:1.7;margin-top:.75rem;display:none}
.faq-item.open .faq-a{display:block}

/* ══════════════════════════════════════════════════════
   SHIPPING
   ══════════════════════════════════════════════════════ */
.ship-hero{margin:3rem;text-align:center;}
.ship-methods{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:2.75rem}
.ship-method{background:var(--surf);border-radius:var(--rx);padding:1.5rem;box-shadow:var(--sh)}
.ship-method.featured{background:var(--acc-lt);outline:2px solid var(--acc)}
.sm-icon{font-size:1.875rem;margin-bottom:.75rem}
.sm-name{font-size:1.0625rem;font-weight:800;margin-bottom:.4375rem}
.sm-time{font-size:.9375rem;color:var(--txt2);margin-bottom:.625rem}
.sm-price{font-size:1.125rem;font-weight:800;color:var(--grn)}
.sm-note{font-size:.875rem;color:var(--txt3);margin-top:.3125rem}
.zones-tbl{width:100%;border-collapse:collapse;background:var(--surf);border-radius:var(--rx);overflow:hidden;box-shadow:var(--sh)}
.zones-tbl th{background:var(--surf2);padding:.875rem .525rem;font-size:1rem;font-weight:800;text-align:left;border-bottom:2px solid var(--bdr);color:var(--txt2)}
.zones-tbl td{padding:.875rem .525rem;font-size:1rem;border-bottom:1px solid var(--bdr)}
.zones-tbl tr:last-child td{border:none}
.zones-tbl tr:hover td{background:var(--surf2)}
.info-cards{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-top:2.75rem}
.info-card{background:var(--surf);border-radius:var(--rx);padding:1.5rem;box-shadow:var(--sh)}
.info-card h3{font-size:1.0625rem;font-weight:800;margin-bottom:1rem}
.info-card li{font-size:1rem;color:var(--txt2);padding:.4375rem 0;border-bottom:1px solid var(--bdr)}
.info-card li:last-child{border:none}

/* ══════════════════════════════════════════════════════
   AFTER-SALES
   ══════════════════════════════════════════════════════ */
.as-hero{margin:3rem;text-align:center;}
.as-tabs{display:flex;border-bottom:2px solid var(--bdr);margin-bottom:2.25rem;overflow-x:auto;scrollbar-width:none}
.as-tabs::-webkit-scrollbar{display:none}
.as-tab{padding:.875rem 1.5rem;background:none;border:none;font-size:1rem;font-weight:800;color:var(--txt2);border-bottom:2.5px solid transparent;white-space:nowrap;cursor:pointer;transition:all .15s;margin-bottom:-2px}
.as-tab.on{color:var(--acc);border-bottom-color:var(--acc)}
.as-tab:hover{color:var(--txt)}
.as-panel.on{display:block}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-bottom:2.25rem}
.step{background:var(--surf);border-radius:var(--rx);padding:1.375rem;text-align:center;box-shadow:var(--sh)}
.step-num{width:2.125rem;height:2.125rem;border-radius:50%;background:var(--acc);color:#fff;font-weight:800;font-size:.9375rem;display:flex;align-items:center;justify-content:center;margin:0 auto .75rem}
.step-icon{font-size:1.625rem;margin-bottom:.625rem}
.step h3{font-size:1rem;font-weight:800;margin-bottom:.4375rem}
.step p{font-size:.9375rem;color:var(--txt2);line-height:1.65}
.policy-cards{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.policy-card{background:var(--surf);border-radius:var(--rx);padding:1.5rem;box-shadow:var(--sh)}
.policy-card h3{font-size:1.0625rem;font-weight:800;margin-bottom:1rem}
.policy-card li{font-size:1rem;color:var(--txt2);padding:.4375rem 0;border-bottom:1px solid var(--bdr);line-height:1.6}
.policy-card li:last-child{border:none}
.warranty-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:2.25rem}
.wcard{background:var(--surf);border-radius:var(--rx);padding:1.375rem;box-shadow:var(--sh)}
.wcard h3{font-size:1rem;font-weight:800;margin-bottom:.625rem}
.wcard p{font-size:.9375rem;color:var(--txt2);line-height:1.7}
.wperiod{font-size:1.5rem;font-weight:800;color:var(--acc);margin-bottom:.4375rem}
.claim-steps{display:flex;flex-direction:column;gap:1rem;margin-top:1.625rem}
.claim-step{display:flex;align-items:flex-start;gap:1rem;padding:1.125rem;background:var(--surf);border-radius:var(--rx);box-shadow:var(--sh)}
.claim-n{width:2rem;height:2rem;border-radius:50%;background:var(--acc);color:#fff;font-weight:800;font-size:.9375rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.125rem}
.claim-text h4{font-size:1rem;font-weight:800;margin-bottom:.3125rem}
.claim-text p{font-size:.9375rem;color:var(--txt2);line-height:1.65}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
/* ── 1024px: shrink 3-col grids to 2-col ─────────────────── */
@media(max-width:64rem){
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .rel-grid{grid-template-columns:repeat(2,1fr)}
  .feat-grid{grid-template-columns:1fr 1fr}
  .ship-methods{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr 1fr}
  .warranty-grid{grid-template-columns:1fr 1fr}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
}

/* ── 768px: mobile — single column, smaller fonts, centered footer ─── */
@media(max-width:48rem){
  html{font-size:15px}
  .wrap{padding:0 .875rem}

  /* Layouts collapse to single column */
  .hero{padding:1rem 0 0}                  /* top padding only; image edge-to-edge */
  .hero .wrap{padding:0}                    /* break out of .wrap padding for full-width image */
  .hero-inner{grid-template-columns:1fr;gap:1.25rem}
  .hero-vis{
    order:-1;
    min-height:13rem;max-height:16rem;
    animation:none;                         /* float looks weird on edge-to-edge image */
  }
  .hero-img{border-radius:0;box-shadow:none}      /* edge to edge */
  .hero-vis .chip{top:.625rem;right:.625rem;padding:.5rem .75rem}
  .chip-val{font-size:.875rem}
  /* Text block gets back the wrap padding */
  .hero-text{padding:0 .875rem 1.5rem}
  .hero h1{font-size:1.5rem;margin-bottom:.5rem}
  .hero p{font-size:.9375rem;margin-bottom:1rem;max-width:none}
  .hero-stats{gap:1.25rem;padding:0}
  .stn{font-size:1.25rem}
  .stl{font-size:.8125rem}
  .pdp-wrap{grid-template-columns:1fr;gap:1.5rem}.gallery{position:static}
  .cart-layout,.co-layout{grid-template-columns:1fr}.sum-card,.oc-card{position:static}
  .contact-grid{grid-template-columns:1fr}
  .acct-wrap{grid-template-columns:1fr}.acct-sidebar{position:static}
  .ship-grid,.info-cards,.policy-cards{grid-template-columns:1fr}
  .rov{grid-template-columns:1fr;gap:1.25rem}
  .trust-mini{grid-template-columns:1fr}
  .form-row,.prof-row{grid-template-columns:1fr}
  .addr-grid,.wish-grid{grid-template-columns:1fr}
  .feat-grid,.steps,.warranty-grid,.values-grid,.ship-methods{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr 1fr}

  /* Product grid stays 2-col on mobile (better than single huge card) */
  .prod-grid{grid-template-columns:repeat(2,1fr);gap:.5rem}
  .prod-card{border-radius:.625rem}
  .prod-img{height:9rem}              /* ~140px */
  .prod-img-contain{padding:.625rem}  /* less padding on small cards */
  .prod-grid.lv{grid-template-columns:1fr}
  .prod-grid.lv .prod-img{width:7rem;height:7rem}
  .rel-grid{grid-template-columns:repeat(2,1fr)}

  /* Misc adjustments */
  .hero-btns{flex-direction:column}
  .trust-inner{justify-content:flex-start;gap:1rem 1.5rem}
  .nl-form{flex-direction:column}
  .main-box{height:20rem}
  .act-row{flex-direction:column}


  .zones-tbl th{font-size:.8rem;}
  .zones-tbl td{font-size:.9rem;}

  /* ── Mobile: compact header so it fits 360px viewport ───────────── */
  .hdr-row{gap:.5rem;height:3.25rem}
  .logo{font-size:1.125rem}
  .hdr-search input{padding:.4375rem 2.25rem .4375rem .75rem;font-size:.875rem}
  .cur-sel{padding:.25rem .375rem;font-size:.75rem}
  .hdr-btn{padding:.375rem .4375rem;gap:.25rem}
  .hdr-btn span:not(.cart-badge){display:none}     /* hide labels on mobile */
  .hdr-btn .cart-lbl{display:none}                  /* hide "Cart" text */
  .hdr-cats-inner,.hdr-brands-inner{padding:0 .5rem}
  /* logo image on mobile */
  .logo img{height:30px}
  /* tighter wrap padding on mobile so product cards get more room */
  .wrap{padding:0 .5rem}
  .cat-pill{padding:.5rem .75rem;font-size:.9375rem}
  .brand-pill{padding:.5rem .625rem;font-size:.9375rem}

  /* ── Mobile: header un-stickied (it's tall and would eat too much screen) ── */
  #site-header{position:static}
  /* sticky aside panels also un-stickied so they don't overlap content */
  .gallery,.sum-card,.oc-card,.acct-sidebar,.anav{position:static;top:auto}

  /* ── Footer: center everything on mobile ──────────────────────── */
  .footer-grid{grid-template-columns:1fr;gap:2rem;text-align:center}
  .footer-brand p{max-width:none;margin-left:auto;margin-right:auto}
  .social-row{justify-content:center}
  .footer-col ul{padding:0}
  .footer-bottom{justify-content:center;text-align:center}
  .pay-icons{justify-content:center}
}


/* ── Landscape phones / short viewports — header not sticky ───────── */
@media (max-height:30rem) and (orientation:landscape){
  #site-header{position:static}
}

/* ── Off-shelf product card ─────────────────────────────────── */
.prod-card.prod-off{opacity:.65;cursor:pointer}
.prod-card.prod-off .prod-img img{filter:grayscale(.4)}
.prod-card.prod-off:hover{opacity:.9;transform:translateY(-.125rem);box-shadow:var(--shm)}
.badge-off{background:#94a3b8;color:#fff}
.prod-off-note{margin-top:auto;padding:.6875rem;background:var(--surf2);color:var(--txt3);border-radius:var(--rl);font-size:.9375rem;font-weight:700;text-align:center}

/* ── Toolbar 'View Off-Shelf' link / pill ───────────────────── */
.toolbar-link{
  margin-left:.75rem;color:var(--acc);font-weight:700;font-size:.9375rem;
  text-decoration:none;
}
.toolbar-link:hover{text-decoration:underline}
.off-pill{
  display:inline-block;margin-left:.5rem;
  padding:.1875rem .625rem;border-radius:2rem;
  background:#94a3b8;color:#fff;
  font-size:.8125rem;font-weight:700;letter-spacing:.04em;
}

/* ── Card brand + colour swatches ─────────────────── */
.prod-brand{font-size:.875rem;color:var(--txt3);margin-bottom:.625rem}
.prod-colors{display:flex;align-items:center;gap:.3125rem;margin-bottom:.75rem;min-height:1.125rem}
.prod-colors .dot{
  width:.875rem;height:.875rem;border-radius:50%;
  border:1.5px solid rgba(0,0,0,.08);box-shadow:inset 0 0 0 1px rgba(255,255,255,.4);
  flex-shrink:0;display:inline-block;
}
.prod-colors .dot-more{font-size:.75rem;color:var(--txt3);font-weight:700;margin-left:.125rem}
.p-from{font-size:.75rem;color:var(--txt3);font-weight:600;margin-right:-.125rem}

/* ============================================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================================ */

/* ── breadcrumb ───────────────────────────────────────── */
.breadcrumb{
  display:flex;align-items:center;gap:.4375rem;flex-wrap:wrap;
  margin:1.25rem 0;font-size:.875rem;color:var(--txt3);
}
.breadcrumb a{color:var(--txt2);text-decoration:none}
.breadcrumb a:hover{color:var(--acc)}
.breadcrumb span{color:var(--txt3)}

/* ── 2-col layout ─────────────────────────────────────── */
.pdp-wrap{display:grid;grid-template-columns:1fr 1fr;gap:2.25rem;margin-bottom:2rem;align-items:start}

/* ── GALLERY ──────────────────────────────────────────── */
.gallery{display:flex;flex-direction:column;gap:.75rem;position:sticky;top:11rem;align-self:start;min-width:0}
.main-box{
  position:relative;background:#fff;border-radius:.75rem;
  overflow:hidden;aspect-ratio:1/1;
  box-shadow:0 6px 22px rgba(0,0,0,.07);cursor:zoom-in;
}
.gallery.gal-contain .main-box{padding:1.75rem}
.main-box img{
  width:100%;height:100%;display:block;object-fit:cover;
  transition:opacity .2s;
}
.gallery.gal-contain .main-box img{object-fit:contain}
.mag-lens{
  position:absolute;width:5.5rem;height:5.5rem;
  border:2px solid rgba(255,255,255,.85);
  border-radius:50%;background:rgba(255,255,255,.18);
  pointer-events:none;display:none;
  transform:translate(-50%,-50%);
  box-shadow:0 0 0 9999px rgba(0,0,0,.06) inset;
}
#zoom-win{
  position:fixed;display:none;background:#fff;
  border-radius:.5rem;overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.18);
  z-index:50;
}
#zoom-win img{display:block;transform-origin:0 0}
.gal-badge{position:absolute;top:.875rem;left:.875rem}
.gal-wish{
  position:absolute;top:.875rem;right:.875rem;
  width:2.25rem;height:2.25rem;border-radius:50%;
  background:rgba(255,255,255,.92);border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:1.0625rem;cursor:pointer;
  color:var(--txt2);transition:.18s;
}
.gal-wish:hover{background:#fff;color:var(--red)}
.gal-wish.on{color:var(--red)}

.thumb-row{display:flex;align-items:center;gap:.375rem;min-width:0}
.thumb-arrow{
  flex-shrink:0;width:1.875rem;height:1.875rem;border-radius:50%;
  background:var(--surf);border:1px solid var(--bdr);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;line-height:1;color:var(--txt2);cursor:pointer;
  transition:.15s;
}
.thumb-arrow:hover{background:var(--surf2)}
.thumb-arrow.disabled{opacity:.3;pointer-events:none}
.thumbs{
  flex:1;min-width:0;
  display:flex;gap:.5rem;overflow-x:auto;
  scroll-behavior:smooth;scrollbar-width:none;
  padding:.125rem 0;
  justify-content:center;            /* center when few items */
}
.thumbs::-webkit-scrollbar{display:none}
/* When content overflows, justify-content:center has no effect; left-align kicks in */
.thumbs.has-overflow{justify-content:flex-start}
.thumb{
  flex-shrink:0;width:4.5rem;height:4.5rem;
  background:#fff;border:2px solid transparent;border-radius:.5rem;
  cursor:pointer;overflow:hidden;transition:.15s;
}
.thumb img{width:100%;height:100%;object-fit:contain;padding:.25rem;display:block}
.thumb:hover{border-color:var(--bdr)}
.thumb.on{border-color:var(--acc)}

/* ── PANEL ─────────────────────────────────────────────── */
.panel-pills{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.pp{
  font-size:.875rem;font-weight:700;letter-spacing:.02em;
  padding:.3125rem .75rem;border-radius:1rem;
}
.pp-stk{background:var(--grn-lt);color:var(--grn)}
/* Badges inside panel-pills row: same height as pills, vertically centered */
.panel-pills .badge{
  padding:.3125rem .6875rem;
  border-radius:1.25rem;
  font-size:.75rem;font-weight:800;letter-spacing:.04em;
  display:inline-flex;align-items:center;justify-content:center;
  line-height:1;
}
.pp-new{background:#dcfce7;color:#166534}
.pp-oos{background:var(--red-lt);color:var(--red)}

.pdp-h1{
  font-size:1.75rem;font-weight:800;letter-spacing:-.02em;
  line-height:1.2;color:var(--txt);margin-bottom:.4375rem;
}
.panel-brand{font-size:.9375rem;color:var(--txt2);margin-bottom:.875rem}
.panel-brand span{color:var(--txt);font-weight:700}

.short-desc{
  font-size:.9375rem;line-height:1.6;color:var(--txt2);
  margin-bottom:1rem;
}
.panel-gift{
  background:#fff7e6;color:#92400e;border-radius:.5rem;
  padding:.5625rem .8125rem;font-size:.875rem;font-weight:600;margin-bottom:.75rem;
}
.panel-note{
  background:#eff6ff;color:#1e40af;border-left:3px solid #3b82f6;
  padding:.625rem .875rem;font-size:.875rem;border-radius:.25rem;
  margin:1.25rem 0 1rem;
}

.price-row{display:flex;align-items:baseline;gap:.5625rem;flex-wrap:wrap;margin-bottom:.25rem}
.pnow{font-size:2.125rem;font-weight:800;color:var(--txt);letter-spacing:-.02em}
.pwas{font-size:1.0625rem;color:var(--txt3);text-decoration:line-through}
.psave{
  background:var(--red);color:#fff;
  font-size:.75rem;font-weight:800;letter-spacing:.04em;
  padding:.1875rem .5rem;border-radius:.25rem;
}
.price-note{font-size:.875rem;color:var(--txt2);margin:.875rem 0 1.5rem}

/* Variant blocks */
.var-blk{margin-bottom:1rem}
.var-lbl{font-size:1rem;color:var(--txt2);margin-bottom:.5rem;font-weight:600}
.var-lbl span{color:var(--txt);font-weight:700;margin-left:.125rem}
.opt-row{display:grid;grid-template-columns:repeat(2,1fr);gap:.625rem}
.opt{
  padding:.75rem 1rem;border:2px solid var(--bdr);border-radius:.625rem;
  background:var(--surf);color:var(--txt);font-size:1rem;font-weight:600;
  cursor:pointer;transition:.15s;text-align:center;
}
.opt:hover{border-color:var(--txt2)}
.opt.on{border-color:#dc2626;background:#fef2f2;color:#dc2626}
.opt.unavailable{
  opacity:.45;
  background:repeating-linear-gradient(135deg,transparent 0 6px,rgba(0,0,0,.04) 6px 12px);
}

/* Qty */
.qty-row{display:flex;align-items:center;gap:.875rem;margin-bottom:1rem;flex-wrap:wrap}
.qty-lbl{font-size:1rem;color:var(--txt2);font-weight:600}
.qty-ctrl{
  display:inline-flex;align-items:center;
  border:1.5px solid var(--bdr);border-radius:.5rem;background:var(--surf);
}
.qty-ctrl button{
  width:2.5rem;height:2.5rem;background:none;border:none;
  font-size:1.125rem;color:var(--txt);cursor:pointer;
}
.qty-ctrl button:hover{background:var(--surf2)}
.qty-input{
  width:2.75rem;height:2.5rem;border:none;background:none;
  text-align:center;font-size:1rem;font-weight:700;color:var(--txt);
}
.qty-input::-webkit-outer-spin-button,.qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.qty-input:focus{outline:none}
.stk-info{font-size:.8125rem;color:var(--txt2);font-weight:600}

/* Action buttons */
.act-row{display:grid;grid-template-columns:1fr 1fr;gap:.625rem;margin-bottom:1.25rem}
.btn-atc,.btn-buy{
  padding:.875rem;border:none;border-radius:.5625rem;
  font-size:1rem;font-weight:700;cursor:pointer;
  transition:.18s;display:flex;align-items:center;justify-content:center;gap:.4375rem;
}
.btn-atc{background:var(--acc);color:#fff;box-shadow:0 4px 14px rgba(37,99,235,.25)}
.btn-atc:hover{background:#1d4ed8;box-shadow:0 6px 18px rgba(37,99,235,.35);transform:translateY(-1px)}
.btn-buy{background:#FFD43B;color:#1a1a1a;border:2px solid transparent;font-weight:800}
.btn-buy:hover{background:#FBBF24;transform:translateY(-1px);box-shadow:0 6px 18px rgba(251,191,36,.35)}
.btn-atc.busy,.btn-buy.busy{opacity:.6;pointer-events:none}

/* Trust mini-row */
.trust-mini{
  display:grid;grid-template-columns:1fr 1fr;gap:.5rem;
  padding:1rem 0;border-top:1px solid var(--bdr);border-bottom:1px solid var(--bdr);
  margin-bottom:1rem;
}
.tm{font-size:.875rem;color:var(--txt2);display:flex;align-items:center;gap:.4375rem}

/* Payments + Ship via rows */
.pay-row, .ship-row{
  display:flex;align-items:center;gap:.625rem;flex-wrap:wrap;
  padding:.6875rem 0;
}
.pay-row{border-bottom:1px solid var(--bdr)}
.pr-lbl{
  flex-shrink:0;font-size:.9375rem;font-weight:700;
  color:var(--txt2);letter-spacing:.02em;
}
.pay-row img,.ship-row img{
  max-width:100%;height:auto;max-height:2.5rem;display:block;
}
.ship-note{
  flex:1 1 100%;font-size:.8125rem;color:var(--txt3);margin:.25rem 0 0;
}
.ship-row{margin-bottom:1rem}


/* Share */
.share-row{display:flex;flex-wrap:wrap;align-items:center;gap:.4375rem}
.sh-lbl{font-size:.9375rem;color:var(--txt2);margin-right:.375rem;font-weight:600}
.sh-btn{
  padding:.4375rem .875rem;background:#fff;
  border:1.5px solid var(--bdr);border-radius:.4375rem;
  font-size:.875rem;font-weight:600;color:var(--txt2);
  cursor:pointer;transition:.15s;
}
.sh-btn:hover{border-color:var(--acc);color:var(--acc);background:#fff}

/* ── ANCHOR NAV (sticky bar) ──────────────────────────── */
.anav{
  position:sticky;top:8rem;z-index:50;
  background:var(--surf);border-top:1px solid var(--bdr);border-bottom:1px solid var(--bdr);
  margin-bottom:1.5rem;
}
.anav-inner{
  display:flex;gap:.25rem;overflow-x:auto;scrollbar-width:none;
}
.anav-inner::-webkit-scrollbar{display:none}
.anav-btn{
  background:none;border:none;
  padding:1rem .25rem;color:var(--txt2);
  font-size:.9375rem;font-weight:600;cursor:pointer;white-space:nowrap;
  border-bottom:2px solid transparent;
  transition:.15s;
  margin-right:1.5rem;
}
.anav-btn:hover{color:var(--txt)}
.anav-btn.on{color:var(--acc);border-bottom-color:var(--acc)}

/* ── DETAIL SECTIONS ──────────────────────────────────── */
.det-sec{padding:1.75rem 0;border-bottom:1px solid var(--bdr)}
.det-sec:last-child{border-bottom:none}
.det-sec h2{
  font-size:1.375rem;font-weight:800;letter-spacing:-.01em;
  color:var(--txt);margin-bottom:1.125rem;
}
.det-sec h3{font-size:1.0625rem;font-weight:700;color:var(--txt);margin:.875rem 0 .5rem}

/* Key Features — icon cards */
.feat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.875rem;margin-bottom:1rem}
.feat-card{
  display:flex;gap:.875rem;align-items:flex-start;
  padding:.9375rem 1.125rem;background:var(--surf);
  border:1px solid var(--bdr);border-radius:.625rem;
  transition:.15s;
}
.feat-card:hover{border-color:var(--acc);box-shadow:0 4px 14px rgba(37,99,235,.08)}
.feat-icon{
  flex-shrink:0;width:2rem;height:2rem;border-radius:50%;
  background:var(--acc-lt);color:var(--acc);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;font-weight:800;
}
.feat-txt{font-size:.9375rem;line-height:1.5;color:var(--txt)}

/* Specifications — supports both new (.proinf-tableflex) and old (<ul>) data */
.specs-wrap{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.625rem;
  overflow:hidden;
}
.specs-wrap .proinf-tableflex{
  display:grid;grid-template-columns:11.25rem minmax(0, 1fr);gap:1rem;
  padding:.8125rem 1.125rem;border-bottom:1px solid var(--bdr);
}
.specs-wrap .proinf-tableflex:last-child{border-bottom:none}
.specs-wrap .proinf-tableflex:nth-child(odd){background:rgba(0,0,0,.012)}
.specs-wrap .proinf-tableleft{font-weight:700;color:var(--txt2);font-size:.875rem}
.specs-wrap .proinf-tableright{
  color:var(--txt);font-size:.9375rem;line-height:1.5;
  word-wrap:break-word;overflow-wrap:break-word;word-break:break-word;
  min-width:0;
}
.specs-wrap .proinf-tableright>div{padding:.0625rem 0}
.specs-wrap ul{list-style:disc;padding:1rem 1.125rem 1rem 2.25rem}
.specs-wrap li{padding:.125rem 0;font-size:.9375rem;line-height:1.6}


.specs-imgs{margin-top:1rem;display:flex;flex-direction:column;gap:.625rem}
.specs-imgs div{margin:0}
.specs-imgs img{width:100%;max-width:46rem;display:block;margin:0 auto;border-radius:.5rem}

/* From The Manufacturer */
.mfr-imgs{display:flex;flex-direction:column;gap:.625rem}
.mfr-imgs div{margin:0}
.mfr-imgs img{width:100%;max-width:46rem;display:block;margin:0 auto;border-radius:.5rem}

/* In The Box */
.inbox-html{font-size:.9375rem;line-height:1.7;color:var(--txt)}
.inbox-html ul{
  list-style:none;padding:0;margin:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(11rem,1fr));gap:.5rem;
}
.inbox-html li{
  padding:.5625rem .8125rem;background:var(--surf);
  border:1px solid var(--bdr);border-radius:.4375rem;
  font-size:.875rem;
}
.inbox-html li::before{content:'✓ ';color:var(--grn);font-weight:700;margin-right:.125rem}
.inbox-html img{width:100%;max-width:30rem;margin-top:1rem;border-radius:.5rem;display:block}

/* Videos */
.pdp-videos{display:grid;grid-template-columns:repeat(auto-fit,minmax(20rem,1fr));gap:1rem}
.pdp-videos iframe,.pdp-videos video{
  width:100%;aspect-ratio:16/9;border-radius:.5rem;background:#000;border:none;
}

/* Shipping */
.ship-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(15rem,1fr));gap:.875rem}
.ship-card{
  background:var(--surf);border:1px solid var(--bdr);
  border-radius:.625rem;padding:1.125rem 1.25rem;
}
.ship-card h3{font-size:1rem;font-weight:700;color:var(--txt);margin-bottom:.5rem}
.ship-card p{font-size:.875rem;color:var(--txt2);line-height:1.55}

/* Customer Q&A */
.qa-list{display:flex;flex-direction:column;gap:1rem}
.qa-card{
  background:var(--surf);border:1px solid var(--bdr);
  border-radius:.625rem;padding:1rem 1.125rem;
}
.qa-q-head{display:flex;gap:.75rem;align-items:center;margin-bottom:.5rem}
.qa-av{
  flex-shrink:0;width:2.25rem;height:2.25rem;border-radius:50%;
  background:var(--acc-lt);color:var(--acc);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.875rem;
}
.qa-meta{flex:1;display:flex;flex-direction:column}
.qa-name{font-size:.9375rem;font-weight:700;color:var(--txt)}
.qa-country{
  display:inline-block;margin-left:.4375rem;font-size:.6875rem;
  background:var(--surf2);padding:.0625rem .375rem;border-radius:.25rem;
  color:var(--txt2);font-weight:600;
}
.qa-date{font-size:.75rem;color:var(--txt3)}
.qa-q-body{font-size:.9375rem;line-height:1.6;color:var(--txt);margin-bottom:.5rem}
.qa-a-box{
  margin-top:.625rem;padding:.5625rem .8125rem;
  background:var(--acc-lt);border-radius:.4375rem;
  border-left:3px solid var(--acc);
}
.qa-a-lbl{font-size:.75rem;font-weight:700;color:var(--acc);margin-bottom:.125rem;letter-spacing:.04em}
.qa-a-body{font-size:.875rem;line-height:1.55;color:var(--txt)}

/* Related */
.rel-grid{grid-template-columns:repeat(3,1fr)}
.rel-grid .prod-img{height:14rem}

/* Lightbox */
#lb{
  position:fixed;inset:0;background:rgba(0,0,0,.92);
  display:none;align-items:center;justify-content:center;z-index:9999;
}
#lb.open{display:flex}
#lb img{max-width:92vw;max-height:92vh;object-fit:contain;background:transparent}
#lb button{
  position:absolute;background:rgba(255,255,255,.1);border:none;color:#fff;
  width:2.75rem;height:2.75rem;border-radius:50%;cursor:pointer;
  font-size:1.625rem;line-height:1;
  display:flex;align-items:center;justify-content:center;
}
#lb-x{top:1rem;right:1rem}
#lb-prev{left:1rem;top:50%;transform:translateY(-50%)}
#lb-next{right:1rem;top:50%;transform:translateY(-50%)}
#lb button:hover{background:rgba(255,255,255,.2)}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width:48rem){
  .pdp-wrap{grid-template-columns:1fr;gap:1.25rem;margin-bottom:1.5rem}
  .pdp-h1{font-size:1.375rem}
  .pnow{font-size:1.625rem}
  .main-box{aspect-ratio:1/1;border-radius:.5rem}
  .gallery.gal-contain .main-box{padding:1rem}
  .thumb{width:3.75rem;height:3.75rem}
  .act-row{grid-template-columns:1fr}
  .feat-grid{grid-template-columns:1fr}
  .specs-wrap .proinf-tableflex{grid-template-columns:1fr;gap:.125rem;padding:.6875rem .9375rem}
  .specs-wrap .proinf-tableleft{font-size:.75rem;color:var(--txt3)}
  .det-sec{padding:1.25rem 0}
  .det-sec h2{font-size:1.125rem}
  .anav{top:0}
  .anav-btn{padding:.75rem .25rem;font-size:.875rem}
  .rel-grid{grid-template-columns:repeat(2,1fr)}
  .rel-grid .prod-img{height:11rem}
  .gallery{position:relative;top:auto}
  .pay-row img,.ship-row img{max-height:2.25rem}
  /* Magnifier hidden on mobile */
  .mag-lens,#zoom-win{display:none!important}
}
/* Stronger sign-in link (override any inherited link colour) */
.rv-submit .rv-login a{
  color:var(--acc)!important;
  text-decoration:underline;
  font-weight:800;
}
.rv-submit .rv-login a:hover{color:#1d4ed8!important}



/* ============================================================
   REVIEW FORM
   ============================================================ */
.rv-submit{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.5rem 1.75rem 1.625rem;
  max-width:38rem;margin-top:1.5rem;
}
.rv-submit h3{
  font-size:1.125rem;font-weight:800;margin-bottom:.4375rem;
  letter-spacing:-.005em;color:var(--txt);
}
.rv-login{font-size:.9375rem;color:var(--txt2);margin-top:.375rem}

.rv-form{margin-top:.875rem}
.rv-form-row{margin-bottom:1rem}
.rv-form-row label{
  display:block;font-size:.875rem;font-weight:700;
  color:var(--txt);margin-bottom:.5rem;
}
.rv-form-row textarea{
  width:100%;min-height:7rem;
  padding:.75rem .875rem;
  border:1.5px solid var(--bdr);border-radius:.5rem;
  font-family:inherit;font-size:.9375rem;color:var(--txt);
  background:#fff;line-height:1.55;resize:vertical;
  transition:border-color .15s,box-shadow .15s;
  box-sizing:border-box;
}
.rv-form-row textarea:focus{
  outline:none;border-color:var(--acc);
  box-shadow:0 0 0 3px rgba(37,99,235,.1);
}

/* Star rating input — JS adds/removes .on class for paint */
.rv-rating-input{
  display:inline-flex;gap:.25rem;cursor:pointer;
  user-select:none;-webkit-user-select:none;
}
.rv-rating-input span{
  font-size:1.75rem;line-height:1;
  color:#d1d5db;        /* default: light grey */
  transition:color .12s;
  display:inline-block;
}
.rv-rating-input span.on{
  color:#facc15;        /* gold when active */
}

/* Submit button — keep block-width on the small form (still readable on desktop) */
.rv-form .btn-block{margin-top:.25rem;max-width:14rem}

.rv-msg{margin-top:.625rem;font-size:.875rem;min-height:1.25rem;line-height:1.4}
.rv-msg.ok{color:var(--grn);font-weight:600}
.rv-msg.err{color:var(--red)}

/* Mobile */
@media (max-width:48rem){
  .rv-submit{padding:1.125rem 1.125rem 1.25rem}
  .rv-form-row textarea{min-height:6rem}
  .rv-rating-input span{font-size:1.625rem}
  .rv-form .btn-block{max-width:none}
}


/* ============================================================
   AUTH PAGES (login / signup / reset password)
   ============================================================ */

.auth-page{
  display:grid;grid-template-columns:1fr 1fr;
  gap:2rem;max-width:64rem;margin:2rem auto;
  padding:0 1rem;
}
.auth-page-single{
  max-width:28rem;margin:2rem auto;padding:0 1rem;
}

.auth-card{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.875rem 1.875rem 2rem;box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.auth-card h2{
  font-size:1.375rem;font-weight:800;letter-spacing:-.01em;
  color:var(--txt);margin-bottom:.4375rem;
}
.auth-sub{
  font-size:.9375rem;color:var(--txt2);margin-bottom:1.25rem;line-height:1.5;
}

.auth-field{margin-bottom:.875rem}
.auth-field label{
  display:block;font-size:.875rem;font-weight:600;color:var(--txt2);
  margin-bottom:.375rem;
}
.req{color:#dc2626;margin-left:.125rem}

.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"],
.auth-field input[type="tel"],
.auth-field select,
.auth-field textarea{
  width:100%;padding:.625rem .75rem;
  border:1.5px solid var(--bdr);border-radius:.4375rem;
  font-family:inherit;font-size:.9375rem;color:var(--txt);
  background:#fff;transition:border-color .15s;
}
.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus{
  outline:none;border-color:var(--acc);
}
.auth-field textarea{resize:vertical;min-height:3.5rem;line-height:1.5}

.auth-row{display:flex;align-items:center;justify-content:space-between;margin:.625rem 0 1rem}
.auth-row-2{display:grid;grid-template-columns:1fr 1fr;gap:.625rem}
.auth-link{color:var(--acc);text-decoration:none;font-size:.875rem;font-weight:600}
.auth-link:hover{text-decoration:underline}

.btn-block{width:100%;display:flex;align-items:center;justify-content:center}

.auth-msg{
  margin-top:.625rem;font-size:.875rem;line-height:1.4;
  min-height:1.25rem;
}
.auth-msg.ok{color:var(--grn);font-weight:600}
.auth-msg.err{color:var(--red)}

.auth-fineprint{
  margin-top:1.25rem;padding-top:1rem;border-top:1px solid var(--bdr);
  font-size:.75rem;color:var(--txt3);line-height:1.55;
}
.auth-fineprint a{color:var(--acc);text-decoration:none}
.auth-fineprint a:hover{text-decoration:underline}

/* Forgot-password modal */
.auth-modal{
  position:fixed;inset:0;background:rgba(0,0,0,.55);
  display:flex;align-items:center;justify-content:center;z-index:9999;
  padding:1rem;
}
.auth-modal-card{
  background:#fff;border-radius:.75rem;
  padding:1.5rem 1.625rem 1.75rem;
  width:100%;max-width:24rem;
  position:relative;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}
.auth-modal-card h3{
  font-size:1.125rem;font-weight:800;color:var(--txt);
  margin-bottom:.4375rem;
}
.auth-modal-card p{
  font-size:.875rem;color:var(--txt2);line-height:1.55;margin-bottom:.875rem;
}
.auth-modal-close{
  position:absolute;top:.625rem;right:.625rem;
  width:2rem;height:2rem;border:none;background:none;
  color:var(--txt3);font-size:1.375rem;cursor:pointer;line-height:1;
  display:flex;align-items:center;justify-content:center;border-radius:50%;
}
.auth-modal-close:hover{background:var(--surf2);color:var(--txt)}

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */

.account-page{
  max-width:62rem;margin:1.5rem auto 2rem;padding:0 1rem;
}

.acct-head{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;
  gap:1rem;margin-bottom:1.5rem;
  padding-bottom:1.25rem;border-bottom:1px solid var(--bdr);
}
.acct-head h1{
  font-size:1.5rem;font-weight:800;letter-spacing:-.01em;color:var(--txt);
}
.acct-email{font-size:.875rem;color:var(--txt2);margin-top:.125rem}
.acct-deposit{
  background:#fff7e6;border:1px solid #fcd34d;border-radius:.625rem;
  padding:.6875rem 1rem;
  display:flex;align-items:center;gap:.75rem;
}
.dep-label{font-size:.75rem;font-weight:700;color:#92400e;letter-spacing:.04em;text-transform:uppercase}
.dep-value{font-size:1.125rem;font-weight:800;color:#92400e}
.dep-note{font-size:.75rem;color:#92400e;opacity:.85}

.acct-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;
  align-items:start;
}
.acct-card{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.375rem 1.5rem;
}
.acct-card h2{
  font-size:1.0625rem;font-weight:800;color:var(--txt);
  margin-bottom:1rem;
}

/* Orders card spans full width */
.acct-orders-card{grid-column:1/-1}
.acct-empty{
  font-size:.9375rem;color:var(--txt3);
  padding:1.25rem 0;text-align:center;
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width:48rem){
  .auth-page{grid-template-columns:1fr;gap:1.25rem;margin:1rem auto}
  .auth-card{padding:1.375rem 1.25rem 1.5rem}
  .auth-card h2{font-size:1.1875rem}
  .acct-grid{grid-template-columns:1fr}
  .acct-head{flex-direction:column;align-items:flex-start}
}

/* ============================================================
   SHOPPING CART PAGE
   ============================================================ */
.cart-title{
  font-size:1.625rem;font-weight:800;letter-spacing:-.01em;
  margin:1.25rem 0 1.25rem;color:var(--txt);
}

/* Empty state */
.cart-empty{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.875rem;
  padding:3rem 1.5rem;text-align:center;margin:1.5rem 0;
}
.cart-empty-icon{font-size:3.5rem;margin-bottom:1rem;opacity:.5}
.cart-empty h2{font-size:1.375rem;font-weight:800;color:var(--txt);margin-bottom:.5rem}
.cart-empty p{font-size:.9375rem;color:var(--txt2);margin-bottom:1.5rem}

/* 2-col layout */
.cart-layout{
  display:grid;grid-template-columns:1fr 22rem;gap:1.5rem;
  margin-bottom:2rem;align-items:start;
}

/* ── Items list (left column) ─────────────────────── */
.cart-items{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.875rem;
  overflow:hidden;
}
.cart-toolbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:.875rem 1.25rem;border-bottom:1px solid var(--bdr);
  background:var(--surf2);
  font-size:.9375rem;
}
.cart-checkall{
  display:inline-flex;align-items:center;gap:.5rem;cursor:pointer;
  font-weight:600;color:var(--txt);user-select:none;
}
.cart-checkall input{width:1.0625rem;height:1.0625rem;cursor:pointer}
.cart-link{
  background:none;border:none;color:var(--acc);
  font-size:.875rem;font-weight:600;cursor:pointer;
}
.cart-link:hover{text-decoration:underline}

/* Single row */
.cart-row{
  display:grid;
  grid-template-columns:auto 6rem 1fr auto auto auto;
  gap:1rem;align-items:center;
  padding:1rem 1.25rem;border-bottom:1px solid var(--bdr);
}
.cart-row:last-child{border-bottom:none}

.cart-cb{display:inline-flex;align-items:center;cursor:pointer}
.cart-cb input{width:1.125rem;height:1.125rem;cursor:pointer}

.cart-img{
  display:block;width:6rem;height:6rem;
  background:#fff;border-radius:.5rem;overflow:hidden;
  border:1px solid var(--bdr);
}
.cart-img img{width:100%;height:100%;display:block}
.cart-img.is-contain img{object-fit:contain;padding:.375rem}
.cart-img.is-cover img{object-fit:cover}

.cart-info{min-width:0}
.cart-name{
  display:block;font-size:.9375rem;font-weight:700;color:var(--txt);
  text-decoration:none;line-height:1.35;margin-bottom:.25rem;
}
.cart-name:hover{color:var(--acc)}
.cart-vars{
  display:flex;flex-wrap:wrap;gap:.875rem;
  font-size:.8125rem;color:var(--txt3);margin-bottom:.25rem;
}
.cart-vars strong{color:var(--txt2);font-weight:600}
.cart-price-line{font-size:.8125rem;color:var(--txt3)}
.cart-unit{font-weight:600}

.cart-qty{
  display:inline-flex;align-items:center;
  border:1.5px solid var(--bdr);border-radius:.5rem;background:#fff;
}
.cart-qty .qty-btn{
  width:2.125rem;height:2.125rem;background:none;border:none;
  font-size:1rem;color:var(--txt);cursor:pointer;
}
.cart-qty .qty-btn:hover{background:var(--surf2)}
.cart-qty-input{
  width:2.5rem;height:2.125rem;border:none;background:none;
  text-align:center;font-size:.9375rem;font-weight:700;color:var(--txt);
}
.cart-qty-input:focus{outline:none}

.cart-line-total{
  font-size:1.0625rem;font-weight:800;color:var(--txt);
  min-width:5rem;text-align:right;
}

.cart-remove{
  background:none;border:none;color:var(--txt3);
  width:1.875rem;height:1.875rem;border-radius:50%;
  font-size:1rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:.15s;
}
.cart-remove:hover{background:#fef2f2;color:var(--red)}

/* ── Summary (right column) ─────────────────────── */
.cart-summary{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.875rem;
  padding:1.375rem 1.5rem;position:sticky;top:8.5rem;
}
.cart-summary h2{
  font-size:1.0625rem;font-weight:800;color:var(--txt);
  margin-bottom:1rem;
}
.cs-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:.5rem 0;font-size:.9375rem;color:var(--txt);
}
.cs-row .cs-count{
  color:var(--txt3);font-weight:400;font-size:.8125rem;margin-left:.25rem;
}
.cs-val{font-weight:700;color:var(--txt)}
.cs-val.cs-soft{color:var(--txt3);font-weight:500;font-size:.875rem}
.cs-row.cs-shipping{border-top:1px dashed var(--bdr);padding-top:.75rem;margin-top:.25rem}
.cs-row.cs-total{
  border-top:1px solid var(--bdr);margin-top:.5rem;
  padding-top:.875rem;font-size:1.125rem;
}
.cs-total .cs-val{font-size:1.375rem;font-weight:800;color:var(--txt)}

.cs-btn{margin-top:1.125rem;font-size:1rem;padding:.875rem}
.cs-btn:disabled{opacity:.5;pointer-events:none}

.cs-msg{margin-top:.625rem;font-size:.875rem;min-height:1.25rem}
.cs-msg.err{color:var(--red);font-weight:600}

.cs-trust{
  display:flex;flex-wrap:wrap;gap:.875rem;
  margin-top:1.125rem;padding-top:1rem;
  border-top:1px solid var(--bdr);
  font-size:.75rem;color:var(--txt3);
}

/* ── Mobile ──────────────────────────────────────── */
@media (max-width:48rem){
  .cart-layout{grid-template-columns:1fr;gap:1rem}
  .cart-summary{position:static;top:auto}
  .cart-row{
    grid-template-columns:auto 5rem 1fr;
    grid-template-areas:
      "cb img info"
      "cb img qty"
      ".  .   total";
    row-gap:.5rem;column-gap:.875rem;padding:.875rem 1rem;
  }
  .cart-cb{grid-area:cb;align-self:start;padding-top:.25rem}
  .cart-img{grid-area:img;width:5rem;height:5rem}
  .cart-info{grid-area:info}
  .cart-qty{grid-area:qty;justify-self:start}
  .cart-line-total{grid-area:total;text-align:left;margin-left:5.875rem;margin-top:.125rem}
  .cart-remove{
    position:absolute;top:.5rem;right:.5rem;
  }
  .cart-row{position:relative}
  .cart-title{font-size:1.25rem}
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.checkout-page{
  max-width:72rem;margin:1.5rem auto 2.5rem;padding:0 1rem;
}
.co-title{
  font-size:1.625rem;font-weight:800;letter-spacing:-.01em;
  color:var(--txt);margin-bottom:.25rem;
}
.co-sub{font-size:.9375rem;color:var(--txt2);margin-bottom:1.5rem}

.co-grid{
  display:grid;grid-template-columns:1.6fr 1fr;gap:1.5rem;align-items:start;
}

/* Left column cards */
.co-main{display:flex;flex-direction:column;gap:1rem}
.co-card{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.375rem 1.5rem;
}
.co-card h2{
  font-size:1.0625rem;font-weight:800;color:var(--txt);
  margin-bottom:.4375rem;
}
.co-hint{
  font-size:.8125rem;color:var(--txt3);line-height:1.5;
  margin-bottom:1rem;
}

.co-field{margin-bottom:.875rem}
.co-field label{
  display:block;font-size:.875rem;font-weight:600;
  color:var(--txt);margin-bottom:.4375rem;
}
.co-req-mark{color:#dc2626;font-weight:800;margin-left:.0625rem}
.co-field input,.co-field select,.co-field textarea{
  width:100%;padding:.625rem .75rem;
  border:1.5px solid var(--bdr);border-radius:.5rem;
  font-family:inherit;font-size:.9375rem;color:var(--txt);
  background:#fff;box-sizing:border-box;
  transition:border-color .15s,box-shadow .15s;
}
.co-field input:focus,.co-field select:focus,.co-field textarea:focus{
  outline:none;border-color:var(--acc);
  box-shadow:0 0 0 3px rgba(37,99,235,.1);
}
.co-field textarea{resize:vertical;line-height:1.5}

.co-row-2{display:grid;grid-template-columns:1fr 1fr;gap:.875rem}

/* Payment options */
.pay-options{display:flex;flex-direction:column;gap:.625rem}
.pay-opt{
  display:flex;gap:.875rem;align-items:flex-start;
  padding:.875rem 1rem;border:2px solid var(--bdr);border-radius:.625rem;
  cursor:pointer;background:#fff;
  transition:all .15s;position:relative;
}
.pay-opt:hover{border-color:var(--txt2)}
.pay-opt.selected{border-color:var(--acc);background:#eff6ff}
.pay-opt input[type="radio"]{
  flex-shrink:0;margin-top:.1875rem;
  width:1.125rem;height:1.125rem;cursor:pointer;
  accent-color:var(--acc);
}
.pay-opt-label{flex:1;display:flex;flex-direction:column;gap:.125rem}
.pay-opt-label strong{font-size:.9375rem;color:var(--txt)}
.pay-opt-label span{font-size:.8125rem;color:var(--txt2);line-height:1.5}
.pay-recommend{
  position:absolute;top:.625rem;right:.75rem;
  font-size:.6875rem;font-weight:800;letter-spacing:.04em;
  color:#fff;background:var(--acc);
  padding:.1875rem .5rem;border-radius:.25rem;
}
.pay-paypal{border-color:var(--acc)}
.pay-paypal.selected{box-shadow:0 4px 14px rgba(37,99,235,.18)}

/* Right column: order summary */
.co-summary{position:sticky;top:5.5rem}
.co-sum-card{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.375rem 1.5rem;
}
.co-sum-card h3{
  font-size:1rem;font-weight:800;color:var(--txt);
  margin-bottom:1rem;letter-spacing:-.01em;
}

.co-items{
  display:flex;flex-direction:column;gap:.875rem;
  max-height:24rem;overflow-y:auto;
  padding-right:.25rem;
  margin-bottom:1rem;border-bottom:1px solid var(--bdr);padding-bottom:1rem;
}
.co-item{display:flex;gap:.75rem;align-items:flex-start}
.co-item-img{
  position:relative;flex-shrink:0;
  width:3.75rem;height:3.75rem;background:#fff;
  border:1px solid var(--bdr);border-radius:.4375rem;
  overflow:hidden;
}
.co-item-img img{width:100%;height:100%;object-fit:contain;padding:.25rem}
.co-item-qty{
  position:absolute;top:-.4375rem;right:-.4375rem;
  background:var(--txt);color:#fff;
  font-size:.6875rem;font-weight:800;
  min-width:1.25rem;height:1.25rem;border-radius:.625rem;
  display:flex;align-items:center;justify-content:center;
  padding:0 .3125rem;
}
.co-item-info{flex:1;min-width:0}
.co-item-name{
  font-size:.875rem;font-weight:700;color:var(--txt);
  line-height:1.35;margin-bottom:.125rem;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
}
.co-item-var{font-size:.75rem;color:var(--txt3);margin-bottom:.1875rem}
.co-item-price{font-size:.875rem;font-weight:700;color:var(--txt)}

.co-sum-rows{display:flex;flex-direction:column;gap:.4375rem;margin-bottom:1rem}
.co-sum-row{
  display:flex;justify-content:space-between;align-items:baseline;
  font-size:.9375rem;color:var(--txt2);
}
.co-sum-row small{color:var(--txt3);font-size:.75rem;font-weight:400}
.co-sum-total{
  font-size:1.0625rem;font-weight:800;color:var(--txt);
  padding-top:.625rem;border-top:1px solid var(--bdr);
  margin-top:.25rem;
}

#btnPlaceOrder{
  width:100%;padding:.875rem;
  font-size:1rem;font-weight:800;
  background:var(--acc);color:#fff;border:none;border-radius:.5625rem;
  cursor:pointer;transition:.18s;
  box-shadow:0 4px 14px rgba(37,99,235,.25);
}
#btnPlaceOrder:hover:not(:disabled){
  background:#1d4ed8;
  box-shadow:0 6px 18px rgba(37,99,235,.35);
  transform:translateY(-1px);
}
#btnPlaceOrder:disabled{opacity:.6;cursor:not-allowed}

.co-msg{margin-top:.625rem;font-size:.875rem;min-height:1.25rem;line-height:1.4}
.co-msg.ok{color:var(--grn);font-weight:600}
.co-msg.err{color:var(--red)}

.co-trust{
  margin-top:1rem;padding-top:1rem;border-top:1px solid var(--bdr);
  display:flex;flex-direction:column;gap:.4375rem;
}
.co-trust-row{font-size:.8125rem;color:var(--txt2)}



/* Country select — just bold the value, no special background */
.co-card-country{padding:1rem 1.5rem}
.co-country-select{
  font-weight:700;
  font-size:1rem!important;
}

/* ============================================================
   THANKS / ORDER CONFIRM PAGE
   ============================================================ */

.thanks-page{
  max-width:42rem;margin:2.5rem auto;padding:0 1rem;
}
.thanks-card{
  background:var(--surf);border:1px solid var(--bdr);border-radius:1rem;
  padding:2.5rem 2rem;text-align:center;
  box-shadow:0 6px 22px rgba(0,0,0,.05);
}
.thanks-icon{
  width:4rem;height:4rem;border-radius:50%;
  background:#dcfce7;color:#16a34a;
  font-size:2rem;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.25rem;
}
.thanks-card h1{
  font-size:1.5rem;font-weight:800;letter-spacing:-.01em;
  color:var(--txt);margin-bottom:.625rem;
}
.thanks-lead{
  font-size:1rem;color:var(--txt2);line-height:1.55;
  margin-bottom:1.5rem;
}

.thanks-order{
  background:#eff6ff;border:1px solid #bfdbfe;border-radius:.625rem;
  padding:1rem 1.25rem;margin-bottom:1.5rem;
}
.to-label{font-size:.75rem;color:#1e40af;font-weight:700;letter-spacing:.04em;text-transform:uppercase}
.to-num{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:1.0625rem;font-weight:700;color:#1e3a8a;
  margin:.25rem 0 .375rem;word-break:break-all;
}
.to-amount{font-size:.9375rem;color:#1e40af}
.to-amount strong{color:#1e3a8a}

.thanks-next{
  text-align:left;background:var(--surf2);
  border-radius:.625rem;padding:1.125rem 1.25rem;
  margin-bottom:1.5rem;
}
.thanks-next h3{
  font-size:1rem;font-weight:800;color:var(--txt);
  margin-bottom:.5rem;
}
.thanks-next p,.thanks-next ol{
  font-size:.875rem;color:var(--txt2);line-height:1.6;margin:0;
}
.thanks-next ol{padding-left:1.25rem;display:flex;flex-direction:column;gap:.25rem}
.thanks-next p+p{margin-top:.5rem}
.thanks-next a{color:var(--acc);font-weight:600}

.thanks-actions{
  display:flex;justify-content:center;gap:.625rem;flex-wrap:wrap;
}
.thanks-actions .btn{padding:.6875rem 1.5rem;font-size:.9375rem}

/* Order confirm page — items list */
.oc-items{
  text-align:left;background:#fff;
  border:1px solid var(--bdr);border-radius:.625rem;
  padding:1rem 1.25rem;margin-bottom:1.5rem;
}
.oc-items h3{
  font-size:.9375rem;font-weight:800;color:var(--txt);
  margin-bottom:.625rem;
}
.oc-item-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.75rem}
.oc-item-list li{
  display:flex;gap:.75rem;align-items:center;
  padding-bottom:.625rem;border-bottom:1px solid var(--bdr);
}
.oc-item-list li:last-child{border-bottom:none;padding-bottom:0}
.oc-item-list img{
  width:3rem;height:3rem;object-fit:contain;
  background:var(--surf2);border-radius:.375rem;padding:.1875rem;flex-shrink:0;
}
.oc-name{font-size:.875rem;font-weight:600;color:var(--txt);margin-bottom:.125rem}
.oc-qty{font-size:.75rem;color:var(--txt3)}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width:48rem){
  .co-grid{grid-template-columns:1fr;gap:1rem}
  .co-summary{position:relative;top:0}
  .co-row-2{grid-template-columns:1fr}
  .co-card{padding:1.125rem}
  .pay-recommend{top:.5rem;right:.5rem;font-size:.625rem}
  .thanks-card{padding:1.75rem 1.25rem}
  .thanks-card h1{font-size:1.25rem}
}

/*  killed — PayPal default selected is enough */

/* Inline qty replacement for old absolute badge */
.co-item-qty{display:none}      /* hide old absolute badge */
.co-item-qty-inline{
  font-size:.875rem;font-weight:600;color:var(--txt2);
  margin-right:.5rem;
}
.co-item-img img{object-fit:contain!important}   /* always contain in summary */
.co-item-gift{
  font-size:.75rem;color:#92400e;background:#fff7e6;
  padding:.125rem .375rem;border-radius:.25rem;
  display:inline-block;margin:.1875rem 0;
}

/* Bank Transfer / Western Union: two parallel half-cards + shared note */
.pay-pair-wrap{
  border:2px solid var(--bdr);border-radius:.625rem;
  padding:.625rem;background:#fff;
}
.pay-pair{
  display:grid;grid-template-columns:1fr 1fr;gap:.5rem;
}
.pay-half{
  border:2px solid var(--bdr);border-radius:.5rem;
  padding:.625rem .75rem;cursor:pointer;
  background:#fff;transition:all .15s;
  display:flex;align-items:center;gap:.5rem;
}
.pay-half:hover{border-color:var(--txt2)}
.pay-half.selected{border-color:var(--acc);background:#eff6ff}
.pay-half input[type="radio"]{
  flex-shrink:0;
  width:1.125rem;height:1.125rem;cursor:pointer;
  accent-color:var(--acc);margin:0;
}
.pay-half .pay-opt-label{display:block}
.pay-half .pay-opt-label strong{font-size:.9375rem;color:var(--txt)}
.pay-pair-note{
  font-size:.8125rem;color:var(--txt2);line-height:1.5;
  margin:.625rem .25rem 0;
}
@media (max-width:30rem){
  .pay-pair{grid-template-columns:1fr;gap:.5rem}
}

/* ============================================================
   ORDERS LIST (account.php) + TRACK ORDER (track-order.php)
   ============================================================ */

/* Orders list in account page */
.orders-list{display:flex;flex-direction:column;gap:.875rem}
.order-row{
  background:#fff;border:1px solid var(--bdr);border-radius:.625rem;
  padding:1rem 1.125rem;transition:border-color .15s,box-shadow .15s;
}
.order-row:hover{border-color:var(--acc);box-shadow:0 4px 14px rgba(0,0,0,.04)}

.order-summary-line{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:.5rem;margin-bottom:.5rem;
}
.order-num{font-size:.875rem;color:var(--txt2)}
.order-num-label{font-weight:600}
.order-num-val{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  color:var(--txt);font-weight:700;margin-left:.25rem;word-break:break-all;
}

/* Status badges (small) */
.order-status{
  font-size:.75rem;font-weight:700;
  padding:.25rem .625rem;border-radius:1rem;
  letter-spacing:.02em;white-space:nowrap;
}
.order-status-lg{
  font-size:.875rem;padding:.375rem .875rem;
}
.os-pending    {background:#fff7e6;color:#92400e}
.os-paid       {background:#dbeafe;color:#1e40af}
.os-processing {background:#e0e7ff;color:#3730a3}
.os-shipped    {background:#cffafe;color:#0e7490}
.os-completed  {background:#dcfce7;color:#166534}
.os-cancelled  {background:#fee2e2;color:#991b1b}

.order-meta{
  font-size:.875rem;color:var(--txt3);
  display:flex;flex-wrap:wrap;align-items:center;gap:.4375rem;
  margin-bottom:.625rem;
}
.order-sep{color:var(--txt3);opacity:.6}
.order-total{color:var(--txt);font-weight:700}

.order-thumbs{
  display:flex;align-items:center;gap:.375rem;margin-bottom:.625rem;flex-wrap:wrap;
}
.order-thumbs img{
  width:2.75rem;height:2.75rem;object-fit:contain;
  background:var(--surf2);border:1px solid var(--bdr);border-radius:.375rem;
  padding:.1875rem;
}
.order-thumbs-more{
  font-size:.75rem;color:var(--txt3);font-weight:600;
  padding:0 .375rem;
}

.order-tracking{font-size:.8125rem;color:var(--txt2);margin-bottom:.5rem}
.ot-label{font-weight:600;margin-right:.25rem}
.ot-val{font-family:ui-monospace,monospace;color:var(--acc);font-weight:600}

.order-actions{margin-top:.5rem}
.order-actions .auth-link{font-size:.875rem}

/* ============================================================
   TRACK ORDER PAGE
   ============================================================ */

.track-page{
  max-width:46rem;margin:1.5rem auto 2.5rem;padding:0 1rem;
}
.track-title{
  font-size:1.625rem;font-weight:800;letter-spacing:-.01em;
  color:var(--txt);margin-bottom:.25rem;
}
.track-sub{font-size:.9375rem;color:var(--txt2);margin-bottom:1.5rem}

.track-form{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.25rem;margin-bottom:1.25rem;
}
.track-input-row{
  display:flex;gap:.625rem;
}
.track-input-row input{
  flex:1;padding:.6875rem .875rem;
  border:1.5px solid var(--bdr);border-radius:.5rem;
  font-family:inherit;font-size:.9375rem;color:var(--txt);
  background:#fff;
}
.track-input-row input:focus{
  outline:none;border-color:var(--acc);
  box-shadow:0 0 0 3px rgba(37,99,235,.1);
}
.track-input-row button{padding:.6875rem 1.5rem;flex-shrink:0}

.track-email-form{
  background:#fff7e6;border:1px solid #fcd34d;border-radius:.75rem;
  padding:1.25rem;margin-bottom:1.25rem;
}

.track-msg{
  font-size:.9375rem;line-height:1.5;
  padding:.875rem 1rem;border-radius:.5rem;margin-bottom:1.25rem;
}
.track-msg-err{
  background:#fee2e2;color:#991b1b;border:1px solid #fecaca;
}
.track-msg-info{
  margin-bottom:.875rem;background:transparent;border:none;padding:0;
  color:#92400e;font-size:.875rem;
}

/* Order detail card */
.track-order-card{
  background:#fff;border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.5rem 1.625rem;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.track-order-head{
  display:flex;justify-content:space-between;align-items:flex-start;
  flex-wrap:wrap;gap:1rem;margin-bottom:1.5rem;
  padding-bottom:1.25rem;border-bottom:1px solid var(--bdr);
}

/* Status timeline */
.track-steps{
  display:flex;justify-content:space-between;align-items:flex-start;
  margin-bottom:1.75rem;padding:0 .25rem;position:relative;
}
.track-steps::before{
  content:'';position:absolute;top:1rem;left:1.5rem;right:1.5rem;
  height:2px;background:var(--bdr);z-index:0;
}
.ts-step{
  flex:1;display:flex;flex-direction:column;align-items:center;
  position:relative;z-index:1;
  text-align:center;
}
.ts-dot{
  width:2rem;height:2rem;border-radius:50%;
  background:#fff;border:2px solid var(--bdr);
  color:var(--txt3);font-weight:700;font-size:.875rem;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.4375rem;transition:.2s;
}
.ts-label{
  font-size:.75rem;color:var(--txt3);
  line-height:1.3;max-width:5.5rem;
}
.ts-done .ts-dot{background:var(--grn);border-color:var(--grn);color:#fff}
.ts-done .ts-label{color:var(--txt2)}
.ts-current .ts-dot{
  background:var(--acc);border-color:var(--acc);color:#fff;
  box-shadow:0 0 0 4px rgba(37,99,235,.15);
}
.ts-current .ts-label{color:var(--acc);font-weight:700}
.ts-cancelled .ts-dot{background:#fee2e2;border-color:#fecaca;color:#991b1b}

/* Detail rows grid */
.track-detail-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(12rem,1fr));
  gap:1rem 1.5rem;margin-bottom:1.5rem;
  padding:1rem 1.125rem;background:var(--surf);border-radius:.5rem;
}
.td-label{font-size:.75rem;color:var(--txt3);font-weight:600;letter-spacing:.04em;text-transform:uppercase;margin-bottom:.1875rem}
.td-val{font-size:.9375rem;color:var(--txt);font-weight:600}
.td-tracking{font-family:ui-monospace,monospace;color:var(--acc)}

.track-section-title{
  font-size:1rem;font-weight:800;color:var(--txt);
  margin:.5rem 0 .75rem;
}

.track-items{
  display:flex;flex-direction:column;gap:.875rem;
  margin-bottom:1.25rem;
}
.track-item{
  display:flex;gap:.875rem;align-items:center;
  padding:.625rem 0;border-bottom:1px solid var(--bdr);
}
.track-item:last-child{border-bottom:none}
.track-item img{
  width:3.75rem;height:3.75rem;flex-shrink:0;
  object-fit:contain;background:var(--surf2);
  border:1px solid var(--bdr);border-radius:.4375rem;padding:.25rem;
}
.track-item-info{flex:1}
.track-item-name{font-size:.9375rem;font-weight:700;color:var(--txt);margin-bottom:.1875rem}
.track-item-meta{font-size:.8125rem;color:var(--txt3)}

.track-comments{
  background:#eff6ff;border-left:3px solid var(--acc);
  padding:.75rem .875rem;border-radius:.25rem;
  margin-bottom:1rem;
}
.track-comments .td-label{color:#1e40af}

.track-help{
  font-size:.875rem;color:var(--txt2);text-align:center;
  margin-top:1rem;padding-top:1rem;border-top:1px solid var(--bdr);
}

/* No lookup yet — help card */
.track-help-card{
  background:var(--surf);border:1px solid var(--bdr);border-radius:.75rem;
  padding:1.5rem 1.75rem;text-align:center;
}
.track-help-card h3{font-size:1.0625rem;font-weight:800;color:var(--txt);margin-bottom:.75rem}
.track-help-card p{font-size:.9375rem;color:var(--txt2);line-height:1.6;margin-bottom:.75rem}
.track-code{
  display:inline-block;font-family:ui-monospace,monospace;
  background:#fff;border:1px solid var(--bdr);
  padding:.4375rem .75rem;border-radius:.375rem;
  color:var(--acc);font-size:.875rem;font-weight:600;
  margin:.25rem 0;
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width:32rem){
  .track-input-row{flex-direction:column}
  .track-input-row button{width:100%}
  .track-steps{padding:0}
  .ts-label{font-size:.625rem;max-width:4rem}
  .track-order-head{flex-direction:column;align-items:flex-start}
  .order-summary-line{flex-direction:column;align-items:flex-start}
}

/* ============================================================
   TOAST (used by wishlist + subscribe)
   ============================================================ */
#toast{
  position:fixed;left:50%;bottom:2.5rem;transform:translateX(-50%) translateY(1.5rem);
  background:#1f2937;color:#fff;padding:.75rem 1.25rem;border-radius:.625rem;
  font-size:.9375rem;font-weight:600;letter-spacing:-.005em;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  opacity:0;pointer-events:none;transition:transform .25s,opacity .25s;
  z-index:5000;
}
#toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
#toast.toast-warn{background:#92400e}
#toast.toast-err{background:#991b1b}
#toast.toast-ok{background:#166534}

/* ============================================================
   WISHLIST — card + grid + heart states
   ============================================================ */
.prod-wish.wished, .gal-wish.wished{
  color:#dc2626!important;
  background:#fee2e2;
  border-color:#fecaca;
}

.acct-wishlist-card{margin-top:1.25rem}
.acct-wishlist-card h2{display:flex;align-items:baseline;gap:.5rem}
.acct-wishcount{font-size:1rem;color:var(--txt3);font-weight:600}

.wish-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(13rem,1fr));
  gap:1rem;
}
.wish-item{
  background:#fff;border:1px solid var(--bdr);border-radius:.625rem;
  overflow:hidden;display:flex;flex-direction:column;
  transition:box-shadow .15s,transform .15s;
}
.wish-item:hover{box-shadow:0 4px 14px rgba(0,0,0,.08);transform:translateY(-2px)}
.wish-thumb{
  display:block;background:#fafafa;height:9rem;
  display:flex;align-items:center;justify-content:center;padding:.75rem;
}
.wish-thumb img{max-width:100%;max-height:100%;object-fit:contain}
.wish-info{padding:.75rem;display:flex;flex-direction:column;gap:.375rem;flex:1}
.wish-name{
  font-size:.9375rem;font-weight:600;color:var(--txt);text-decoration:none;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  line-height:1.35;flex:1;
}
.wish-name:hover{color:var(--acc)}
.wish-price{font-size:1rem;font-weight:800;color:var(--txt)}
.wish-remove{
  padding:.375rem .5rem;font-size:.8125rem;font-weight:600;
  background:#fee2e2;color:#991b1b;border:1px solid #fecaca;
  border-radius:.4375rem;cursor:pointer;transition:.15s;
}
.wish-remove:hover{background:#fecaca}

/* ============================================================
   NEWSLETTER msg
   ============================================================ */
.nl-msg{
  margin-top:.875rem;font-size:.9375rem;
  min-height:1.25rem;color:rgba(255,255,255,.85);
}
.nl-msg.ok{color:#86efac}
.nl-msg.err{color:#fca5a5}

/* ============================================================
   LIVE CHAT WIDGET
   ============================================================ */

#lc-launch{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:600;
  width:3.5rem;height:3.5rem;border-radius:50%;
  background:var(--acc);color:#fff;border:none;
  box-shadow:0 8px 20px rgba(37,99,235,.35);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:transform .2s,box-shadow .2s;
}
#lc-launch:hover{transform:scale(1.06);box-shadow:0 12px 28px rgba(37,99,235,.45)}
#lc-launch svg{width:1.5rem;height:1.5rem}

#lc-badge{
  position:absolute;top:-.25rem;right:-.25rem;
  min-width:1.25rem;height:1.25rem;
  background:#dc2626;color:#fff;
  border-radius:.625rem;border:2px solid #fff;
  font-size:.6875rem;font-weight:800;
  padding:0 .375rem;
  display:flex;align-items:center;justify-content:center;
}

#lc-panel{
  position:fixed;bottom:5.5rem;right:1.5rem;z-index:600;
  width:22.5rem;height:32rem;max-height:calc(100vh - 8rem);
  background:#fff;border-radius:.875rem;
  box-shadow:0 10px 40px rgba(0,0,0,.18);
  display:flex;flex-direction:column;overflow:hidden;
  opacity:0;pointer-events:none;
  transform:translateY(.5rem) scale(.98);
  transition:opacity .2s,transform .2s;
}
#lc-panel.open{
  opacity:1;pointer-events:auto;
  transform:translateY(0) scale(1);
}

/* Header */
.lc-head{
  display:flex;align-items:center;justify-content:space-between;gap:.75rem;
  padding:1rem 1.125rem;background:var(--acc);color:#fff;
}
.lc-head-info{min-width:0;flex:1}
.lc-head-title{font-size:1rem;font-weight:800;line-height:1.2}
.lc-head-sub{font-size:.75rem;opacity:.85;margin-top:.125rem}
.lc-close{
  width:2rem;height:2rem;border:none;background:rgba(255,255,255,.15);
  color:#fff;font-size:1.375rem;line-height:1;
  border-radius:.4375rem;cursor:pointer;transition:.15s;
  display:flex;align-items:center;justify-content:center;
}
.lc-close:hover{background:rgba(255,255,255,.25)}

/* Email gate */
.lc-gate{padding:1.5rem;display:flex;flex-direction:column;gap:.75rem;flex:1}
.lc-gate-msg{font-size:.875rem;color:var(--txt2);line-height:1.5;margin:0}
.lc-gate input{
  padding:.625rem .75rem;font-size:.9375rem;font-family:inherit;
  border:1.5px solid var(--bdr);border-radius:.5rem;
  outline:none;transition:border-color .15s;
}
.lc-gate input:focus{border-color:var(--acc)}
.lc-gate button{
  padding:.625rem 1rem;font-size:.9375rem;font-weight:700;
  background:var(--acc);color:#fff;border:none;border-radius:.5rem;
  cursor:pointer;transition:.15s;
}
.lc-gate button:hover{background:#1d4ed8}
.lc-gate button:disabled{opacity:.6;cursor:not-allowed}
.lc-gate-err{font-size:.8125rem;color:var(--red);min-height:1rem;margin:0}

/* Messages list */
.lc-body{
  flex:1;overflow-y:auto;padding:1rem;background:#fafafa;
  display:flex;flex-direction:column;gap:.625rem;
}
.lc-empty{
  text-align:center;color:var(--txt3);font-size:.875rem;
  padding:1.5rem 1rem;margin:auto 0;
}

.lc-msg{display:flex;flex-direction:column;max-width:85%;gap:.1875rem}
.lc-msg-me{align-self:flex-end;align-items:flex-end}
.lc-msg-staff{align-self:flex-start;align-items:flex-start}
.lc-msg-name{
  font-size:.6875rem;color:var(--txt3);font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;
}
.lc-msg-bubble{
  padding:.5625rem .75rem;border-radius:.875rem;
  font-size:.9375rem;line-height:1.4;word-wrap:break-word;
}
.lc-msg-me .lc-msg-bubble{
  background:var(--acc);color:#fff;border-bottom-right-radius:.25rem;
}
.lc-msg-staff .lc-msg-bubble{
  background:#fff;color:var(--txt);
  border:1px solid var(--bdr);border-bottom-left-radius:.25rem;
}
.lc-msg-failed .lc-msg-bubble{opacity:.55;background:#fee2e2!important;color:#991b1b!important}
.lc-msg-time{font-size:.6875rem;color:var(--txt3)}

/* Compose form */
.lc-form{
  display:flex;align-items:flex-end;gap:.5rem;
  padding:.625rem .75rem;border-top:1px solid var(--bdr);background:#fff;
}
.lc-form textarea{
  flex:1;resize:none;border:none;outline:none;background:transparent;
  font-family:inherit;font-size:.9375rem;line-height:1.4;
  padding:.5rem;max-height:7.5rem;color:var(--txt);
}
.lc-form button{
  width:2.25rem;height:2.25rem;border:none;border-radius:.5rem;
  background:var(--acc);color:#fff;cursor:pointer;transition:.15s;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.lc-form button:hover{background:#1d4ed8}
.lc-form button:disabled{opacity:.5;cursor:not-allowed}

/* ── Mobile: full-screen ─────────────────────────────── */
@media (max-width:48rem){
  #lc-panel{
    bottom:0;right:0;left:0;top:0;
    width:100%;height:100%;max-height:100%;
    border-radius:0;
  }
  #lc-panel.open{transform:none}
  #lc-launch{bottom:1rem;right:1rem;width:3.25rem;height:3.25rem}
}

/* Online status dot beside title */
.lc-status-dot{
  display:inline-block;width:.5rem;height:.5rem;border-radius:50%;
  background:#ef4444;margin-left:.4375rem;vertical-align:middle;
  box-shadow:0 0 0 .125rem rgba(239,68,68,.2);
}
.lc-status-dot[data-online="1"]{
  background:#22c55e;box-shadow:0 0 0 .125rem rgba(34,197,94,.25);
}

/* Identity row: "chatting as ... [Change]" */
.lc-identity{
  display:flex;align-items:center;justify-content:space-between;gap:.5rem;
  padding:.5rem .9375rem;background:#f9fafb;
  font-size:.8125rem;color:var(--txt2);
  border-bottom:1px solid var(--bdr);
}
.lc-identity strong{
  color:var(--txt);font-weight:600;
  max-width:60%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.lc-change-btn{
  font-size:.75rem;font-weight:600;color:var(--acc);
  background:none;border:none;cursor:pointer;
  padding:.1875rem .375rem;border-radius:.25rem;
}
.lc-change-btn:hover{background:#eff6ff;text-decoration:underline}

/* Offline banner inside chat */
.lc-offline{
  padding:.5625rem .9375rem;
  background:#fff7e6;border-bottom:1px solid #fde68a;
  color:#92400e;font-size:.8125rem;line-height:1.4;
}

/* Pending bubble */
.lc-msg-pending .lc-msg-bubble{opacity:.65}
.lc-msg-pending .lc-msg-time{color:var(--txt3);font-style:italic}
