/* ==========================================================================
   DIAMOND MATTRESS — Design System
   Classical, luxury-retail aesthetic. Navy + cream + warm gold.
   Playfair Display (display serif) / Inter (body & UI)
   ========================================================================== */

:root{
  --navy-950:#12172a;
  --navy-900:#1b2340;
  --navy-800:#232c4f;
  --navy-700:#323a5c;
  --cream:#faf7f1;
  --cream-2:#f3ede0;
  --paper:#ffffff;
  --gold-600:#a97a34;
  --gold-500:#c6963f;
  --gold-400:#d7ac5c;
  --gold-100:#f3e4c4;
  --text:#23273a;
  --text-muted:#666c80;
  --text-soft:#8a8f9f;
  --border:#e8e2d3;
  --border-dark:rgba(255,255,255,0.12);
  --shadow-sm:0 2px 10px rgba(23,25,45,0.06);
  --shadow-md:0 10px 30px rgba(23,25,45,0.10);
  --shadow-lg:0 24px 60px rgba(23,25,45,0.16);
  --radius-sm:6px;
  --radius-md:12px;
  --radius-lg:20px;
  --font-display:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font-family:inherit; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; color:var(--navy-900); font-weight:700; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:2px solid var(--gold-500); outline-offset:3px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 40px; }

/* ---------- Reveal-on-scroll ----------
   IMPORTANT: content is visible by default. JS (main.js) adds the
   ".armed" state right before observing, then removes it on scroll-into-view.
   If JS fails to load for any reason, every section stays fully visible. */
.reveal, .reveal-stagger > *{ opacity:1; transform:none; transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.armed{ opacity:0; transform:translateY(26px); }
.reveal-stagger > *.armed{ opacity:0; transform:translateY(22px); }
.reveal.in-view, .reveal-stagger > *.in-view{ opacity:1; transform:translateY(0); }
.reveal-stagger > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger > *:nth-child(2){ transition-delay:.12s; }
.reveal-stagger > *:nth-child(3){ transition-delay:.19s; }
.reveal-stagger > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger > *:nth-child(5){ transition-delay:.33s; }
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}

/* ---------- Section rhythm ---------- */
.section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
.section-dark{ background:var(--navy-900); color:var(--gold-100); }
.section-panel{ background:var(--paper); }
.eyebrow{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold-600); margin-bottom:14px;
}
.section-dark .eyebrow{ color:var(--gold-400); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 48px; }
.section-head.left{ text-align:left; margin:0 0 40px; max-width:none; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); font-weight:600; line-height:1.2; }
.section-dark .section-head h2{ color:#fff; }
.section-head p{ margin-top:14px; color:var(--text-muted); font-size:15.5px; line-height:1.7; }
.section-dark .section-head p{ color:#c7cadd; }
.rule{ width:52px; height:2px; background:var(--gold-500); margin:16px auto 0; }
.section-head.left .rule{ margin:16px 0 0; }
.eyebrow-dash{ width:30px; height:1px; background:var(--gold-500); margin:0 auto 10px; }
.eyebrow-inline{ display:inline-flex; align-items:center; gap:10px; font-size:12.5px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold-600); margin-bottom:16px; }
.eyebrow-inline::before{ content:''; width:30px; height:1px; background:var(--gold-500); }
.accent-em{ font-style:italic; color:var(--gold-600); }
.section-dots-deco{
  position:absolute; top:8px; right:0; width:110px; height:90px; z-index:0; opacity:.4; pointer-events:none;
  background-image:radial-gradient(var(--gold-500) 1.5px, transparent 1.5px); background-size:14px 14px;
}
.rule-gem{ display:flex; align-items:center; justify-content:center; gap:10px; margin:16px auto 0; }
.rule-gem span{ width:34px; height:1px; background:var(--gold-500); }
.rule-gem i{ font-size:12px; color:var(--gold-500); }

.row-between{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }

/* ---------- Buttons ---------- */
.btn{
  --btn-pad-y:14px; --btn-pad-x:30px;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:var(--btn-pad-y) var(--btn-pad-x);
  font-size:13.5px; font-weight:700; letter-spacing:.2px;
  border-radius:var(--radius-sm); border:1px solid transparent; cursor:pointer;
  text-decoration:none; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{ background:var(--navy-900); color:#fff; }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); background:var(--navy-800); }
.btn-gold{ background:var(--gold-500); color:var(--navy-950); }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 12px 26px rgba(198,150,63,.35); background:var(--gold-400); }
.btn-outline{ background:transparent; color:var(--navy-900); border-color:var(--navy-900); }
.btn-outline:hover{ background:var(--navy-900); color:#fff; }
.btn-outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.55); }
.btn-outline-light:hover{ background:#fff; color:var(--navy-900); }
.btn-sm{ --btn-pad-y:9px; --btn-pad-x:18px; font-size:12px; }
.btn-block{ width:100%; }
.btn-ghost-link{
  font-size:12.5px; font-weight:700; color:var(--navy-800); text-decoration:none;
  border:1px solid var(--border); padding:9px 18px; border-radius:var(--radius-sm);
  transition:all .2s var(--ease); white-space:nowrap;
}
.btn-ghost-link:hover{ border-color:var(--navy-900); background:var(--navy-900); color:#fff; }

/* ---------- Announcement bar ---------- */
.announce-bar{ background:var(--navy-950); color:#c7cadd; font-size:13px; }
.announce-inner{ max-width:var(--container); margin:0 auto; padding:14px 40px; display:flex; align-items:center; gap:20px; }
.announce-track{ flex:1; overflow:hidden; }
.announce-track-inner{ display:flex; align-items:center; gap:40px; width:max-content; white-space:nowrap; animation:announceScroll 22s linear infinite; }
.announce-bar:hover .announce-track-inner{ animation-play-state:paused; }
.announce-item{ display:inline-flex; align-items:center; gap:8px; color:#c7cadd; font-weight:500; letter-spacing:.2px; }
.announce-item i{ color:var(--gold-400); font-size:12px; }
a.announce-link{ text-decoration:none; color:#e9e2c8; font-weight:600; }
a.announce-link:hover{ color:var(--gold-400); }
@keyframes announceScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.announce-phone{ text-decoration:none; color:#e9e2c8; font-weight:600; margin-left:auto; white-space:nowrap; flex-shrink:0; }

/* ---------- Header / Nav ---------- */
.site-header{ position:sticky; top:0; z-index:60; background:rgba(250,247,241,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--border); }
.site-header-inner{ max-width:var(--container); margin:0 auto; padding:16px 40px; display:flex; align-items:center; gap:32px; }
.brand{ display:flex; align-items:center; gap:9px; text-decoration:none; flex-shrink:0; }
.brand-mark{ font-size:20px; color:var(--gold-500); }
.brand-name{ font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--navy-900); letter-spacing:.5px; line-height:1.05; }
.brand-name em{ display:block; font-style:normal; font-family:var(--font-body); font-size:9.5px; letter-spacing:3.5px; color:var(--text-soft); font-weight:500; }
.main-nav{ display:flex; align-items:center; gap:30px; margin:0 auto; font-size:13.5px; font-weight:600; }
.main-nav a{ text-decoration:none; color:var(--navy-800); position:relative; padding:6px 0; }
.main-nav a::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold-500); transition:width .25s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--gold-600); }
.header-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.icon-btn{ background:none; border:none; font-size:17px; cursor:pointer; color:var(--navy-800); padding:4px; position:relative; text-decoration:none; display:inline-flex; align-items:center; }
.cart-icon-link{ position:relative; }
.cart-count-badge{
  position:absolute; top:-6px; right:-8px; background:var(--gold-500); color:var(--navy-950);
  font-size:10px; font-weight:800; line-height:1; min-width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:0 3px;
}
.header-cta{ }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; position:relative; z-index:90; }
.nav-toggle span{ width:22px; height:2px; background:var(--navy-900); border-radius:2px; transition:transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle.open span{ background:#fff; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.search-panel{ max-height:0; overflow:hidden; transition:max-height .3s var(--ease); border-bottom:1px solid transparent; }
.search-panel.open{ max-height:80px; border-color:var(--border); }
.search-panel-inner{ max-width:var(--container); margin:0 auto; padding:16px 40px; display:flex; gap:12px; align-items:center; }
.search-panel-inner form{ flex:1; display:flex; gap:10px; }
.search-panel-inner input{ flex:1; border:1px solid var(--border); border-radius:var(--radius-sm); padding:12px 16px; font-size:14px; font-family:inherit; }
.search-panel-inner button{ background:none; border:none; font-size:18px; cursor:pointer; color:var(--text-muted); }
.search-panel-inner form button{ font-size:16px; padding:0 6px; color:var(--gold-600); }
#searchClose{ font-size:22px; }

/* ---------- Hero ---------- */
.hero{ display:grid; grid-template-columns:1fr 1fr; align-items:stretch; min-height:640px; background:var(--cream); }
.hero-copy{ padding:70px 60px; display:flex; flex-direction:column; justify-content:center; }
.hero-eyebrow{ display:flex; align-items:center; gap:10px; font-size:12.5px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold-600); margin-bottom:20px; }
.hero-eyebrow::before{ content:''; width:30px; height:1px; background:var(--gold-500); }
.hero h1{ font-size:clamp(34px,4.6vw,54px); line-height:1.16; font-weight:700; color:var(--navy-950); }
.hero h1 em{ font-style:italic; color:var(--gold-600); }
.hero p{ font-size:15.5px; line-height:1.75; color:var(--text-muted); max-width:420px; margin:22px 0 32px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.rating-card{
  margin-top:34px; display:inline-flex; align-items:center; gap:14px; background:#fff;
  border:1px solid var(--border); border-radius:var(--radius-md); padding:14px 22px;
  box-shadow:var(--shadow-sm); width:fit-content;
}
.rating-card i{ font-size:20px; color:var(--gold-500); }
.rating-card b{ display:block; font-family:var(--font-display); font-size:17px; color:var(--navy-900); }
.rating-card span{ font-size:11px; color:var(--text-muted); }

.hero-visual{ position:relative; overflow:visible; padding:44px 48px 44px 24px; }

.hero-ring{
  position:absolute; top:6%; left:1%; width:300px; height:300px; max-width:36%; aspect-ratio:1/1;
  border:1px solid var(--gold-400); border-radius:50%; opacity:.55; z-index:1;
}
.hero-dots{
  position:absolute; top:44%; left:5%; width:64px; height:120px; z-index:1; opacity:.55;
  background-image:radial-gradient(var(--gold-500) 1.5px, transparent 1.5px);
  background-size:13px 13px;
}

.hero-photo-frame{
  position:relative; width:88%; height:100%; margin-left:auto; overflow:hidden; z-index:2;
  border-radius:190px 24px 24px 24px; box-shadow:var(--shadow-lg);
  background:linear-gradient(145deg, var(--cream-2), #eee6d3);
}
.hero-photo-frame::before{ content:''; position:absolute; inset:0; background:
  repeating-linear-gradient(115deg, rgba(198,150,63,.06) 0 2px, transparent 2px 34px); }
.hero-photo-hint{ position:absolute; top:46%; left:50%; transform:translate(-50%,-50%); font-size:38px; color:var(--gold-600); text-align:center; }
.hero-photo-hint-label{
  position:absolute; top:58%; left:50%; transform:translateX(-50%); width:78%; text-align:center;
  font-size:11px; font-weight:600; color:var(--gold-600); line-height:1.6;
}
.hero-photo-frame img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

.hero-tag{
  position:absolute; bottom:9%; right:8%; z-index:4; background:rgba(255,255,255,.94);
  border:1px solid var(--gold-400); border-radius:8px; padding:10px 18px; text-align:center;
  font-size:11.5px; font-weight:700; letter-spacing:1.5px; color:var(--navy-900);
}
.hero-tag i{ color:var(--gold-600); margin-right:6px; }
.hero-tag span{ display:block; font-size:8px; font-weight:500; letter-spacing:2.5px; color:var(--text-muted); margin-top:3px; }

.hero-badges{ position:absolute; top:6%; right:5%; display:flex; gap:12px; z-index:5; }
.hero-badge{
  background:#fff; border:1px solid var(--border); border-radius:12px; padding:16px 14px; width:112px;
  text-align:center; box-shadow:var(--shadow-md); transition:transform .3s var(--ease);
}
.hero-badge:hover{ transform:translateY(-4px); }
.hero-badge i{ font-size:19px; color:var(--gold-600); margin-bottom:9px; display:block; }
.hero-badge b{ display:block; font-size:11.5px; color:var(--navy-900); margin-bottom:4px; }
.hero-badge span{ font-size:9.5px; color:var(--text-muted); line-height:1.4; display:block; }

.hero-plant{ position:absolute; right:1%; top:36%; font-size:64px; color:#5f7a52; z-index:6; }

/* Placeholder "image" blocks — swap for real <img> once photos are added */
.ph{
  position:relative; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px;
  background:linear-gradient(145deg, var(--cream-2), #eee6d3);
  color:var(--gold-600); overflow:hidden;
}
.ph::before{ content:''; position:absolute; inset:0; z-index:0; background:
  repeating-linear-gradient(115deg, rgba(198,150,63,.06) 0 2px, transparent 2px 34px); }
.ph img{ position:absolute; inset:0; z-index:2; width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.ph .ph-icon{ position:relative; z-index:1; font-size:34px; }
.ph .ph-label{ position:relative; z-index:1; font-size:11.5px; font-weight:600; color:var(--gold-600); text-align:center; padding:0 16px; letter-spacing:.2px; max-width:220px; }
.ph.ph-lg .ph-icon{ font-size:46px; }

/* ---------- Trust strip (floating card, overlaps hero bottom edge) ---------- */
.trust-float{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:26px 36px; display:flex; align-items:center; justify-content:space-between;
  position:relative; z-index:20; margin-top:-46px; flex-wrap:wrap; gap:18px 14px;
}
.trust-divider{ width:1px; align-self:stretch; background:var(--border); }
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item .ti-icon{ font-size:22px; color:var(--gold-500); }
.trust-item b{ display:block; font-size:12.5px; font-weight:700; color:var(--navy-900); }
.trust-item span{ font-size:11px; color:var(--text-muted); }

/* ---------- Category / product cards ---------- */
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.cat-card{
  background:var(--paper); border:none; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-sm);
  text-decoration:none; color:inherit; transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.cat-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.card-media{ overflow:hidden; }
.cat-card .ph{ aspect-ratio:4/3; transition:transform .5s var(--ease); }
.cat-card:hover .ph{ transform:scale(1.06); }
.cat-card-body{ position:relative; z-index:1; overflow:hidden; padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.cat-watermark{ position:absolute; z-index:-1; right:-10px; bottom:-16px; font-size:92px; color:var(--gold-100); opacity:.7; pointer-events:none; }
.cat-card-thick{ font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gold-600); }
.cat-card h3{ font-size:19px; font-weight:700; }
.cat-card p{ font-size:12.8px; color:var(--text-muted); line-height:1.6; flex:1; }
.cat-card-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:6px; padding-top:14px; border-top:1px solid var(--border); }
.cat-card-price{ font-size:12px; color:var(--text-muted); }
.cat-card-price b{ display:block; font-size:16px; color:var(--navy-900); font-family:var(--font-display); }

.cat-badge{
  position:absolute; top:14px; left:14px; z-index:2; display:inline-flex; align-items:center; gap:6px;
  background:linear-gradient(135deg, var(--gold-500), var(--gold-600)); color:#fff; font-size:10.5px;
  font-weight:700; letter-spacing:.4px; text-transform:uppercase; padding:7px 12px; border-radius:20px;
  box-shadow:0 4px 12px rgba(169,122,52,.35);
}
.cat-badge i{ font-size:10px; }
.card-media{ position:relative; }

.cat-card-btn{
  display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; white-space:nowrap;
  padding:10px 16px; border-radius:8px; border:1.5px solid var(--navy-900); color:var(--navy-900);
  transition:background .2s var(--ease), color .2s var(--ease);
}
.cat-card:hover .cat-card-btn{ background:var(--navy-900); color:#fff; }
.cat-card-btn.featured{ background:var(--navy-900); color:#fff; }
.cat-card:hover .cat-card-btn.featured{ background:var(--gold-500); border-color:var(--gold-500); color:var(--navy-950); }

/* ---------- Layer / construction diagram (signature element) ---------- */
.layer-stack{ display:flex; flex-direction:column-reverse; gap:6px; }
.layer-row{
  display:flex; align-items:center; gap:16px; padding:14px 18px; border-radius:10px; background:var(--paper);
  border:1px solid var(--border); transform-origin:left center; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.layer-row:hover{ transform:translateX(6px) scale(1.015); box-shadow:var(--shadow-sm); border-color:var(--gold-400); }
.layer-row .layer-swatch{ width:34px; height:34px; border-radius:8px; flex-shrink:0; background:var(--gold-100); display:flex; align-items:center; justify-content:center; font-size:15px; color:var(--gold-600); }
.layer-row .layer-name{ font-size:13.5px; font-weight:700; color:var(--navy-900); }
.layer-row .layer-desc{ font-size:12px; color:var(--text-muted); }

/* ---------- Engineered for Sleep — homepage showcase ---------- */
.layers-showcase{ display:grid; grid-template-columns:0.85fr 1fr; gap:40px; align-items:start; }

.layers-photo-col{ position:relative; }
.layers-photo-wrap{ position:relative; }
.layers-photo{ aspect-ratio:1/1.05; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.layers-markers{ position:absolute; top:14%; bottom:14%; right:-22px; width:44px; display:flex; flex-direction:column; justify-content:space-between; align-items:center; }
.layers-marker-line{ position:absolute; top:14px; bottom:14px; left:50%; width:1px; background:var(--border); z-index:0; }
.layers-marker{
  position:relative; z-index:1; width:28px; height:28px; border-radius:50%; background:#fff;
  border:1.5px solid var(--gold-500); color:var(--gold-600); font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-sm);
}

.quickfacts-float{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  margin:-40px 30px 0; position:relative; z-index:2; padding:22px 26px;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.quickfact{ display:flex; align-items:center; gap:10px; }
.quickfact i{ font-size:18px; color:var(--gold-500); }
.quickfact b{ display:block; font-size:12.5px; font-weight:700; color:var(--navy-900); }
.quickfact span{ font-size:10.5px; color:var(--text-muted); }

.layers-list{ display:flex; flex-direction:column; gap:16px; }
.layer-card{
  display:flex; align-items:center; gap:18px; background:var(--paper); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:18px 20px; transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.layer-card:hover{ transform:translateX(6px); box-shadow:var(--shadow-sm); border-color:var(--gold-400); }
.layer-icon-avatar{
  position:relative; flex-shrink:0; width:52px; height:52px; border-radius:50%; background:var(--gold-100);
  display:flex; align-items:center; justify-content:center; font-size:19px; color:var(--gold-600);
}
.layer-card-badge{
  position:absolute; top:-6px; left:-6px; width:22px; height:22px; border-radius:50%; background:var(--gold-500);
  color:#fff; font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
}
.layer-card-content{ flex:1; min-width:0; }
.layer-card-content h4{ font-size:14.5px; font-weight:700; color:var(--navy-900); margin-bottom:5px; line-height:1.4; }
.layer-card-content p{ font-size:12px; color:var(--text-muted); line-height:1.55; }
.layer-thumb{ flex-shrink:0; width:64px; height:64px; border-radius:10px; }
.layer-thumb .ph-icon{ font-size:18px; }
.layer-thumb .ph-label{ display:none; }

/* ---------- Benefits (dark strip) ---------- */
.benefit-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:22px; max-width:1080px; margin:0 auto; text-align:center; }
.benefit-grid .b-icon{ font-size:26px; color:var(--gold-400); margin-bottom:10px; }
.benefit-grid p{ font-size:12.5px; color:#d3d6e6; line-height:1.5; }

/* ---------- Testimonials ---------- */
.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.review-card{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); padding:26px; transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.review-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.review-stars{ color:var(--gold-500); font-size:14px; margin-bottom:12px; letter-spacing:2px; }
.review-text{ font-size:13.6px; line-height:1.7; color:var(--text); margin-bottom:20px; font-style:italic; }
.review-who{ display:flex; align-items:center; gap:12px; }
.review-avatar{ width:38px; height:38px; border-radius:50%; background:var(--gold-100); color:var(--gold-600); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; }
.review-name{ font-size:13px; font-weight:700; color:var(--navy-900); }
.review-verified{ font-size:11px; color:var(--text-soft); }

/* ---------- Compare table ---------- */
.compare-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--paper); }
table.compare{ width:100%; border-collapse:collapse; min-width:760px; }
table.compare th, table.compare td{ padding:16px 20px; text-align:left; font-size:13px; border-bottom:1px solid var(--border); }
table.compare thead th{ font-family:var(--font-display); font-size:15px; font-weight:600; color:var(--navy-900); background:var(--cream-2); }
table.compare thead th:first-child{ background:transparent; }
table.compare tbody th{ font-weight:700; color:var(--text-muted); white-space:nowrap; font-size:12px; text-transform:uppercase; letter-spacing:.4px; }
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th{ border-bottom:none; }
table.compare td b.price{ color:var(--navy-900); font-family:var(--font-display); font-size:15px; }

/* ---------- Blog / articles ---------- */
.article-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.article-card{
  text-decoration:none; color:inherit; display:block; background:var(--paper); border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.article-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.article-media{ position:relative; overflow:hidden; }
.article-media .ph{ aspect-ratio:16/10; transition:transform .5s var(--ease); }
.article-card:hover .article-media .ph{ transform:scale(1.06); }
.article-ribbon{
  position:absolute; top:0; left:18px; z-index:2; width:34px; height:38px;
  background:linear-gradient(135deg, var(--gold-500), var(--gold-600)); color:#fff; font-size:14px;
  display:flex; align-items:center; justify-content:center; border-radius:0 0 6px 6px; box-shadow:var(--shadow-sm);
}
.article-body{ padding:22px 22px 24px; }
.article-category{ font-size:11px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:var(--gold-600); }
.article-body h4{ margin-top:9px; font-size:16.5px; font-weight:700; color:var(--navy-900); line-height:1.4; }
.article-rule{ width:36px; height:2px; background:var(--gold-400); margin:16px 0; }
.article-body p{ font-size:12.8px; color:var(--text-muted); line-height:1.65; margin-bottom:22px; }
.article-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.article-time{
  display:inline-flex; align-items:center; gap:6px; font-size:11.5px; color:var(--text-muted);
  border:1px solid var(--border); border-radius:20px; padding:6px 13px;
}
.article-time i{ color:var(--text-soft); font-size:11px; }
.article-readmore{ font-size:12.5px; font-weight:700; color:var(--navy-900); display:inline-flex; align-items:center; gap:6px; }

/* ---------- Newsletter ---------- */
.newsletter-band{ padding:0 40px 0; max-width:var(--container); margin:0 auto; }
.newsletter-inner{
  background:var(--navy-900); border-radius:var(--radius-lg); padding:48px 56px; display:flex; align-items:center;
  justify-content:space-between; gap:40px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.newsletter-inner::after{ content:'◆'; position:absolute; right:-30px; bottom:-40px; font-size:220px; color:rgba(255,255,255,.03); }
.newsletter-copy h2{ color:#fff; font-size:24px; margin-bottom:8px; }
.newsletter-copy p{ color:#c7cadd; font-size:13.5px; }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; position:relative; z-index:1; }
.newsletter-form input{ padding:13px 18px; border-radius:6px; border:none; font-size:13.5px; font-family:inherit; min-width:250px; outline:none; }
.newsletter-form button{ border:none; background:var(--gold-500); color:var(--navy-950); font-weight:700; padding:13px 24px; border-radius:6px; cursor:pointer; font-size:13.5px; transition:background .2s; }
.newsletter-form button:hover{ background:var(--gold-400); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-950); color:#a9adc2; padding:60px 0 0; margin-top:70px; }
.site-footer-inner{ max-width:var(--container); margin:0 auto; padding:0 40px 40px; display:grid; grid-template-columns:1.6fr 0.9fr 0.9fr 0.9fr 1.1fr; gap:30px; }
.footer-col h4{ font-family:var(--font-body); color:#fff; font-size:12.5px; font-weight:700; margin-bottom:16px; letter-spacing:.4px; }
.footer-col a, .footer-col p{ display:block; font-size:12.8px; text-decoration:none; color:#a9adc2; margin-bottom:10px; line-height:1.6; }
.footer-col a:hover{ color:var(--gold-400); }
.brand-footer .brand-name{ color:#fff; }
.brand-footer .brand-name em{ color:#8489a3; }
.footer-brand p{ margin:14px 0 0; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{ width:32px; height:32px; border-radius:50%; border:1px solid var(--border-dark); display:flex; align-items:center; justify-content:center; font-size:11px; margin:0; transition:background .2s, border-color .2s; }
.footer-social a:hover{ background:var(--gold-500); border-color:var(--gold-500); color:var(--navy-950); }
.footer-bottom{ border-top:1px solid var(--border-dark); padding:20px 40px; max-width:var(--container); margin:0 auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12px; }

/* ---------- Floating WhatsApp button (site-wide) ---------- */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:60; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:30px; box-shadow:0 10px 26px rgba(37,211,102,.45); text-decoration:none;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-float:hover{ transform:translateY(-3px) scale(1.04); box-shadow:0 14px 32px rgba(37,211,102,.55); }
.whatsapp-float::before{
  content:''; position:absolute; inset:0; border-radius:50%; background:#25D366; z-index:-1;
  animation:waPulse 2.4s ease-out infinite;
}
@keyframes waPulse{
  0%{ transform:scale(1); opacity:.55; }
  100%{ transform:scale(1.9); opacity:0; }
}
@media (max-width:640px){
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; font-size:26px; }
}
@media (prefers-reduced-motion: reduce){ .whatsapp-float::before{ animation:none; } }

/* ---------- Page hero (inner pages) — legacy, kept in case any page still refs it ---------- */
.page-hero{ background:var(--navy-900); padding:60px 0 54px; text-align:center; position:relative; overflow:hidden; }
.page-hero::before{ content:'◆'; position:absolute; font-size:260px; color:rgba(255,255,255,.025); right:-40px; top:-70px; }
.page-hero .eyebrow{ color:var(--gold-400); }
.page-hero h1{ color:#fff; font-size:clamp(28px,4vw,42px); font-weight:600; }
.breadcrumb{ margin-top:14px; font-size:12.5px; color:#9298b3; }
.breadcrumb a{ color:#c7cadd; text-decoration:none; }
.breadcrumb a:hover{ color:var(--gold-400); }

/* ---------- Page hero v2 (premium — About / Shop / Contact) ---------- */
.page-hero-v2{
  position:relative; overflow:hidden; background:linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 55%, #202a4d 100%);
  padding:74px 0 110px;
}
.page-hero-v2::before{
  content:''; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(135deg, transparent 48%, rgba(199,150,63,.10) 49%, transparent 50%),
    linear-gradient(45deg, transparent 48%, rgba(199,150,63,.07) 49%, transparent 50%);
  background-size:120px 120px, 90px 90px;
  background-position:0 0, 40px 20px;
}
.page-hero-v2::after{
  content:'◆'; position:absolute; font-size:340px; color:rgba(255,255,255,.02); right:-60px; bottom:-140px; line-height:1; pointer-events:none;
}
.phv2-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.2fr .8fr; gap:48px; align-items:center; }
.phv2-content{ text-align:center; max-width:640px; margin:0 auto; }
.phv2-content .phv2-icon-badge{
  width:52px; height:52px; margin:0 auto 16px; border-radius:50%; border:1px solid var(--border-dark);
  display:flex; align-items:center; justify-content:center; color:var(--gold-400); font-size:18px;
  background:rgba(255,255,255,.03);
}
.phv2-content .eyebrow{
  color:var(--gold-400); display:flex; align-items:center; justify-content:center; gap:10px;
}
.phv2-content .eyebrow::before, .phv2-content .eyebrow::after{ content:''; width:26px; height:1px; background:rgba(199,150,63,.5); }
.phv2-content h1{
  color:#fff; font-size:clamp(30px,4.6vw,48px); font-weight:600; line-height:1.15; margin:6px 0 18px;
}
.phv2-content h1 .gold-accent{ color:var(--gold-400); font-style:italic; font-weight:500; }
.phv2-content .phv2-desc{ color:#c7cadd; font-size:15px; line-height:1.75; max-width:520px; margin:0 auto; }
.phv2-features{ display:flex; justify-content:center; gap:30px; flex-wrap:wrap; margin-top:34px; }
.phv2-feature{ display:flex; flex-direction:column; align-items:center; gap:8px; width:88px; }
.phv2-feature i{
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(199,150,63,.4); color:var(--gold-400);
  display:flex; align-items:center; justify-content:center; font-size:16px;
}
.phv2-feature span{ font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; color:#dfe2ee; text-align:center; line-height:1.4; }
.phv2-actions{ display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:34px; }
.phv2-pill{
  display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:40px;
  border:1px solid var(--border-dark); font-size:12.5px; color:#9298b3; background:rgba(255,255,255,.02);
}
.phv2-pill a{ color:#c7cadd; text-decoration:none; display:inline-flex; align-items:center; gap:6px; }
.phv2-pill a:hover{ color:var(--gold-400); }
.phv2-pill .current{ color:var(--gold-400); font-weight:600; }
.phv2-side{ position:relative; display:flex; align-items:center; justify-content:center; }
.phv2-photo{
  position:relative; width:100%; aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); border:1px solid rgba(255,255,255,.08);
}
.phv2-photo .phv2-photo-media{ width:100%; height:100%; }
.phv2-photo-tag{
  position:absolute; left:16px; bottom:16px; background:rgba(18,23,42,.68); backdrop-filter:blur(4px);
  color:#fff; font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
  padding:8px 14px; border-radius:20px; display:flex; align-items:center; gap:8px;
}
.phv2-photo-tag i{ color:var(--gold-400); }
.phv2-wave{ position:absolute; left:0; right:0; bottom:-1px; width:100%; height:auto; display:block; z-index:1; }
@media (max-width:900px){
  .phv2-inner{ grid-template-columns:1fr; }
  .phv2-side{ order:-1; max-width:340px; margin:0 auto 8px; }
  .page-hero-v2{ padding:56px 0 90px; }
}
@media (max-width:560px){
  .phv2-features{ gap:18px; }
  .phv2-feature{ width:72px; }
}

/* ---------- Shop / filter ---------- */
.shop-toolbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:34px; flex-wrap:wrap; gap:16px; }
.shop-count{ font-size:13px; color:var(--text-muted); }
.sort-select{ padding:10px 14px; border:1px solid var(--border); border-radius:var(--radius-sm); font-family:inherit; font-size:13px; background:#fff; }

/* ---------- Product detail ---------- */
.product-layout{ display:grid; grid-template-columns:1.05fr 1fr; gap:56px; align-items:flex-start; }
.gallery-main{ aspect-ratio:1/1; border-radius:var(--radius-md); margin-bottom:14px; overflow:hidden; }
.gallery-main:hover .ph-icon, .gallery-main:hover img{ transform:scale(1.06); }
.gallery-main img, .gallery-main .ph-icon{ transition:transform .5s var(--ease); }
.gallery-thumbs{ display:grid; grid-template-columns:repeat(auto-fit,minmax(64px,1fr)); gap:10px; }

/* ---------- Compare slider ("See the Difference") ---------- */
.compare-wrap{ max-width:1080px; margin:0 auto; }
.compare-frame{
  position:relative; width:100%; aspect-ratio:16/8; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-lg); cursor:ew-resize; user-select:none;
  background:var(--cream-2);
}
.compare-img{ position:absolute; inset:0; }
.compare-media{ width:100%; height:100%; border-radius:0; }
.compare-before{ clip-path:inset(0 50% 0 0); }
.compare-animated .compare-before,
.compare-animated .compare-divider{ transition:clip-path 1s var(--ease), left 1s var(--ease); }
.compare-frame.dragging .compare-before,
.compare-frame.dragging .compare-divider{ transition:none; }
.compare-divider{
  position:absolute; top:0; bottom:0; left:50%; width:0;
  border-left:2px solid rgba(255,255,255,0.85); transform:translateX(-1px);
  display:flex; align-items:center; justify-content:center; pointer-events:none;
}
.compare-handle{
  pointer-events:none; width:44px; height:44px; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center; color:var(--navy-900);
  box-shadow:var(--shadow-md); font-size:15px;
}
.compare-tag{
  position:absolute; top:16px; padding:5px 13px; border-radius:20px; font-size:11px;
  font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:#fff;
  background:rgba(18,23,42,0.55); backdrop-filter:blur(4px); pointer-events:none;
}
.compare-tag-before{ left:16px; }
.compare-tag-after{ right:16px; }
@media (max-width:640px){
  .compare-frame{ aspect-ratio:4/5; border-radius:var(--radius-md); }
  .compare-handle{ width:36px; height:36px; font-size:13px; }
}
.gallery-thumbs .ph{ aspect-ratio:1/1; border-radius:8px; cursor:pointer; border:2px solid transparent; }
.gallery-thumbs [data-thumb].active .ph{ border-color:var(--gold-500); }
.product-info{ position:sticky; top:110px; }
.product-badge-row{ display:flex; gap:8px; margin-bottom:14px; }
.pill{ font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; padding:5px 11px; border-radius:20px; }
.pill-gold{ background:var(--gold-100); color:var(--gold-600); }
.pill-navy{ background:var(--navy-900); color:#fff; }
.product-info h1{ font-size:30px; font-weight:600; margin-bottom:10px; }
.product-tagline{ color:var(--text-muted); font-size:14.5px; line-height:1.7; margin-bottom:22px; }
.price-row{ display:flex; align-items:baseline; gap:12px; margin-bottom:6px; }
.price-now{ font-family:var(--font-display); font-size:30px; font-weight:700; color:var(--navy-900); }
.price-old{ font-size:15px; color:var(--text-soft); text-decoration:line-through; }
.price-note{ font-size:12px; color:var(--text-soft); margin-bottom:26px; }
.size-select-label{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--navy-900); margin-bottom:12px; display:flex; justify-content:space-between; }
.size-select-label span{ font-weight:500; text-transform:none; color:var(--text-muted); letter-spacing:0; }
.size-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin-bottom:26px; }
.size-chip{ border:1.5px solid var(--border); border-radius:var(--radius-sm); padding:16px 8px; text-align:center; cursor:pointer; background:#fff; transition:all .2s var(--ease); }
.size-chip-head{ display:flex; flex-direction:column; gap:4px; }
.size-chip span{ display:block; font-size:14px; font-weight:700; color:var(--navy-900); }
.size-chip-dims{ display:block; font-style:normal; font-size:10.5px; color:var(--text-soft); opacity:.85; }
.size-chip:hover{ border-color:var(--gold-400); }
.size-chip.active{ border-color:var(--navy-900); background:var(--navy-900); }
.size-chip.active span, .size-chip.active .size-chip-dims{ color:#fff; }
.qty-row{ display:flex; gap:12px; margin-bottom:20px; }
.qty-stepper{ display:flex; align-items:center; border:1.5px solid var(--border); border-radius:var(--radius-sm); }
.qty-stepper button{ background:none; border:none; width:38px; height:44px; font-size:16px; cursor:pointer; color:var(--navy-900); }
.qty-stepper input{ width:40px; border:none; text-align:center; font-size:14px; font-family:inherit; }
.spec-list{ margin-top:30px; border-top:1px solid var(--border); }
.spec-row{ display:flex; justify-content:space-between; gap:20px; padding:13px 0; border-bottom:1px solid var(--border); font-size:13px; }
.spec-row span:first-child{ color:var(--text-muted); font-weight:600; }
.spec-row span:last-child{ text-align:right; color:var(--navy-900); font-weight:600; max-width:100%; }
.trust-mini{ display:flex; gap:20px; margin-top:26px; flex-wrap:wrap; }
.trust-mini div{ display:flex; align-items:center; gap:8px; font-size:11.8px; color:var(--text-muted); font-weight:600; }

.related-heading{ margin:90px 0 30px; }

/* ---------- Contact / About extras ---------- */
.info-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:980px; margin-left:auto; margin-right:auto; }
.info-card{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px; text-align:center; transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.info-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.info-card-link{ display:block; text-decoration:none; cursor:pointer; }
.info-card .ic{ font-size:26px; color:var(--gold-500); margin-bottom:14px; }
.info-card h4{ font-size:15px; margin-bottom:8px; }
.info-card p{ font-size:13px; color:var(--text-muted); line-height:1.6; }

.contact-layout{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:flex-start; }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:12.5px; font-weight:700; color:var(--navy-900); margin-bottom:7px; }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:13px 15px; border:1.5px solid var(--border); border-radius:var(--radius-sm);
  font-family:inherit; font-size:13.8px; outline:none; transition:border-color .2s; background:#fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ border-color:var(--gold-500); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.map-ph{ aspect-ratio:16/11; border-radius:var(--radius-md); margin-top:26px; }

.story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.story-grid .ph{ aspect-ratio:4/3; border-radius:var(--radius-lg); }
.story-copy p{ color:var(--text-muted); font-size:14.5px; line-height:1.8; margin-bottom:16px; }
.stat-row{ display:flex; gap:36px; margin-top:26px; flex-wrap:wrap; }
.stat-row div b{ display:block; font-family:var(--font-display); font-size:28px; color:var(--navy-900); }
.stat-row div span{ font-size:11.5px; color:var(--text-muted); }

.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.value-card{ text-align:center; padding:30px 20px; }
.value-card .vc-icon{ width:56px; height:56px; border-radius:50%; background:var(--gold-100); color:var(--gold-600); display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 16px; }
.value-card h4{ font-size:14.5px; margin-bottom:8px; }
.value-card p{ font-size:12.5px; color:var(--text-muted); line-height:1.6; }

/* ---------- Video section ---------- */
.video-frame{
  position:relative; aspect-ratio:16/9; border-radius:var(--radius-lg); overflow:hidden;
  background:var(--navy-950); box-shadow:var(--shadow-lg);
}
.video-frame video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-frame .video-embed{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
.video-frame .ph{ position:absolute; inset:0; }
.video-frame .play-badge{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none;
}
.video-frame .play-badge i{
  width:74px; height:74px; border-radius:50%; background:rgba(255,255,255,.92); color:var(--navy-900);
  display:flex; align-items:center; justify-content:center; font-size:24px; box-shadow:var(--shadow-md);
}

/* ---------- Toast ---------- */
.toast{ position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--navy-900); color:#fff; padding:14px 26px; border-radius:var(--radius-sm); font-size:13.5px; font-weight:600; opacity:0; pointer-events:none; transition:all .3s var(--ease); z-index:200; box-shadow:var(--shadow-lg); }
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1080px){
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .benefit-grid{ grid-template-columns:repeat(3,1fr); }
  .review-grid, .article-grid{ grid-template-columns:repeat(2,1fr); }
  .site-footer-inner{ grid-template-columns:1fr 1fr 1fr; }
  .value-grid{ grid-template-columns:repeat(2,1fr); }
  .info-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:860px){
  .container{ padding:0 22px; }
  .site-header-inner, .announce-inner, .search-panel-inner{ padding-left:22px; padding-right:22px; }
  .newsletter-band, .site-footer-inner, .footer-bottom{ padding-left:22px; padding-right:22px; }

  .info-grid{ grid-template-columns:1fr; }
  .announce-phone{ display:none; }

  .nav-toggle{ display:flex; }
  .header-actions{ gap:6px; }
  .icon-btn{ font-size:16px; padding:6px; }
  .brand-name{ font-size:15px; }
  .brand-mark{ font-size:16px; }
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px; background:var(--navy-900);
    flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:6px; padding:100px 32px 32px;
    transform:translateX(100%); transition:transform .35s var(--ease); z-index:80;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{ color:#fff; font-size:16px; padding:12px 0; width:100%; border-bottom:1px solid var(--border-dark); }
  .main-nav a.active{ color:var(--gold-400); }
  .header-cta{ display:none; }

  .hero{ grid-template-columns:1fr; }
  .hero-copy{ padding:52px 22px 40px; order:2; }
  .hero-visual{ min-height:420px; order:1; padding:28px 22px; }
  .hero p{ max-width:none; }
  .hero-ring, .hero-dots, .hero-plant{ display:none; }
  .hero-photo-frame{ width:100%; border-radius:80px 20px 20px 20px; }
  .hero-badges{ top:auto; bottom:-24px; right:50%; transform:translateX(50%); gap:8px; }
  .hero-badge{ width:88px; padding:10px 8px; }
  .hero-badge span{ display:none; }
  .hero-tag{ bottom:6%; right:6%; padding:8px 12px; font-size:10px; }
  .rating-card{ margin-top:24px; }
  .trust-float{ margin-top:24px; padding:20px; justify-content:center; }
  .trust-divider{ display:none; }
  .trust-item{ width:45%; }

  .cat-grid{ grid-template-columns:1fr 1fr; gap:16px; }
  .benefit-grid{ grid-template-columns:repeat(2,1fr); }
  .review-grid, .article-grid{ grid-template-columns:1fr; }
  .story-grid, .product-layout, .contact-layout{ grid-template-columns:1fr; gap:32px; }
  .layers-showcase{ grid-template-columns:1fr; gap:28px; }
  .layers-markers{ right:8px; }
  .quickfacts-float{ margin:-32px 12px 0; padding:18px; flex-direction:column; gap:14px; }
  .layer-thumb{ display:none; }
  .section-dots-deco{ display:none; }
  .product-info{ position:static; }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .site-footer-inner{ grid-template-columns:1fr; gap:28px; }
  .newsletter-inner{ padding:34px 26px; flex-direction:column; align-items:flex-start; }
  .form-row{ grid-template-columns:1fr; }
  .size-grid{ grid-template-columns:repeat(3,1fr); }
  table.compare thead th:nth-child(4), table.compare tbody td:nth-child(4){ } /* keep all cols, scrollable */
}

@media (max-width:520px){
  .cat-grid{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr; }
  .size-grid{ grid-template-columns:repeat(2,1fr); }
  .section{ padding:60px 0; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .auth-card{ padding:30px 22px; }
  .checkout-section{ padding:20px 18px; }
  .order-summary-card{ padding:22px 18px; }
  .cart-row{ padding:16px; gap:14px; }
  .cart-row-media{ width:72px; height:72px; }
  .cart-row-actions{ flex-wrap:wrap; gap:8px; }
  .payment-option{ flex-direction:column; text-align:center; gap:8px; }
  .mini-cart-row{ flex-direction:column; gap:2px; }
  .account-avatar{ width:56px; height:56px; }
  .hero-ctas .btn{ width:100%; }
  #searchToggle{ display:none; }
  .site-header-inner{ padding-left:16px; padding-right:16px; gap:14px; }
  .brand-name em{ letter-spacing:2px; }
}
/* ==========================================================================
   Store: Cart / Checkout / Account / Auth
   ========================================================================== */

/* ---------- Shared: auth card ---------- */
.auth-shell{ max-width:440px; margin:0 auto; }
.auth-card{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px 38px; box-shadow:var(--shadow-sm); }
.auth-card h1{ font-size:24px; margin-bottom:8px; }
.auth-card .auth-sub{ font-size:13.5px; color:var(--text-muted); margin-bottom:28px; }
.auth-error{ background:#fdecec; color:#b23b3b; font-size:13px; padding:12px 16px; border-radius:8px; margin-bottom:20px; }
.auth-success{ background:#eaf7ee; color:#2f7a44; font-size:13px; padding:12px 16px; border-radius:8px; margin-bottom:20px; }
.auth-switch{ text-align:center; margin-top:22px; font-size:13px; color:var(--text-muted); }
.auth-switch a{ color:var(--gold-600); font-weight:700; text-decoration:none; }
.auth-switch a:hover{ text-decoration:underline; }

/* ---------- Cart page ---------- */
.cart-layout{ display:grid; grid-template-columns:1.6fr 1fr; gap:36px; align-items:flex-start; }
.cart-items{ display:flex; flex-direction:column; gap:16px; }
.cart-row{
  display:flex; align-items:center; gap:20px; background:var(--paper); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:18px 22px; box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.cart-row:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--gold-400); }
.cart-row-media{ width:92px; height:92px; border-radius:12px; flex-shrink:0; }
.cart-row-media .ph-icon{ font-size:22px; }
.cart-row-media .ph-label{ display:none; }
.cart-row-info{ flex:1; min-width:0; }
.cart-row-pill{
  display:inline-block; font-size:10px; font-weight:700; letter-spacing:.4px; text-transform:uppercase;
  color:var(--gold-600); background:var(--gold-100); padding:4px 10px; border-radius:20px; margin-bottom:8px;
}
.cart-row-info h4{ font-size:15.5px; font-weight:700; color:var(--navy-900); margin-bottom:5px; }
.cart-row-meta{ font-size:12px; color:var(--text-muted); display:block; margin-bottom:4px; }
.cart-row-unit{ font-size:11.5px; color:var(--text-soft); display:block; }
.cart-row-price{ font-size:16px; font-weight:700; color:var(--navy-900); font-family:var(--font-display); white-space:nowrap; }
.cart-row-actions{ display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.cart-remove-btn{
  background:none; border:none; color:var(--text-soft); font-size:12.5px; cursor:pointer; display:flex; align-items:center; gap:5px;
  transition:color .2s;
}
.cart-remove-btn:hover{ color:#b23b3b; }
.cart-qty-form{ display:flex; align-items:center; gap:0; }
.cart-qty-form .qty-stepper{ border-color:var(--border); }
.cart-qty-form .qty-stepper button:hover{ background:var(--cream-2); }
.cart-qty-form .qty-stepper input{ width:34px; }

.cart-continue-link{
  display:inline-flex; align-items:center; gap:8px; margin-top:8px; font-size:13px; font-weight:700;
  color:var(--navy-800); text-decoration:none; transition:color .2s, gap .2s;
}
.cart-continue-link:hover{ color:var(--gold-600); gap:11px; }

.cart-empty{ text-align:center; padding:80px 20px; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
.cart-empty i{ font-size:48px; color:var(--gold-400); margin-bottom:20px; }
.cart-empty h2{ font-size:21px; margin-bottom:10px; }
.cart-empty p{ color:var(--text-muted); font-size:13.5px; margin-bottom:26px; }

.order-summary-card{
  background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 26px;
  position:sticky; top:110px; box-shadow:var(--shadow-md);
}
.order-summary-card h3{ font-size:16.5px; margin-bottom:20px; }
.summary-row{ display:flex; justify-content:space-between; font-size:13.5px; color:var(--text-muted); padding:10px 0; border-bottom:1px solid var(--border); }
.summary-row b{ color:var(--navy-900); font-weight:600; }
.summary-free{ color:#2f7a44 !important; font-weight:700 !important; }
.summary-row.total{ border-bottom:none; padding-top:16px; }
.summary-row.total span{ font-size:15px; font-weight:700; color:var(--navy-900); }
.summary-row.total b{ font-family:var(--font-display); font-size:21px; color:var(--navy-900); }
.summary-note{ display:flex; align-items:flex-start; gap:8px; font-size:11.8px; color:var(--text-soft); margin-top:14px; line-height:1.5; }
.summary-note i{ color:var(--gold-500); margin-top:2px; }
.summary-trust-row{ display:flex; flex-direction:column; gap:12px; margin-top:22px; padding-top:20px; border-top:1px solid var(--border); }
.summary-trust-item{ display:flex; align-items:center; gap:10px; font-size:12.5px; color:var(--text-muted); font-weight:600; }
.summary-trust-item i{ color:var(--gold-500); font-size:15px; width:18px; text-align:center; }

/* ---------- Checkout ---------- */
.checkout-layout{ display:grid; grid-template-columns:1.6fr 1fr; gap:36px; align-items:flex-start; }
.checkout-section{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px 26px; margin-bottom:22px; }
.checkout-section h3{ font-size:15.5px; margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.checkout-section h3 i{ color:var(--gold-500); font-size:14px; }
.payment-option{
  display:flex; align-items:center; gap:14px; border:1.5px solid var(--gold-400); background:var(--gold-100);
  border-radius:var(--radius-sm); padding:16px 18px;
}
.payment-option i{ font-size:20px; color:var(--gold-600); }
.payment-option b{ display:block; font-size:13.5px; color:var(--navy-900); }
.payment-option span{ font-size:12px; color:var(--text-muted); }
.mini-cart-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:18px; max-height:280px; overflow-y:auto; }
.mini-cart-row{ display:flex; justify-content:space-between; gap:10px; font-size:12.5px; }
.mini-cart-row .mc-name{ color:var(--navy-900); font-weight:600; }
.mini-cart-row .mc-meta{ color:var(--text-soft); font-size:11px; display:block; }
.mini-cart-row .mc-price{ color:var(--navy-900); font-weight:700; white-space:nowrap; }

/* ---------- Account dashboard ---------- */
.account-layout{ display:grid; grid-template-columns:280px 1fr; gap:32px; align-items:flex-start; }
.account-profile-card{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px 24px; text-align:center; position:sticky; top:110px; }
.account-avatar{
  width:66px; height:66px; border-radius:50%; background:var(--gold-100); color:var(--gold-600);
  display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:700; margin:0 auto 16px;
}
.account-profile-card h3{ font-size:16px; margin-bottom:4px; }
.account-profile-card p{ font-size:12.5px; color:var(--text-muted); margin-bottom:20px; word-break:break-word; }
.account-nav{ display:flex; flex-direction:column; gap:4px; text-align:left; }
.account-nav a{
  display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:8px; font-size:13px; font-weight:600;
  color:var(--navy-800); text-decoration:none; transition:background .2s;
}
.account-nav a:hover, .account-nav a.active{ background:var(--cream-2); color:var(--navy-950); }
.account-nav a.logout-link{ color:#b23b3b; margin-top:8px; border-top:1px solid var(--border); padding-top:14px; }

.order-card{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); padding:22px 24px; margin-bottom:18px; }
.order-card-head{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:10px; padding-bottom:16px; margin-bottom:16px; border-bottom:1px solid var(--border); }
.order-card-head .oc-id{ font-size:14.5px; font-weight:700; color:var(--navy-900); }
.order-card-head .oc-date{ font-size:12px; color:var(--text-muted); }
.status-pill{ font-size:11px; font-weight:700; letter-spacing:.3px; text-transform:uppercase; padding:6px 13px; border-radius:20px; }
.status-processing{ background:var(--gold-100); color:var(--gold-600); }
.status-awaiting{ background:#f1f0fc; color:#5a1ec9; }
.status-shipped{ background:#e5edfb; color:#2d5fd4; }
.status-delivered{ background:#eaf7ee; color:#2f7a44; }
.status-cancelled{ background:#fdecec; color:#b23b3b; }
.order-card-items{ display:flex; flex-direction:column; gap:10px; margin-bottom:14px; }
.order-card-item{ display:flex; justify-content:space-between; font-size:13px; color:var(--text-muted); }
.order-card-item b{ color:var(--navy-900); }
.order-card-foot{ display:flex; justify-content:space-between; align-items:center; padding-top:14px; border-top:1px solid var(--border); }
.order-card-foot b{ font-family:var(--font-display); font-size:16px; color:var(--navy-900); }

.account-empty{ text-align:center; padding:60px 20px; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); }
.account-empty i{ font-size:38px; color:var(--gold-400); margin-bottom:16px; }

/* ---------- Order confirmation ---------- */
.confirm-shell{ max-width:640px; margin:0 auto; text-align:center; }
.confirm-check{ width:76px; height:76px; border-radius:50%; background:#eaf7ee; color:#2f7a44; font-size:32px; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.confirm-shell h1{ font-size:26px; margin-bottom:10px; }
.confirm-shell p{ color:var(--text-muted); font-size:14px; margin-bottom:8px; }
.confirm-order-id{ display:inline-block; background:var(--cream-2); font-weight:700; color:var(--navy-900); padding:8px 18px; border-radius:8px; margin:14px 0 30px; letter-spacing:.5px; }

@media (max-width:860px){
  .cart-layout, .checkout-layout, .account-layout{ grid-template-columns:1fr; gap:24px; }
  .order-summary-card{ position:static; }
  .account-profile-card{ position:static; }
  .cart-row{ flex-wrap:wrap; }
  .cart-row-actions{ flex-direction:row; align-items:center; width:100%; justify-content:space-between; margin-top:8px; }
}
/* ---------- FAQ accordion ---------- */
.faq-list{ max-width:840px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; transition:box-shadow .3s var(--ease), border-color .3s var(--ease); }
.faq-item.open{ border-color:var(--gold-400); box-shadow:var(--shadow-md); }
.faq-question{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; background:none; border:0; cursor:pointer; padding:20px 24px; text-align:left; font-family:var(--font-display); font-size:15.5px; font-weight:700; color:var(--navy-900); }
.faq-question i{ flex-shrink:0; color:var(--gold-500); transition:transform .35s var(--ease); }
.faq-item.open .faq-question i{ transform:rotate(180deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease), padding .4s var(--ease); padding:0 24px; }
.faq-item.open .faq-answer{ max-height:260px; padding:0 24px 22px; }
.faq-answer p{ color:var(--text-muted); font-size:14px; line-height:1.7; margin:0; }

/* ---------- Animated stats band ---------- */
.stats-section{ position:relative; background:var(--navy-950); overflow:hidden; }
.stats-section::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 20%, rgba(215,172,92,.14), transparent 45%), radial-gradient(circle at 80% 80%, rgba(215,172,92,.10), transparent 45%); pointer-events:none; }
.stats-section .section-head h2, .stats-section .section-head .eyebrow{ color:#fff; }
.stats-grid{ position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.stat-box{ text-align:center; padding:34px 18px; border:1px solid var(--border-dark); border-radius:var(--radius-lg); background:rgba(255,255,255,.03); transition:transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease); }
.stat-box:hover{ transform:translateY(-8px); background:rgba(215,172,92,.08); border-color:var(--gold-400); }
.stat-num{ font-family:var(--font-display); font-size:44px; font-weight:800; color:var(--gold-400); line-height:1; margin-bottom:10px; }
.stat-box span{ color:#c7cadd; font-size:13px; letter-spacing:.3px; }
@media (max-width:860px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Blog listing / detail ---------- */
.blog-hero{ text-align:center; max-width:680px; margin:0 auto 46px; }
.blog-post-body{ max-width:760px; margin:0 auto; }
.blog-post-body p{ color:var(--text-muted); font-size:15.5px; line-height:1.85; margin-bottom:18px; }
.blog-post-body h3{ font-family:var(--font-display); color:var(--navy-900); font-size:20px; margin:30px 0 12px; }
.blog-post-hero{ position:relative; border-radius:var(--radius-lg); overflow:hidden; margin-bottom:34px; aspect-ratio:16/8; }
.blog-post-hero img{ width:100%; height:100%; object-fit:cover; display:block; }
.blog-post-hero .ph{ position:absolute; inset:0; }
.blog-post-meta{ display:flex; align-items:center; gap:18px; justify-content:center; color:var(--text-soft); font-size:13px; margin-bottom:10px; }
.blog-post-title{ text-align:center; font-size:32px; max-width:760px; margin:0 auto 22px; }
.blog-back{ display:inline-flex; align-items:center; gap:8px; text-decoration:none; color:var(--navy-900); font-weight:600; font-size:13.5px; margin-bottom:26px; }
.blog-back:hover{ color:var(--gold-500); }

/* ---------- Legal / policy pages ---------- */
.policy-body{ max-width:820px; margin:0 auto; }
.policy-body h2{ font-family:var(--font-display); color:var(--navy-900); font-size:20px; margin:30px 0 12px; }
.policy-body h2:first-child{ margin-top:0; }
.policy-body p, .policy-body li{ color:var(--text-muted); font-size:14.5px; line-height:1.8; margin-bottom:12px; }
.policy-body ul{ padding-left:20px; margin-bottom:16px; }
.policy-updated{ text-align:center; color:var(--text-soft); font-size:13px; margin-bottom:40px; }

/* ---------- Workshop gallery (About) ---------- */
.workshop-gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.workshop-photo{ position:relative; aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden; }
.workshop-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s var(--ease); }
.workshop-photo:hover img{ transform:scale(1.06); }
.workshop-caption{ position:absolute; left:0; right:0; bottom:0; padding:18px 18px 14px; background:linear-gradient(0deg, rgba(18,23,42,.88), transparent); color:#fff; font-size:13px; font-weight:600; }
@media (max-width:860px){ .workshop-gallery{ grid-template-columns:1fr 1fr; } .workshop-gallery a:last-child{ grid-column:span 2; } }

/* ---------- Journey / milestones timeline (About) ---------- */
.journey-timeline{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; position:relative; }
.journey-step{ text-align:center; padding:26px 18px; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-md); position:relative; transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.journey-step:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.journey-year{ font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--gold-500); margin-bottom:8px; }
.journey-step h4{ font-size:14px; margin-bottom:6px; color:var(--navy-900); }
.journey-step p{ font-size:12.5px; color:var(--text-muted); line-height:1.6; margin:0; }
@media (max-width:860px){ .journey-timeline{ grid-template-columns:1fr 1fr; } }

/* ---------- CTA banner (About / bottom of pages) ---------- */
.cta-banner{ position:relative; border-radius:var(--radius-lg); overflow:hidden; padding:64px 40px; text-align:center; isolation:isolate; }
.cta-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.cta-banner::before{ content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(18,23,42,.92), rgba(18,23,42,.75)); z-index:-1; }
.cta-banner h2{ color:#fff; font-size:clamp(24px,3.4vw,34px); margin-bottom:12px; }
.cta-banner p{ color:#c7cadd; max-width:520px; margin:0 auto 26px; font-size:14.5px; }

/* ---------- Contact: support team split, trust strip, map ---------- */
.contact-support-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.contact-support-grid .ph, .contact-support-grid img{ border-radius:var(--radius-lg); aspect-ratio:4/3; object-fit:cover; width:100%; display:block; }
.contact-trust-row{ margin-top:0; }
.map-embed{ aspect-ratio:16/11; border-radius:var(--radius-md); margin-top:26px; overflow:hidden; border:1px solid var(--border); }
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }
@media (max-width:860px){ .contact-support-grid{ grid-template-columns:1fr; gap:28px; } }

/* ---------- Checkout: guest vs login/register choice ---------- */
.checkout-choice{ display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:900px; margin:0 auto; }
.checkout-choice-card{ position:relative; display:block; text-decoration:none; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px 30px; text-align:center; transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.checkout-choice-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--gold-400); }
.checkout-choice-card.is-highlighted{ border-color:var(--gold-500); background:linear-gradient(180deg, var(--gold-100), var(--paper) 55%); }
.ccc-badge{ position:absolute; top:14px; right:14px; background:var(--navy-900); color:var(--gold-100); font-size:10.5px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; padding:5px 10px; border-radius:20px; }
.ccc-icon{ width:56px; height:56px; margin:0 auto 16px; border-radius:50%; background:var(--cream-2); display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--gold-600); }
.checkout-choice-card h3{ font-family:var(--font-display); font-size:18px; color:var(--navy-900); margin-bottom:8px; }
.checkout-choice-card p{ font-size:13.5px; color:var(--text-muted); line-height:1.6; margin-bottom:18px; }
.ccc-cta{ font-size:13.5px; font-weight:700; color:var(--navy-900); display:inline-flex; align-items:center; gap:6px; }
.checkout-choice-card:hover .ccc-cta{ color:var(--gold-600); }
@media (max-width:680px){ .checkout-choice{ grid-template-columns:1fr; } }

.guest-banner{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; background:var(--cream-2); border:1px solid var(--border); border-radius:var(--radius-md); padding:14px 20px; margin-bottom:26px; font-size:13.5px; color:var(--navy-900); }
.guest-banner i{ color:var(--gold-500); margin-right:6px; }
.guest-banner a{ color:var(--gold-600); font-weight:700; text-decoration:none; }
.guest-banner a:hover{ text-decoration:underline; }

/* ---------- Warranty tag badges ---------- */
.warranty-tag{ display:inline-flex; align-items:center; gap:6px; background:var(--navy-900); color:var(--gold-100); font-size:11.5px; font-weight:700; letter-spacing:.2px; padding:6px 13px; border-radius:20px; white-space:nowrap; line-height:1.3; }
.warranty-tag i{ color:var(--gold-400); font-size:12.5px; flex-shrink:0; margin-right:2px; min-width:13px; text-align:center; }
.warranty-tag-text{ display:inline-block; }
.warranty-tag.is-light{ background:var(--gold-100); color:var(--navy-900); border:1.5px solid var(--gold-500); box-shadow:0 2px 6px rgba(198,150,63,.18); }
.warranty-tag.is-light i{ color:var(--gold-600); }
.cat-card-body .warranty-tag{ margin:2px 0 12px; }