@import url('https://fonts.cdnfonts.com/css/glacial-indifference');

/* ============================================================
   MAN CAVE — design system
   Dark premium · navy + steel/graphite + ice-blue accent
   Fonts: Playfair Display (display) + Inter (UI/body)
   ============================================================ */

:root{
  /* palette */
  --ink:      #08131F;   /* deepest background */
  --navy:     #0E1E2E;   /* primary surface */
  --navy-2:   #14293C;   /* raised surface / cards */
  --navy-3:   #1B3346;   /* hover surface */
  --steel:    #22384B;   /* borders / graphite */
  --steel-2:  #2C4459;
  --ice:      #8FC0DE;   /* accent — the dial */
  --ice-strong:#AFD6EE;
  --silver:   #C7D2DC;
  --text:     #EAF1F6;   /* on dark */
  --muted:    #93A6B4;   /* secondary on dark */
  --faint:    #6E8291;
  --cream:    #F5F7F9;   /* light section bg */
  --cream-2:  #FBFCFD;
  --ink-on-light:#0E1E2E;
  --muted-on-light:#556470;
  --border-light:#E2E8EE;
  --danger:   #E5675E;
  --success:  #5BB98B;

  --gold:     #C7A76A;   /* subtle metallic detail only */

  /* type */
  --f-display:"Playfair Display", Georgia, "Times New Roman", serif;
  --f-body:"Glacial Indifference", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --maxw: 100%;
  --pad: clamp(20px, 4.5vw, 80px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --shadow-soft: 0 6px 24px rgba(8,19,31,.10);
  --ease: cubic-bezier(.22,.61,.36,1);

  --header-h: 68px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
body{
  margin:0;
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  background:var(--navy);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:2px solid var(--ice); outline-offset:3px; border-radius:2px; }

/* ---------- typography ---------- */
h1,h2,h3,h4{ font-family:var(--f-display); font-weight:600; line-height:1.1; margin:0 0 .5em; letter-spacing:.2px; }
.h-serif{ font-family:var(--f-display); }
.display{ font-size:clamp(2.4rem, 6vw, 4.6rem); font-weight:600; letter-spacing:-.5px; }
.eyebrow{
  font-family:var(--f-body); font-size:.72rem; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; color:var(--ice);
  display:inline-block; margin-bottom:1rem;
}
.eyebrow.muted{ color:var(--faint); }
.lead{ font-size:clamp(1.02rem,2.2vw,1.18rem); color:var(--muted); max-width:56ch; }
p{ margin:0 0 1rem; }
.tabular{ font-variant-numeric:tabular-nums; }

/* ---------- layout helpers ---------- */
.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.section{ padding-block:clamp(56px, 9vw, 120px); }
.section.tight{ padding-block:clamp(40px,6vw,72px); }
.bg-ink{ background:var(--ink); }
.bg-navy2{ background:var(--navy-2); }
.bg-light{ background:var(--cream); color:var(--ink-on-light); }
.bg-light .lead,.bg-light .muted{ color:var(--muted-on-light); }
.center{ text-align:center; }
.mx-auto{ margin-inline:auto; }
.grid{ display:grid; gap:clamp(18px,3vw,32px); }
.hide{ display:none !important; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  min-height:48px; padding:.85em 1.7em;
  font-size:.8rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  border-radius:var(--radius); border:1px solid transparent;
  transition:transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  cursor:pointer; white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--ice); color:#0A1826; }
.btn-primary:hover{ background:var(--ice-strong); }
.btn-ghost{ background:transparent; color:var(--text); border-color:var(--steel-2); }
.btn-ghost:hover{ border-color:var(--ice); color:var(--ice); }
.btn-light{ background:#0E1E2E; color:#fff; }
.btn-light:hover{ background:#1B3346; }
.btn-block{ width:100%; }
.btn-sm{ min-height:40px; padding:.5em 1.1em; font-size:.72rem; }
.btn[disabled]{ opacity:.45; cursor:not-allowed; }
.link-underline{ color:var(--ice); font-weight:500; border-bottom:1px solid rgba(143,192,222,.4); padding:1px 3px; border-radius:3px; transition:color .2s, border-color .2s, background .2s; }
.link-underline:hover{ color:var(--ice-strong); border-color:var(--ice-strong); background:rgba(143,192,222,.14); }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(14,30,46,.82); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(34,56,75,.7);
  padding-top:env(safe-area-inset-top);
}
.nav{ display:flex; align-items:center; justify-content:space-between; height:var(--header-h); gap:1rem; }
.nav-logo img{ height:30px; width:auto; aspect-ratio:988/495; object-fit:contain; }
.nav-links{ display:flex; align-items:center; gap:1.9rem; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:.76rem; letter-spacing:.14em; text-transform:uppercase; color:var(--silver);
  font-weight:500; position:relative; padding-block:.4rem; transition:color .2s;
}
.nav-links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--ice); transition:width .25s var(--ease); }
.nav-links a:hover,.nav-links a[aria-current="page"]{ color:var(--text); }
.nav-links a:hover::after,.nav-links a[aria-current="page"]::after{ width:100%; }
.nav-actions{ display:flex; align-items:center; gap:.4rem; }
.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; background:transparent; border:0; color:var(--silver); border-radius:var(--radius);
  transition:color .2s, background .2s; position:relative;
}
.icon-btn:hover{ color:var(--text); background:rgba(27,51,70,.6); }
.icon-btn svg{ width:20px; height:20px; }
.cart-count{
  position:absolute; top:5px; right:4px; min-width:17px; height:17px; padding:0 4px;
  background:var(--ice); color:#0A1826; font-size:.62rem; font-weight:700; line-height:17px;
  border-radius:9px; text-align:center; font-family:var(--f-body);
}
.cart-count[data-empty="1"]{ display:none; }
.burger{ display:none; }

/* mobile drawer */
.drawer{ position:fixed; inset:0; z-index:200; visibility:hidden; }
.drawer[data-open="1"]{ visibility:visible; }
.drawer-scrim{ position:absolute; inset:0; background:rgba(8,19,31,.55); opacity:0; transition:opacity .3s; }
.drawer[data-open="1"] .drawer-scrim{ opacity:1; }
.drawer-panel{
  position:absolute; top:0; right:0; height:100%; width:min(84vw,340px);
  background:var(--navy); border-left:1px solid var(--steel);
  transform:translateX(100%); transition:transform .32s var(--ease);
  display:flex; flex-direction:column; padding:calc(env(safe-area-inset-top) + 18px) 22px 22px;
}
.drawer[data-open="1"] .drawer-panel{ transform:translateX(0); }
.drawer-panel .close{ align-self:flex-end; }
.drawer-links{ list-style:none; margin:1.5rem 0 0; padding:0; display:flex; flex-direction:column; }
.drawer-links a{
  display:block; padding:1rem 0; font-size:1rem; letter-spacing:.08em; text-transform:uppercase;
  color:var(--silver); border-bottom:1px solid var(--steel); font-weight:500;
}
.drawer-links a:hover{ color:var(--ice); }

/* ---------- hero ---------- */
.hero{ position:relative; min-height:min(88svh,760px); display:flex; align-items:flex-end; overflow:hidden; }
.hero-media{ position:absolute; inset:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 38%; animation:heroKen 20s ease-in-out infinite alternate; transform-origin:60% 45%; }
@keyframes heroKen{ from{ transform:scale(1.02); } to{ transform:scale(1.11); } }
@media (prefers-reduced-motion: reduce){ .hero-media img{ animation:none; } }
.hero-media::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,19,31,.55) 0%, rgba(8,19,31,.15) 40%, rgba(8,19,31,.82) 100%); }
.hero-inner{ position:relative; z-index:2; padding-bottom:clamp(48px,8vw,90px); margin-right:auto; }
.hero-inner > *{ max-width:640px; }
.hero .display{ margin-bottom:1.1rem; }

/* marquee strip */
.strip{ background:var(--ink); border-block:1px solid var(--steel); overflow:hidden; }
.strip-track{ display:flex; gap:3rem; white-space:nowrap; padding-block:.9rem; animation:marq 26s linear infinite; }
.strip span{ font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--faint); display:inline-flex; gap:3rem; }
.strip span::after{ content:"◆"; color:var(--ice); font-size:.6rem; }
@keyframes marq{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .strip-track{ animation:none; justify-content:center; } }

/* ---------- feature split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(28px,5vw,72px); }
.split.rev .split-media{ order:2; }
.split-media img{ width:100%; height:100%; object-fit:cover; border-radius:var(--radius-lg); }
.split-media{ aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }

/* ---------- trust row ---------- */
.trust{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.trust-3{ grid-template-columns:repeat(3,1fr); max-width:960px; margin-inline:auto; }

/* image-forward CTA showcase */
.cta-showcase{ display:grid; grid-template-columns:1fr 1fr; background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.cta-showcase-media{ position:relative; min-height:360px; }
.cta-showcase-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cta-showcase-body{ padding:clamp(28px,4vw,60px); display:flex; flex-direction:column; justify-content:center; }
@media (max-width:820px){ .cta-showcase{ grid-template-columns:1fr; } .cta-showcase-media{ min-height:300px; } }
.trust-item{ text-align:center; padding:1.2rem .5rem; }
.trust-item svg{ width:26px; height:26px; color:var(--ice); margin-bottom:.6rem; }
.trust-item h4{ font-family:var(--f-body); font-size:.86rem; letter-spacing:.06em; text-transform:uppercase; margin:0 0 .25rem; }
.trust-item p{ font-size:.8rem; color:var(--muted); margin:0; }

/* ---------- product cards ---------- */
.product-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:clamp(16px,2.5vw,30px); }
/* home featured + shop: 4 equal cards filling the row (no empty track) */
[data-home-products],[data-shop-grid]{ grid-template-columns:repeat(4,1fr); }
@media (max-width:1000px){ [data-home-products],[data-shop-grid]{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:540px){ [data-home-products],[data-shop-grid]{ grid-template-columns:1fr; } }
.card{
  background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); overflow:hidden;
  display:flex; flex-direction:column; transition:transform .25s var(--ease), border-color .25s;
}
.card:hover{ transform:translateY(-4px); border-color:var(--steel-2); }
.card-media{ position:relative; aspect-ratio:1/1; background:var(--navy-3); overflow:hidden; }
.card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.card:hover .card-media img{ transform:scale(1.04); }
.card-badge{ position:absolute; top:12px; left:12px; background:rgba(8,19,31,.8); color:var(--ice);
  font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; padding:.35em .7em; border-radius:2px; font-weight:600; }
.card-body{ padding:1.1rem 1.2rem 1.3rem; display:flex; flex-direction:column; gap:.35rem; flex:1; }
.card-body h3{ font-family:var(--f-body); font-size:1rem; font-weight:600; letter-spacing:.01em; margin:0; }
.card-sub{ font-size:.78rem; color:var(--muted); }
.card-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:.7rem; }
.price{ font-family:var(--f-body); font-weight:600; font-size:1.02rem; }
.price .was{ color:var(--faint); text-decoration:line-through; font-weight:400; font-size:.85rem; margin-right:.4rem; }
.stars{ color:var(--gold); font-size:.8rem; letter-spacing:2px; }

/* ---------- product detail ---------- */
.pdp{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,4vw,60px); align-items:start; }
.gallery-main{ aspect-ratio:1/1; background:var(--navy-3); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.thumbs{ display:flex; gap:.6rem; margin-top:.7rem; flex-wrap:wrap; }
.thumb{ width:70px; height:70px; border-radius:var(--radius); overflow:hidden; border:1px solid var(--steel); padding:0; background:none; opacity:.7; transition:opacity .2s, border-color .2s; }
.thumb[aria-selected="true"]{ opacity:1; border-color:var(--ice); }
.thumb img{ width:100%; height:100%; object-fit:cover; }
.pdp-info h1{ font-size:clamp(1.9rem,4vw,2.6rem); margin-bottom:.3rem; }
.pdp-price{ font-family:var(--f-body); font-size:1.4rem; font-weight:600; margin:.4rem 0 1.2rem; }
.pdp-price .was{ color:var(--faint); text-decoration:line-through; font-size:1rem; font-weight:400; margin-right:.5rem; }
.opt-group{ margin:1.3rem 0; }
.opt-label{ display:block; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:.6rem; }
.opt-row{ display:flex; gap:.6rem; flex-wrap:wrap; }
.chip{ min-height:44px; padding:.5em 1.1em; background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius);
  font-size:.82rem; color:var(--silver); transition:border-color .2s,color .2s,background .2s; }
.chip[aria-pressed="true"]{ border-color:var(--ice); color:var(--text); background:var(--navy-3); }
.qty{ display:inline-flex; align-items:center; border:1px solid var(--steel); border-radius:var(--radius); overflow:hidden; }
.qty button{ width:44px; height:46px; background:var(--navy-2); border:0; color:var(--text); font-size:1.1rem; }
.qty button:hover{ background:var(--navy-3); }
.qty input{ width:48px; height:46px; text-align:center; background:transparent; border:0; color:var(--text); font-size:1rem; font-family:var(--f-body); }
.pdp-cta{ display:flex; gap:.8rem; margin-top:1.4rem; flex-wrap:wrap; }
.spec-list{ list-style:none; margin:1.6rem 0 0; padding:1.3rem 0 0; border-top:1px solid var(--steel); display:grid; grid-template-columns:1fr 1fr; gap:.7rem 1.6rem; }
.spec-list li{ display:flex; justify-content:space-between; gap:1rem; font-size:.86rem; border-bottom:1px dotted rgba(34,56,75,.8); padding-bottom:.5rem; }
.spec-list .k{ color:var(--muted); }
.accordion{ border-top:1px solid var(--steel); margin-top:1.4rem; }
.accordion details{ border-bottom:1px solid var(--steel); }
.accordion summary{ list-style:none; cursor:pointer; padding:1.05rem 0; display:flex; justify-content:space-between; align-items:center; font-weight:600; font-size:.92rem; }
.accordion summary::-webkit-details-marker{ display:none; }
.accordion summary::after{ content:"+"; color:var(--ice); font-size:1.3rem; line-height:1; }
.accordion details[open] summary::after{ content:"–"; }
.accordion .acc-body{ padding-bottom:1.1rem; color:var(--muted); font-size:.9rem; }

/* ---------- forms ---------- */
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:.5rem; }
.field .req{ color:var(--ice); }
.input,.select,.textarea{
  width:100%; min-height:48px; padding:.75em .9em; background:var(--navy-2); color:var(--text);
  border:1px solid var(--steel); border-radius:var(--radius); font-family:inherit; font-size:1rem; transition:border-color .2s;
}
.textarea{ min-height:130px; resize:vertical; }
.input:focus,.select:focus,.textarea:focus{ outline:none; border-color:var(--ice); }
.input::placeholder,.textarea::placeholder{ color:var(--faint); }
.field .help{ font-size:.76rem; color:var(--faint); margin-top:.4rem; }
.field .error{ font-size:.78rem; color:var(--danger); margin-top:.4rem; display:none; }
.field.invalid .input,.field.invalid .select,.field.invalid .textarea{ border-color:var(--danger); }
.field.invalid .error{ display:block; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.check{ display:flex; gap:.6rem; align-items:flex-start; font-size:.86rem; color:var(--muted); }
.check input{ margin-top:.25rem; width:18px; height:18px; accent-color:var(--ice); }

/* auth / panels */
.panel{ background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:clamp(22px,4vw,40px); }
.panel-narrow{ max-width:460px; margin-inline:auto; }
.tabs{ display:flex; gap:.5rem; margin-bottom:1.6rem; border-bottom:1px solid var(--steel); }
.tab{ background:none; border:0; color:var(--muted); padding:.8rem .2rem; margin-right:1.4rem; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600; border-bottom:2px solid transparent; }
.tab[aria-selected="true"]{ color:var(--text); border-color:var(--ice); }

/* ---------- cart ---------- */
.cart-grid{ display:grid; grid-template-columns:1.6fr .9fr; gap:clamp(24px,4vw,48px); align-items:start; }
.cart-line{ display:grid; grid-template-columns:88px 1fr auto; gap:1rem; padding:1.2rem 0; border-bottom:1px solid var(--steel); align-items:center; }
.cart-line img{ width:88px; height:88px; object-fit:cover; border-radius:var(--radius); }
.cart-line h4{ font-family:var(--f-body); font-size:.96rem; margin:0 0 .2rem; }
.cart-line .meta{ font-size:.78rem; color:var(--muted); }
.cart-line .rm{ background:none; border:0; color:var(--faint); font-size:.76rem; text-decoration:underline; padding:0; margin-top:.4rem; }
.cart-line .rm:hover{ color:var(--danger); }
.summary{ background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:1.5rem; position:sticky; top:calc(var(--header-h) + 16px); }
.summary .row{ display:flex; justify-content:space-between; padding:.55rem 0; font-size:.92rem; color:var(--muted); }
.summary .row.total{ color:var(--text); font-size:1.15rem; font-weight:600; border-top:1px solid var(--steel); margin-top:.6rem; padding-top:1rem; }
.empty-state{ text-align:center; padding:clamp(40px,8vw,90px) 1rem; }
.empty-state svg{ width:52px; height:52px; color:var(--faint); margin-bottom:1rem; }

/* ---------- tracking ---------- */
.track-timeline{ list-style:none; margin:2rem 0 0; padding:0; }
.track-timeline li{ position:relative; padding:0 0 2rem 2.4rem; }
.track-timeline li::before{ content:""; position:absolute; left:7px; top:4px; bottom:-4px; width:2px; background:var(--steel); }
.track-timeline li:last-child::before{ display:none; }
.track-timeline li::after{ content:""; position:absolute; left:0; top:3px; width:16px; height:16px; border-radius:50%; background:var(--navy); border:2px solid var(--steel); }
.track-timeline li.done::after{ background:var(--ice); border-color:var(--ice); }
.track-timeline li.active::after{ background:var(--navy); border-color:var(--ice); box-shadow:0 0 0 4px rgba(143,192,222,.18); }
.track-timeline h4{ font-family:var(--f-body); font-size:.94rem; margin:0 0 .2rem; }
.track-timeline .when{ font-size:.78rem; color:var(--muted); }

/* ---------- testimonials ---------- */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.quote{ background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:1.6rem; }
.quote .stars{ margin-bottom:.7rem; }
.quote p{ font-size:.94rem; color:var(--silver); }
.quote .who{ font-size:.8rem; color:var(--muted); margin-top:.8rem; }

/* ---------- newsletter ---------- */
.news{ background:linear-gradient(135deg,var(--navy-2),var(--ink)); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:clamp(28px,5vw,56px); text-align:center; }
.news form{ display:flex; gap:.6rem; max-width:440px; margin:1.4rem auto 0; }
.news input{ flex:1; }

/* ---------- legal / prose ---------- */
.prose{ max-width:none; }
.prose h2{ font-size:1.35rem; margin-top:2.2rem; }
.prose h3{ font-family:var(--f-body); font-size:1.02rem; font-weight:600; margin-top:1.6rem; }
.prose p,.prose li{ color:var(--muted); font-size:.95rem; }
.prose ul,.prose ol{ padding-left:1.2rem; }
.prose a{ color:var(--ice); border-bottom:1px solid rgba(143,192,222,.35); padding:0 2px; border-radius:3px; transition:color .2s, background .2s, border-color .2s; }
.prose a:hover{ color:var(--ice-strong); border-color:var(--ice-strong); background:rgba(143,192,222,.14); }
.legal-toc{ background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:1.2rem 1.4rem; margin-bottom:2rem; }
.legal-toc ul{ list-style:none; margin:.4rem 0 0; padding:0; columns:2; }
.legal-toc a{ font-size:.85rem; color:var(--silver); display:block; padding:.25rem 0; }
.note{ background:rgba(143,192,222,.08); border:1px solid var(--steel); border-left:3px solid var(--ice); border-radius:var(--radius); padding:1rem 1.2rem; font-size:.86rem; color:var(--muted); }

/* ---------- page hero (interior) ---------- */
.page-hero{ padding:clamp(48px,8vw,90px) 0 clamp(24px,4vw,40px); border-bottom:1px solid var(--steel); }
.crumbs{ font-size:.76rem; color:var(--faint); letter-spacing:.08em; margin-bottom:1rem; }
.crumbs a:hover{ color:var(--ice); }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); border-top:1px solid var(--steel); padding-top:clamp(48px,7vw,80px); }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2rem; }
.foot-brand img{ height:54px; width:auto; aspect-ratio:988/495; object-fit:contain; margin-bottom:1.1rem; }
.foot-brand p{ font-size:.86rem; color:var(--muted); max-width:32ch; }
.foot-col h4{ font-family:var(--f-body); font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; color:var(--silver); margin:0 0 1rem; }
.foot-col ul{ list-style:none; margin:0; padding:0; }
.foot-col li{ margin-bottom:.6rem; }
.foot-col a{ font-size:.86rem; color:var(--muted); transition:color .2s; }
.foot-col a:hover{ color:var(--ice); }
.foot-bottom{ margin-top:clamp(36px,6vw,64px); border-top:1px solid var(--steel); padding-block:1.5rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; }
.foot-bottom p{ font-size:.78rem; color:var(--faint); margin:0; }
.socials{ display:flex; gap:.5rem; }
.socials a{ width:38px; height:38px; border:1px solid var(--steel); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:var(--silver); transition:.2s; }
.socials a:hover{ border-color:var(--ice); color:var(--ice); }
.socials svg{ width:16px; height:16px; }
.pay-badges{ display:flex; gap:.45rem; align-items:center; flex-wrap:wrap; }
.pay-badges .pay{ background:#fff; border-radius:5px; height:28px; min-width:42px; display:inline-flex; align-items:center; justify-content:center; padding:0 7px; }
.pay-badges .pay svg{ height:16px; width:auto; display:block; }

/* floating WhatsApp button */
.wa-float{ position:fixed; right:clamp(16px,3vw,28px); bottom:calc(env(safe-area-inset-bottom) + clamp(16px,3vw,26px)); z-index:300; width:56px; height:56px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 26px rgba(0,0,0,.4); color:#fff; transition:transform .2s var(--ease), box-shadow .2s; }
.wa-float:hover{ transform:scale(1.07); box-shadow:0 10px 30px rgba(37,211,102,.4); }
.wa-float svg{ width:30px; height:30px; }
.wa-float::after{ content:""; position:absolute; inset:-4px; border-radius:50%; border:2px solid rgba(37,211,102,.5); animation:waPulse 2.4s ease-out infinite; }
@keyframes waPulse{ 0%{ transform:scale(1); opacity:.7; } 70%{ transform:scale(1.35); opacity:0; } 100%{ opacity:0; } }
@media (prefers-reduced-motion: reduce){ .wa-float::after{ animation:none; display:none; } }

/* ---------- toast ---------- */
.toast-wrap{ position:fixed; left:50%; bottom:calc(env(safe-area-inset-bottom) + 20px); transform:translateX(-50%); z-index:400; display:flex; flex-direction:column; gap:.5rem; width:min(92vw,380px); }
.toast{ background:var(--navy-2); border:1px solid var(--steel); border-left:3px solid var(--ice); border-radius:var(--radius); padding:.9rem 1.1rem; box-shadow:var(--shadow); font-size:.88rem; display:flex; gap:.7rem; align-items:center; animation:toastIn .3s var(--ease); }
.toast svg{ width:20px; height:20px; color:var(--ice); flex-shrink:0; }
@keyframes toastIn{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }

/* ---------- utilities ---------- */
.badge-inline{ display:inline-flex; align-items:center; gap:.4em; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ice); }
.divider{ height:1px; background:var(--steel); border:0; margin-block:clamp(40px,7vw,72px); }
.mt-1{ margin-top:1rem; } .mt-2{ margin-top:2rem; } .mb-0{ margin-bottom:0; }
.maxw-sm{ max-width:560px; } .maxw-md{ max-width:720px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px){
  .split,.pdp,.cart-grid{ grid-template-columns:1fr; }
  .split.rev .split-media{ order:0; }
  .quotes{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:2rem 1.5rem; }
  .trust{ grid-template-columns:1fr 1fr; }
  .summary{ position:static; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .burger{ display:inline-flex; }
  .form-row{ grid-template-columns:1fr; }
  .spec-list{ grid-template-columns:1fr; }
  .legal-toc ul{ columns:1; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .foot-brand{ grid-column:1 / -1; }
}
@media (max-width: 460px){
  .trust{ grid-template-columns:1fr 1fr; }
  .news form{ flex-direction:column; }
  .pdp-cta{ flex-direction:column; }
  .pdp-cta .btn{ width:100%; }
}

/* devices without hover: no hover-only reveals */
@media (hover: none){
  .card:hover{ transform:none; }
  .card:hover .card-media img{ transform:none; }
}

/* ============================================================
   SCROLL REVEAL + HERO ENTRANCE
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal-zoom{ opacity:0; transform:scale(.965); transition:opacity .8s var(--ease), transform .9s var(--ease); }
.reveal-zoom.in{ opacity:1; transform:none; }
.hero-inner > *{ animation:heroIn .85s var(--ease) both; }
.hero-inner > *:nth-child(1){ animation-delay:.06s; }
.hero-inner > *:nth-child(2){ animation-delay:.16s; }
.hero-inner > *:nth-child(3){ animation-delay:.30s; }
.hero-inner > *:nth-child(4){ animation-delay:.44s; }
@keyframes heroIn{ from{ opacity:0; transform:translateY(28px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-zoom{ opacity:1 !important; transform:none !important; transition:none !important; }
  .hero-inner > *{ animation:none !important; }
}

/* ============================================================
   PRODUCT DETAILS & CARE (aligned)
   ============================================================ */
.details-section{ }
.details-grid{ display:grid; grid-template-columns:1.25fr .75fr; gap:clamp(28px,4vw,56px); align-items:start; }
.spec-table{ width:100%; border-collapse:collapse; margin-top:1.2rem; }
.spec-table tr{ border-bottom:1px solid var(--steel); }
.spec-table td{ padding:.95rem 0; font-size:.95rem; vertical-align:top; }
.spec-table td.k{ color:var(--muted); width:42%; letter-spacing:.02em; }
.spec-table td.v{ color:var(--text); text-align:right; font-weight:400; }
.care-panel{ background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:clamp(20px,3vw,30px); }
.care-panel h3{ font-family:var(--f-body); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--silver); margin:0 0 .8rem; }
.care-panel h3:not(:first-child){ margin-top:1.6rem; padding-top:1.4rem; border-top:1px solid var(--steel); }
.care-panel p{ font-size:.9rem; color:var(--muted); margin:0 0 .6rem; }
.care-panel a{ color:var(--ice); }

/* ============================================================
   CATEGORIES (demo — mirrors reference collections)
   ============================================================ */
.cat-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:clamp(12px,1.4vw,20px); }
@media (max-width:1024px){ .cat-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .cat-grid{ grid-template-columns:repeat(2,1fr); } }
.cat-card{ display:flex; flex-direction:column; background:#fff; border:1px solid var(--border-light); border-radius:var(--radius-lg); overflow:hidden; transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.cat-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.cat-img{ aspect-ratio:1/1; display:block; padding:14px; background:linear-gradient(180deg,#f7f9fb,#e8eef3); }
.cat-img img{ width:100%; height:100%; object-fit:contain; mix-blend-mode:multiply; transition:transform .5s var(--ease); }
.cat-card:hover .cat-img img{ transform:scale(1.06); }
.cat-label{ padding:.85rem 1rem 1.05rem; text-align:center; }
.cat-label span{ display:block; font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:#7f93a1; margin-bottom:.22rem; }
.cat-label h3{ font-family:var(--f-body); font-size:.96rem; font-weight:700; letter-spacing:.02em; margin:0; color:#0E1E2E; }
.demo-flag{ display:inline-flex; align-items:center; gap:.5em; font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--faint); border:1px solid var(--steel); border-radius:999px; padding:.4em .9em; }
.demo-flag::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--ice); }

@media (max-width: 860px){
  .details-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   ACCOUNT DASHBOARD
   ============================================================ */
.account-layout{ display:grid; grid-template-columns:260px 1fr; gap:clamp(20px,3vw,40px); align-items:start; }
.account-menu{ background:var(--navy-2); border:1px solid var(--steel); border-radius:var(--radius-lg); padding:1.2rem; position:sticky; top:calc(var(--header-h) + 16px); }
.account-hello{ padding:.2rem .6rem 1rem; border-bottom:1px solid var(--steel); margin-bottom:.8rem; display:flex; flex-direction:column; gap:.4rem; }
.account-hello strong{ font-size:.95rem; }
.account-menu nav{ display:flex; flex-direction:column; }
.acct-link{ text-align:left; background:none; border:0; color:var(--silver); padding:.8rem .7rem; border-radius:var(--radius); font-size:.9rem; font-family:inherit; letter-spacing:.02em; transition:background .2s, color .2s; }
.acct-link:hover{ background:var(--navy-3); color:var(--text); }
.acct-link.active{ background:var(--navy-3); color:var(--ice); font-weight:700; }
.account-content{ min-height:320px; }
.acct-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:1.4rem; }
.acct-card{ background:var(--navy); border:1px solid var(--steel); border-radius:var(--radius); padding:1.1rem; display:flex; flex-direction:column; gap:.3rem; }
.acct-card .k{ font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.acct-card strong{ font-size:1.3rem; }
@media (max-width:860px){
  .account-layout{ grid-template-columns:1fr; }
  .account-menu{ position:static; }
  .account-menu nav{ flex-direction:row; flex-wrap:wrap; gap:.3rem; }
  .acct-cards{ grid-template-columns:1fr 1fr; }
}

/* ============================================================
   HEADER SEARCH + WISHLIST
   ============================================================ */
.wish-count{ position:absolute; top:5px; right:4px; min-width:17px; height:17px; padding:0 4px; background:var(--ice); color:#0A1826; font-size:.62rem; font-weight:700; line-height:17px; border-radius:9px; text-align:center; font-family:var(--f-body); }
.wish-count[data-empty="1"]{ display:none; }
.wish-link.on{ color:var(--ice); }

.search-panel{ border-top:1px solid var(--steel); background:var(--navy); max-height:0; overflow:hidden; transition:max-height .28s var(--ease); }
.search-panel.open{ max-height:72vh; overflow-y:auto; }
.search-inner{ display:flex; align-items:center; gap:.6rem; padding-block:1rem; }
.search-ico{ color:var(--muted); display:inline-flex; }
.search-ico svg{ width:20px; height:20px; }
#searchInput{ flex:1; background:transparent; border:0; color:var(--text); font-size:1.1rem; font-family:inherit; padding:.4rem 0; }
#searchInput:focus{ outline:none; }
#searchInput::-webkit-search-cancel-button,#searchInput::-webkit-search-decoration{ -webkit-appearance:none; appearance:none; }
.search-results{ padding-bottom:1.4rem; display:flex; flex-direction:column; gap:.25rem; }
.search-hint{ color:var(--faint); font-size:.9rem; padding:.4rem 0; }
.search-hit{ display:flex; align-items:center; gap:1rem; padding:.7rem; border-radius:var(--radius); transition:background .2s; }
.search-hit:hover{ background:var(--navy-2); }
.search-hit img{ width:52px; height:52px; object-fit:cover; border-radius:var(--radius); }
.search-hit > span{ display:flex; flex-direction:column; }
.search-hit strong{ font-size:.95rem; }
.search-hit em{ font-style:normal; font-size:.78rem; color:var(--muted); }
.search-hit .tabular{ margin-left:auto; font-weight:600; }

/* card wishlist heart */
.card{ position:relative; }
.card-wish{ position:absolute; top:10px; right:10px; z-index:3; width:36px; height:36px; border-radius:50%; background:rgba(8,19,31,.55); backdrop-filter:blur(4px); border:1px solid rgba(199,210,220,.18); color:#fff; display:inline-flex; align-items:center; justify-content:center; transition:background .2s, color .2s; }
.card-wish:hover{ background:rgba(8,19,31,.82); }
.card-wish svg{ width:18px; height:18px; }
.card-wish.on{ color:var(--ice); }

/* product page wishlist button */
.btn-wishlist{ width:48px; min-height:48px; border-radius:var(--radius); border:1px solid var(--steel-2); background:transparent; color:var(--silver); display:inline-flex; align-items:center; justify-content:center; transition:border-color .2s, color .2s; }
.btn-wishlist:hover{ border-color:var(--ice); color:var(--ice); }
.btn-wishlist.on{ color:var(--ice); border-color:var(--ice); }
.btn-wishlist svg{ width:20px; height:20px; }

@media (max-width:720px){
  /* keep Account + Cart reachable; wishlist stays in the menu drawer */
  .nav-actions .wish-link{ display:none; }
}

/* two-column accordion (FAQ full-width) */
.accordion.two-col{ display:grid; grid-template-columns:1fr 1fr; column-gap:clamp(28px,4vw,72px); border-top:0; }
.accordion.two-col > details{ align-self:start; border-top:1px solid var(--steel); }
@media (max-width:760px){ .accordion.two-col{ grid-template-columns:1fr; } .accordion.two-col > details:first-child{ border-top:0; } }

/* track order layout */
.track-layout{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(24px,3vw,44px); align-items:start; }
.track-layout .track-result-wrap{ grid-column:1 / -1; }
@media (max-width:820px){ .track-layout{ grid-template-columns:1fr; } }
