/* ============================================================
   SKYSTORE — Premium Light / Electric-Blue  (v3, editorial craft)
   Display: Fraunces · Body: Hanken Grotesk · one disciplined accent
   Same class names as before — engine unchanged.
   ============================================================ */

:root {
  /* Surfaces — clean cool paper */
  --bg: #f7f8fb;
  --bg-2: #eef1f6;          /* alternating / sunk sections */
  --surface: #ffffff;
  --surface-2: #f3f5f9;
  --surface-3: #eef1f6;
  --line: #e4e7ee;          /* hairline */
  --line-strong: #d3d8e2;

  /* Ink */
  --text: #11151c;
  --muted: #4c5667;
  --faint: #8a93a4;

  /* Accent — electric blue, used with restraint */
  --acc: #1657f0;
  --acc-ink: #0f43c4;
  --acc-2: #18b4ff;
  --acc-soft: #e9f0ff;
  --grad: linear-gradient(120deg, #1657f0, #18b4ff);

  /* Type — premium designer pairing: Sora (display) + Inter (text) */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid scale */
  --step--1: clamp(0.80rem, 0.77rem + 0.12vw, 0.86rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.18vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 1.4vw, 2.9rem);
  --step-4:  clamp(2.6rem, 2rem + 2.4vw, 4rem);
  --step-5:  clamp(3.1rem, 2.3rem + 3.6vw, 5.2rem);

  /* Spacing */
  --section-y: clamp(4.5rem, 3rem + 6vw, 8rem);
  --maxw: 1220px;

  /* Radii — restrained */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  /* Shadows — single soft layer */
  --shadow-sm: 0 1px 2px rgba(17,21,28,.04), 0 4px 14px rgba(17,21,28,.05);
  --shadow: 0 10px 30px -12px rgba(17,21,28,.14);
  --shadow-lg: 0 30px 70px -30px rgba(17,21,28,.30);
  --shadow-acc: 0 12px 26px -10px rgba(22,87,240,.45);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur-1: 200ms; --dur-2: 460ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01";
}
/* faint grain for atmosphere */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input { font: inherit; }

/* Layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); position: relative; z-index: 1; }
.section { padding: var(--section-y) 0; position: relative; z-index: 1; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.025em; color: var(--text); font-optical-sizing: auto; text-wrap: balance; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--acc);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--acc); opacity: .55; }
.h-xl { font-size: var(--step-5); font-weight: 700; letter-spacing: -0.035em; }
.h-lg { font-size: var(--step-4); font-weight: 600; }
.h-md { font-size: var(--step-2); }
.lead { color: var(--muted); font-size: var(--step-1); max-width: 60ch; text-wrap: pretty; line-height: 1.55; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--acc); }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0.85em 1.5em; border-radius: 10px; font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease), background var(--dur-1), border-color var(--dur-1), color var(--dur-1);
  white-space: nowrap; cursor: pointer; letter-spacing: -0.01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--acc); color: #fff; box-shadow: var(--shadow-acc); }
.btn-primary:hover { background: var(--acc-ink); transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(22,87,240,.55); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--text); }
.btn-block { width: 100%; }
.btn-lg { padding: 1em 1.7em; font-size: var(--step-1); }
.btn-sm { padding: .6em 1em; font-size: var(--step--1); }

/* Announce */
.announce { background: var(--text); color: #fff; text-align: center; font-size: var(--step--1); font-weight: 500; padding: 9px 16px; letter-spacing: .02em; position: relative; z-index: 2; }
.announce a { text-decoration: underline; text-underline-offset: 2px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,248,251,.8); backdrop-filter: blur(18px) saturate(1.4); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 36px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; letter-spacing: -0.04em; color: var(--text); }
.brand .logo { width: 42px; height: 42px; display: grid; place-items: center; flex: none; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px -4px rgba(12,70,214,.5); }
.brand .logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand .brand-name { font-weight: 700; }
.brand .brand-name b { font-weight: 700; color: var(--acc); }
.site-footer .brand .brand-name b { color: var(--acc-2); }
.nav-links { display: flex; gap: 30px; margin-left: 6px; }
.nav-links a { color: var(--muted); font-size: var(--step-0); font-weight: 500; position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--acc); transition: width var(--dur-2) var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text); background: var(--surface); position: relative; transition: border-color .2s, color .2s; }
.icon-btn:hover { border-color: var(--text); }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--acc); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; box-shadow: 0 0 0 2px var(--bg); font-variant-numeric: tabular-nums; }
.burger { display: none; }

/* Hero — asymmetric editorial */
.hero { position: relative; padding: clamp(3rem,2rem+4vw,6rem) 0 clamp(3rem,2rem+4vw,5.5rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -10%; right: -5%; width: 55%; height: 120%; z-index: 0;
  background: radial-gradient(45% 45% at 70% 30%, rgba(22,87,240,.10), transparent 70%), radial-gradient(40% 40% at 90% 60%, rgba(24,180,255,.10), transparent 70%); }
.hero-grid { position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(80% 70% at 30% 30%, #000 10%, transparent 70%); opacity: .5; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.hero h1 { margin: 22px 0 22px; letter-spacing: -0.03em; }
.hero .lead { max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; margin: 32px 0 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: clamp(1.5rem,4vw,3rem); flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.hero-stats .stat b { font-family: var(--font-display); font-size: clamp(1.6rem,1rem+1.6vw,2.2rem); font-weight: 500; display: block; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.hero-stats .stat span { color: var(--faint); font-size: var(--step--1); }
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(165deg, #fff, #eaf0ff 90%); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.hero-visual::before { content: ""; position: absolute; width: 78%; height: 78%; border-radius: 50%; background: radial-gradient(circle, rgba(22,87,240,.14), transparent 62%); }
.hero-visual .ring { position: absolute; border: 1px solid rgba(22,87,240,.12); border-radius: 50%; }
.hero-visual .ring.r1 { inset: 10%; } .hero-visual .ring.r2 { inset: 26%; } .hero-visual .ring.r3 { display: none; }
.hero-visual img { width: 86%; position: relative; z-index: 2; filter: drop-shadow(0 26px 40px rgba(17,21,28,.22)); animation: float 7s var(--ease) infinite; }
@keyframes float { 0%,100% { transform: translateY(-9px); } 50% { transform: translateY(9px); } }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 13px; color: var(--ink-soft, var(--muted)); font-size: var(--step--1); font-weight: 500; }
.trust-item .tic { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--acc); background: var(--surface); flex: none; }
.trust-item .tic svg { width: 20px; height: 20px; }

/* Section head */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(2rem,3vw,3.2rem); flex-wrap: wrap; }
.sec-head .lead { margin-top: 14px; }
.link-arrow { color: var(--text); font-weight: 600; font-size: var(--step-0); display: inline-flex; align-items: center; gap: 7px; border-bottom: 1.5px solid var(--acc); padding-bottom: 3px; transition: gap .2s, color .2s; }
.link-arrow:hover { gap: 12px; color: var(--acc); }

/* Grid */
.grid { display: grid; gap: clamp(16px, 1.6vw, 24px); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

/* Product card */
.product { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2), box-shadow var(--dur-2); position: relative; }
.product:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.product-media { aspect-ratio: 1/1; position: relative; display: grid; place-items: center; background: var(--surface-2); overflow: hidden; border-bottom: 1px solid var(--line); }
.product-media svg, .product-media img { width: 72%; transition: transform var(--dur-2) var(--ease); }
.product:hover .product-media svg, .product:hover .product-media img { transform: scale(1.04); }
.product-media.has-photo { background: radial-gradient(120% 120% at 50% 25%, #ffffff, #eef2f8); }
.product-media.has-photo img { width: 100%; height: 100%; object-fit: contain; padding: 13%; }
.product:hover .product-media.has-photo img { transform: scale(1.045); }
.badge { position: absolute; top: 13px; left: 13px; z-index: 2; font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; }
.badge.new { background: var(--acc); color: #fff; }
.badge.deal { background: #e23b5a; color: #fff; }
.badge.hot { background: var(--text); color: #fff; }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-cat { font-size: 10.5px; color: var(--faint); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.product-name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
.product-tag { color: var(--muted); font-size: var(--step--1); min-height: 18px; line-height: 1.4; }
.product-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { display: flex; align-items: baseline; gap: 8px; font-variant-numeric: tabular-nums; }
.price .now { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
.price .was { color: var(--faint); text-decoration: line-through; font-size: .9rem; }
.stars { color: #e0a32e; font-size: 12px; letter-spacing: 1px; }

/* Category tiles — real product photography */
.cat-tile { position: relative; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-2), transform var(--dur-2) var(--ease), box-shadow var(--dur-2); }
.cat-tile:hover { border-color: var(--line-strong); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-img { aspect-ratio: 5/4; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line);
  background: radial-gradient(120% 120% at 50% 25%, #ffffff, #eef2f8); }
.cat-img img { width: 100%; height: 100%; object-fit: contain; padding: 14% 16%; transition: transform var(--dur-2) var(--ease); }
.cat-tile:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 18px 22px 22px; }
.cat-body h3 { font-size: 1.25rem; font-weight: 500; }
.cat-body p { color: var(--muted); font-size: var(--step--1); margin-top: 2px; }
.cat-body .cat-go { color: var(--acc); font-size: 13px; font-weight: 600; margin-top: 10px; display: inline-flex; gap: 5px; transition: gap .2s; }
.cat-tile:hover .cat-go { gap: 9px; }

/* Feature cards — top rule + numeral craft */
.feature { padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); position: relative; }
.feature::before { content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 2px; background: var(--acc); opacity: .9; border-radius: 2px; transform: scaleX(.34); transform-origin: left; }
.feature .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--acc-soft); color: var(--acc); margin-bottom: 18px; border: 1px solid rgba(22,87,240,.14); }
.feature h3 { font-size: 1.25rem; margin-bottom: 9px; font-weight: 500; }
.feature p { color: var(--muted); font-size: var(--step--1); line-height: 1.55; }

/* CTA banner */
.cta-banner { border-radius: var(--radius-lg); padding: clamp(40px,5vw,68px); position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(135deg, #0f43c4, #1657f0 45%, #18b4ff); box-shadow: var(--shadow-lg); }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% -10%, rgba(255,255,255,.22), transparent 65%); pointer-events: none; }
.cta-banner h2, .cta-banner .eyebrow, .cta-banner .lead { color: #fff; position: relative; z-index: 1; }
.cta-banner .eyebrow { color: rgba(255,255,255,.85); }
.cta-banner .eyebrow::before { background: rgba(255,255,255,.7); }
.cta-banner .lead { opacity: .92; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: #fff; color: var(--acc-ink); box-shadow: 0 14px 34px -12px rgba(0,0,0,.4); }
.cta-banner .btn-primary:hover { background: #eef3ff; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding: clamp(3.5rem,4vw,5rem) 0 2rem; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; }
.foot-grid h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; font-weight: 600; }
.foot-grid a { display: block; color: var(--muted); font-size: var(--step--1); padding: 6px 0; transition: color .2s; }
.foot-grid a:hover { color: var(--acc); }
.foot-about p { color: var(--muted); font-size: var(--step--1); margin: 16px 0; max-width: 36ch; }
.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.pay-icons .chip { padding: 6px 10px; border: 1px solid var(--line); border-radius: 7px; font-size: 10px; font-weight: 700; letter-spacing: .04em; color: var(--muted); background: var(--surface); }
.foot-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--faint); font-size: var(--step--1); }

/* Cart drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(17,21,28,.4); backdrop-filter: blur(4px); z-index: 90; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 430px; max-width: 92vw; background: var(--surface); border-left: 1px solid var(--line); z-index: 100; transform: translateX(100%); transition: transform var(--dur-2) var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-size: 1.4rem; font-weight: 500; }
.drawer-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line .thumb { width: 66px; height: 66px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; flex: none; overflow: hidden; border: 1px solid var(--line); }
.cart-line .thumb svg, .cart-line .thumb img { width: 72%; }
.cart-line .thumb.has-photo img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.cart-line .meta { flex: 1; min-width: 0; }
.cart-line .meta h5 { font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.cart-line .meta .p { color: var(--acc); font-size: 14px; font-weight: 700; margin-top: 2px; font-variant-numeric: tabular-nums; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; margin-top: 9px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--muted); }
.qty button:hover { color: var(--acc); }
.qty span { width: 30px; text-align: center; font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-line .rm { color: var(--faint); align-self: flex-start; transition: color .2s; }
.cart-line .rm:hover { color: #e23b5a; }
.drawer-foot { padding: 24px; border-top: 1px solid var(--line); }
.drawer-foot .row { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; }
.drawer-foot .row.total { color: var(--text); font-size: 1.05rem; font-weight: 700; margin: 14px 0 16px; }
.cart-empty { text-align: center; color: var(--faint); padding: 64px 20px; }
.cart-empty svg { width: 52px; height: 52px; margin: 0 auto 14px; color: var(--line-strong); }

/* Catalog */
.page-head { padding: clamp(3rem,4vw,5rem) 0 1.6rem; }
.toolbar { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: 30px; }
.chip-filter { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: var(--step--1); font-weight: 500; background: var(--surface); transition: all .2s; }
.chip-filter:hover { border-color: var(--text); color: var(--text); }
.chip-filter.active { background: var(--text); color: #fff; border-color: var(--text); }
.toolbar .spacer { margin-left: auto; }
.select { padding: 10px 14px; border-radius: 9px; border: 1px solid var(--line); background: var(--surface); color: var(--text); font-size: var(--step--1); }

/* Product detail */
.pd { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,4rem); padding: 40px 0 30px; }
.pd-media { border-radius: var(--radius-lg); background: radial-gradient(120% 120% at 50% 20%, #fff, #eef2f8); border: 1px solid var(--line); aspect-ratio: 1/1; display: grid; place-items: center; position: relative; }
.pd-media svg { width: 78%; }
.pd-media.has-photo img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.pd h1 { margin: 12px 0 14px; }
.pd .price .now { font-size: 2.2rem; }
.pd .desc { color: var(--muted); margin: 20px 0; max-width: 52ch; text-wrap: pretty; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin: 26px 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-list li span:first-child { color: var(--faint); }
.spec-list li span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.pd-buy { display: flex; gap: 12px; margin: 26px 0 16px; flex-wrap: wrap; }
.pd-pay { display: flex; align-items: center; gap: 10px; color: var(--faint); font-size: var(--step--1); flex-wrap: wrap; }
.in-stock { display: inline-flex; align-items: center; gap: 8px; color: #12936a; font-size: 14px; font-weight: 600; }
.in-stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #12936a; box-shadow: 0 0 8px #12936a; }

/* Prose */
.prose { max-width: 70ch; }
.prose h2 { font-size: 1.7rem; margin: 38px 0 14px; font-weight: 500; }
.prose h3 { font-size: 1.25rem; margin: 24px 0 10px; font-weight: 500; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; text-wrap: pretty; }
.prose ul { margin: 0 0 16px 20px; list-style: disc; }
.prose strong { color: var(--text); font-weight: 600; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,40px); }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 120; background: var(--text); color: #fff; border-radius: 12px; padding: 14px 20px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; opacity: 0; visibility: hidden; transition: all .3s var(--ease); box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--acc-2); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

.mobile-panel { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; aspect-ratio: 1/1; }
  .pd { grid-template-columns: 1fr; gap: 28px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .burger { display: grid; }
  .mobile-panel.open { display: block; position: fixed; inset: 76px 0 0; z-index: 49; background: var(--bg); padding: 24px; border-top: 1px solid var(--line); }
  .mobile-panel.open a { display: block; padding: 16px 0; font-family: var(--font-display); font-size: 22px; border-bottom: 1px solid var(--line); color: var(--text); }
}
@media (max-width: 540px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .product-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .product-foot .price { justify-content: flex-start; }
  .product-foot .btn { width: 100%; }
  .spec-list { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }

/* ============================================================
   v4 — shop engine: search, account, PDP tabs/reviews, chat,
   auth pages, checkout, account, admin
   ============================================================ */

/* Header search + account */
.nav-search { position: relative; flex: 1; max-width: 360px; margin-left: 4px; }
.nav-search .ns-ic { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--faint); pointer-events: none; }
.nav-search input { width: 100%; padding: 11px 14px 11px 40px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-2); color: var(--text); font-size: var(--step--1); transition: border-color .2s, background .2s; }
.nav-search input:focus { outline: none; border-color: var(--acc); background: #fff; }
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s var(--ease); z-index: 60; max-height: 70vh; overflow-y: auto; }
.search-results.open { opacity: 1; visibility: visible; transform: none; }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); transition: background .15s; }
.sr-item:last-child { border-bottom: 0; }
.sr-item:hover { background: var(--surface-2); }
.sr-thumb { width: 40px; height: 40px; border-radius: 8px; background: var(--surface-3); display: grid; place-items: center; overflow: hidden; flex: none; }
.sr-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.sr-name { flex: 1; font-size: 14px; font-weight: 500; }
.sr-price { font-weight: 700; font-variant-numeric: tabular-nums; }
.sr-empty { padding: 18px; color: var(--faint); font-size: 14px; }
.acct-link { display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; height: 44px; border-radius: 11px; border: 1px solid var(--line); color: var(--text); font-size: var(--step--1); font-weight: 500; background: var(--surface); transition: border-color .2s; }
.acct-link:hover { border-color: var(--text); }
@media (max-width: 1080px) { .nav-search { max-width: 220px; } .acct-link span { display: none; } .acct-link { padding: 0; width: 44px; justify-content: center; } }
@media (max-width: 820px) { .nav-search { display: none; } }

/* Breadcrumbs */
.crumbs { font-size: var(--step--1); color: var(--faint); padding-top: 22px; }
.crumbs a { color: var(--muted); } .crumbs a:hover { color: var(--acc); }

/* PDP tabs + reviews */
.pd-tabs { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 8px; }
.tablist { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.tab { padding: 14px 18px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--acc); border-color: var(--acc); }
.tabpanel { display: none; max-width: 820px; }
.tabpanel.active { display: block; }
.reviews { display: grid; gap: 18px; margin-bottom: 30px; }
.review { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-top strong { font-family: var(--font-display); font-weight: 500; }
.review p { color: var(--muted); }
.review-write { border-top: 1px solid var(--line); padding-top: 22px; }
.review-write h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: 14px; }
.review-form { display: grid; gap: 12px; max-width: 520px; }
.rf-stars { display: flex; gap: 4px; font-size: 26px; }
.rf-stars button { color: var(--line-strong); line-height: 1; }
.rf-stars button.on { color: #e0a32e; }
.review-form textarea { min-height: 90px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; resize: vertical; }
.review-form textarea:focus { outline: none; border-color: var(--acc); }

/* Generic form / auth / account / checkout */
.auth-wrap { max-width: 460px; margin: 0 auto; padding: clamp(2.5rem,5vw,5rem) 0; }
.auth-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-sm); }
.auth-card h1 { font-size: 2rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); margin-bottom: 26px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--ink-soft, var(--muted)); }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: var(--surface-2); transition: border-color .2s, background .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--acc); background: #fff; }
.form-msg { font-size: var(--step--1); padding: 10px 12px; border-radius: 9px; margin-bottom: 14px; display: none; }
.form-msg.err { display: block; background: #fdeaed; color: #b3243c; border: 1px solid #f6c9d2; }
.form-msg.ok { display: block; background: #e8f7ef; color: #137a4e; border: 1px solid #c3ead4; }
.auth-alt { text-align: center; margin-top: 20px; color: var(--muted); font-size: var(--step--1); }
.auth-alt a { color: var(--acc); font-weight: 600; }

/* Modal (2FA offer) */
.modal-overlay { position: fixed; inset: 0; background: rgba(17,21,28,.5); backdrop-filter: blur(4px); z-index: 200; display: none; place-items: center; padding: 20px; }
.modal-overlay.open { display: grid; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 460px; width: 100%; padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-lg); text-align: center; }
.modal h2 { font-size: 1.7rem; margin-bottom: 8px; }
.modal p { color: var(--muted); margin-bottom: 18px; }
.qr-box { display: grid; place-items: center; gap: 14px; margin: 18px 0; }
.qr-box img { width: 200px; height: 200px; border: 1px solid var(--line); border-radius: 12px; padding: 8px; background: #fff; }
.secret-pill { font-family: ui-monospace, monospace; background: var(--surface-3); border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font-size: 14px; letter-spacing: 1px; word-break: break-all; }
.modal .otp-input { text-align: center; letter-spacing: 8px; font-size: 22px; font-variant-numeric: tabular-nums; }
.modal-actions { display: flex; gap: 10px; margin-top: 8px; }
.modal-actions .btn { flex: 1; }
.steps { display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; }
.steps span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }
.steps span.on { background: var(--acc); }

/* Account */
.acct-grid { display: grid; grid-template-columns: 230px 1fr; gap: 32px; padding: 40px 0; align-items: start; }
.acct-nav { display: grid; gap: 4px; position: sticky; top: 92px; }
.acct-nav button { text-align: left; padding: 12px 14px; border-radius: 10px; color: var(--muted); font-weight: 600; transition: background .15s, color .15s; }
.acct-nav button:hover { background: var(--surface-2); color: var(--text); }
.acct-nav button.active { background: var(--acc-soft); color: var(--acc); }
.acct-panel { display: none; } .acct-panel.active { display: block; }
.order-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; }
.order-card .o-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.status-pill { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 999px; }
.status-pending { background: #fff4e0; color: #b8761b; } .status-paid { background: #e7f0ff; color: var(--acc-ink); }
.status-shipped { background: #e8f7ef; color: #137a4e; } .status-cancelled { background: #f1f1f3; color: #6b7280; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 36px; padding: 36px 0 60px; align-items: start; }
.summary { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; background: var(--surface); position: sticky; top: 92px; }
.summary h3 { font-size: 1.3rem; margin-bottom: 16px; }
.sum-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sum-line .t { width: 52px; height: 52px; border-radius: 9px; background: var(--surface-3); flex: none; display: grid; place-items: center; overflow: hidden; }
.sum-line .t img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.sum-tot { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-top: 14px; font-variant-numeric: tabular-nums; }
@media (max-width: 820px) { .acct-grid, .checkout-grid { grid-template-columns: 1fr; } .acct-nav { position: static; grid-auto-flow: column; overflow-x: auto; } .summary { position: static; } }

/* Live chat widget */
.chat-fab { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 18px; background: var(--acc); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-acc); z-index: 120; transition: transform .25s var(--ease), background .2s; }
.chat-fab:hover { transform: translateY(-3px) scale(1.04); background: var(--acc-ink); }
.chat-fab.hide { transform: scale(0); opacity: 0; pointer-events: none; }
.chat-panel { position: fixed; bottom: 24px; right: 24px; width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 48px); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); z-index: 121; display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(20px) scale(.98); transform-origin: bottom right; transition: all .3s var(--ease); }
.chat-panel.open { opacity: 1; visibility: visible; transform: none; }
.chat-head { background: linear-gradient(135deg, var(--acc-ink), var(--acc)); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.chat-id { display: flex; align-items: center; gap: 11px; }
.chat-id strong { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; display: block; }
.chat-id small { opacity: .85; font-size: 12px; }
.chat-dot { width: 9px; height: 9px; border-radius: 50%; background: #43e08a; box-shadow: 0 0 0 3px rgba(67,224,138,.25); flex: none; }
.chat-x { color: #fff; font-size: 18px; opacity: .8; width: 30px; height: 30px; border-radius: 8px; } .chat-x:hover { opacity: 1; background: rgba(255,255,255,.15); }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-2); }
.msg { display: flex; gap: 8px; max-width: 88%; }
.msg-user { align-self: flex-end; }
.msg .bub { padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.msg-bot .bub, .msg-op .bub { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.msg-user .bub { background: var(--acc); color: #fff; border-bottom-right-radius: 5px; }
.msg-av { width: 28px; height: 28px; border-radius: 8px; background: var(--acc-soft); color: var(--acc); display: grid; place-items: center; font-size: 13px; flex: none; }
.msg-op .msg-av { background: #e8f7ef; }
.chat-chips { display: flex; gap: 7px; flex-wrap: wrap; padding: 10px 14px 0; background: var(--bg-2); }
.chat-chip { font-size: 12.5px; font-weight: 500; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); transition: all .15s; }
.chat-chip:hover { border-color: var(--acc); color: var(--acc); }
.chat-input { display: flex; gap: 8px; padding: 14px; background: var(--bg-2); border-top: 1px solid var(--line); }
.chat-input input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: 11px; font: inherit; background: #fff; }
.chat-input input:focus { outline: none; border-color: var(--acc); }
.chat-input .btn { padding: 0 14px; }
@media (max-width: 540px) { .chat-panel { bottom: 0; right: 0; width: 100vw; height: 100vh; max-height: 100vh; border-radius: 0; } .chat-fab { bottom: 18px; right: 18px; } }

/* ============================================================
   v5 — real payment logos, 25% sale, premium PDP
   ============================================================ */
.pay-logos { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.pl { height: 28px; min-width: 46px; padding: 0 9px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: 7px; font-weight: 800; font-size: 12px; box-shadow: var(--shadow-sm); }
.pl svg { display: block; }
.pl-visa { color: #1434CB; font-style: italic; letter-spacing: .04em; }
.pl-amex { background: #1F72CF; color: #fff; border-color: #1F72CF; }
.pl-disc { color: #43484e; font-size: 9.5px; letter-spacing: .02em; }
.pl-disc::after { content: ""; }

.badge.off { background: #e23b5a; color: #fff; }

/* PDP */
.pd { align-items: start; }
.pd-buybox { position: sticky; top: 96px; }
.pd-rating { margin-top: 10px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; font-variant-numeric: tabular-nums; flex-wrap: wrap; }
.pd-price .now { font-family: var(--font-display); font-size: 2.3rem; font-weight: 500; letter-spacing: -.01em; }
.pd-price .was { color: var(--faint); text-decoration: line-through; font-size: 1.15rem; }
.pd-price .save { background: #fdeaed; color: #c0233f; font-weight: 700; font-size: 13px; padding: 4px 10px; border-radius: 7px; }
.pd .desc { margin: 16px 0 22px; color: var(--muted); }
.pd-trust { display: grid; gap: 11px; margin: 22px 0; }
.pd-trust li { display: flex; gap: 11px; align-items: center; color: var(--muted); font-size: 14px; }
.pd-trust li svg { color: var(--acc); flex: none; }
.pd-trust strong { color: var(--text); font-weight: 600; }

.pd-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 10px 0 40px; }
.feat-card { display: flex; gap: 13px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.feat-card .fic { width: 42px; height: 42px; border-radius: 11px; background: var(--acc-soft); color: var(--acc); display: grid; place-items: center; flex: none; border: 1px solid rgba(22,87,240,.12); }
.feat-card .fv { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; line-height: 1.12; }
.feat-card .fk { color: var(--faint); font-size: 12px; margin-top: 2px; }

.overview-grid { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.overview-grid .prose p { font-size: 1.06rem; line-height: 1.75; }
.box-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: var(--surface-2); }
.box-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: 14px; }
.box-list { display: grid; gap: 10px; }
.box-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.box-list li svg { color: #12936a; flex: none; margin-top: 1px; }

@media (max-width: 820px) { .pd-buybox { position: static; } .pd-features { grid-template-columns: 1fr 1fr; } .overview-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .pd-features { grid-template-columns: 1fr; } }

/* PDP gallery + video */
.pd-gallery { display: flex; flex-direction: column; gap: 12px; }
.pd-gallery .pd-media { width: 100%; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pd-thumb { aspect-ratio: 1/1; border: 1px solid var(--line); border-radius: 12px; background: radial-gradient(120% 120% at 50% 25%, #fff, #eef2f8); overflow: hidden; padding: 0; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.pd-thumb:hover { border-color: var(--line-strong); }
.pd-thumb.active { border-color: var(--acc); box-shadow: 0 0 0 1px var(--acc); }
.pd-video { margin: 6px 0 44px; }
.pdv-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #000; aspect-ratio: 16/9; }
.pdv-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Catalog toolbar + filters */
.cat-toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.cat-search { position: relative; flex: 1; min-width: 240px; }
.cat-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--faint); }
.cat-search input { width: 100%; padding: 12px 14px 12px 42px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); font: inherit; transition: border-color .2s; }
.cat-search input:focus { outline: none; border-color: var(--acc); }
.cat-selects { display: flex; gap: 8px; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.cat-count { color: var(--faint); font-size: var(--step--1); margin-bottom: 22px; }
@media (max-width: 600px) { .cat-selects { width: 100%; } .cat-selects .select { flex: 1; } }

/* Header mega-menu */
.nav-item { position: relative; }
.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 540px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 60; }
.mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 16px; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); }
.mega-col h5 { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; font-weight: 700; }
.mega-col a { display: block; padding: 6px 0; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s; }
.mega-col a:hover { color: var(--acc); }

/* Testimonials */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.quote .stars { color: #e0a32e; font-size: 15px; letter-spacing: 2px; }
.quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; line-height: 1.5; color: var(--text); letter-spacing: -0.01em; }
.quote figcaption { color: var(--faint); font-size: 13px; font-weight: 500; margin-top: auto; }

/* ============================================================
   v7 — Higgsfield original media: cinematic hero video, lifestyle
   band, promo banner, cinematic category tiles, "complete your kit"
   ============================================================ */

/* Cinematic full-bleed hero video */
.hero-cinematic { position: relative; padding: 0; min-height: clamp(580px, 84vh, 880px); display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; overflow: hidden; background: #0a1020 center/cover no-repeat; background-image: url("../img/hero-poster.jpg"); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,11,20,.78) 0%, rgba(7,11,20,.42) 42%, rgba(7,11,20,.08) 72%, transparent 100%),
    linear-gradient(180deg, rgba(7,11,20,.30) 0%, transparent 26%, transparent 52%, rgba(7,11,20,.78) 100%); }
.hero-cinematic .hero-inner { position: relative; z-index: 2; display: block;
  padding-top: clamp(3rem, 8vh, 6rem); padding-bottom: clamp(2.6rem, 6vh, 4.6rem); }
.hero-cinematic .hero-copy { max-width: 690px; }
.hero-cinematic h1 { color: #fff; margin: 20px 0 20px; }
.hero-cinematic .lead { color: rgba(255,255,255,.84); max-width: 50ch; }
.hero-cinematic .eyebrow { color: #fff; }
.hero-cinematic .eyebrow::before { background: rgba(255,255,255,.85); opacity: 1; }
.hero-cinematic .grad-text { background: linear-gradient(110deg,#7fb2ff,#5ee0ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-cinematic .hero-stats { border-top-color: rgba(255,255,255,.20); }
.hero-cinematic .hero-stats .stat b { color: #fff; }
.hero-cinematic .hero-stats .stat span { color: rgba(255,255,255,.62); }
.hero-cinematic .btn-ghost { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.42); color: #fff; backdrop-filter: blur(6px); }
.hero-cinematic .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.18); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 7px 14px 7px 10px;
  border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .01em; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #5ee0ff; box-shadow: 0 0 0 4px rgba(94,224,255,.25); }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
@media (max-width: 600px) { .hero-cinematic { min-height: 78vh; } }

/* Lifestyle "in the air" band */
.band { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.band-media { position: absolute; inset: 0; z-index: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(7,11,20,.85) 0%, rgba(7,11,20,.5) 52%, rgba(7,11,20,.12) 100%); }
.band-inner { position: relative; z-index: 2; padding: clamp(4.5rem, 10vw, 9rem) 0; max-width: 620px; }
.band-inner h2 { color: #fff; }
.band-inner .lead { color: rgba(255,255,255,.85); margin-top: 16px; }
.band-inner .eyebrow { color: #fff; }
.band-inner .eyebrow::before { background: rgba(255,255,255,.85); opacity: 1; }
.band-inner .hero-cta { margin-top: 30px; }
.band-inner .btn-ghost { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.42); color: #fff; }
.band-inner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.18); }

/* Promo / sale banner */
.promo-banner { position: relative; display: flex; align-items: center; border-radius: var(--radius-lg); overflow: hidden;
  min-height: clamp(230px, 30vw, 340px); color: #fff; box-shadow: var(--shadow-lg); isolation: isolate; }
.promo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.2s var(--ease); }
.promo-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,16,48,.94) 0%, rgba(10,30,86,.74) 40%, rgba(10,30,86,.18) 72%, transparent 100%); }
.promo-brand { background: linear-gradient(120deg, #0f3bd0 0%, #1657f0 46%, #2b86ff 100%); }
.promo-brand .promo-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(60% 120% at 88% 30%, rgba(94,224,255,.45), transparent 60%), radial-gradient(50% 80% at 100% 100%, rgba(120,160,255,.35), transparent 70%);
  -webkit-mask: none; }
.promo-brand::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask: radial-gradient(80% 100% at 80% 30%, #000, transparent 75%); mask: radial-gradient(80% 100% at 80% 30%, #000, transparent 75%); }
.promo-inner { position: relative; z-index: 2; padding: clamp(26px, 5vw, 56px); max-width: 580px; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.promo-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #bcd4ff; }
.promo-kicker::before { content: ""; width: 22px; height: 1px; background: #7fb2ff; }
.promo-h { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem, 1.4rem + 4.4vw, 4.4rem); line-height: .96; letter-spacing: -.035em; color: #fff; }
.promo-h span { background: linear-gradient(110deg,#9cc2ff,#5ee0ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.promo-inner p { color: rgba(255,255,255,.86); font-size: var(--step-0); max-width: 38ch; }
.promo-banner .btn { margin-top: 6px; }
.promo-banner:hover .promo-bg { transform: scale(1.04); }

/* Cinematic category tiles (overlay label on photo) */
.cat-tile.cat-cine { color: #fff; border: 1px solid var(--line); }
.cat-tile.cat-cine .cat-img { aspect-ratio: 4/5; padding: 0; border-bottom: 0; position: relative; background: #0a1020; }
.cat-tile.cat-cine .cat-img img { width: 100%; height: 100%; object-fit: cover; padding: 0; }
.cat-tile.cat-cine .cat-img::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,12,22,.05) 30%, rgba(8,12,22,.55) 66%, rgba(8,12,22,.9) 100%); }
.cat-tile.cat-cine .cat-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 22px 20px; }
.cat-tile.cat-cine .cat-body h3 { color: #fff; }
.cat-tile.cat-cine .cat-body p { color: rgba(255,255,255,.78); }
.cat-tile.cat-cine .cat-go { color: #fff; }
.cat-tile.cat-cine:hover .cat-img img { transform: scale(1.06); }

/* Complete your kit (compatible accessories on PDP) */
.pd-kit { margin: 6px 0 46px; }
.pd-kit .sec-head { margin-bottom: 22px; }

/* 3D model viewer on PDP */
.pd-3d { margin: 6px 0 46px; }
.mv-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 120% at 50% 18%, #fff, #eef2f8); box-shadow: var(--shadow); }
.mv-frame model-viewer { width: 100%; height: clamp(340px, 46vw, 540px); background: transparent; --poster-color: transparent; }
.mv-hint { color: var(--faint); font-size: 12px; margin-top: 10px; display: flex; align-items: center; gap: 7px; }

/* ============================================================
   v8 — real-product imagery, ratings & reviews, blended photos
   ============================================================ */

/* Ratings on product cards */
.rating-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.rating-row .stars { color: #e0a32e; font-size: 13px; letter-spacing: 1px; }
.rcount { color: var(--faint); font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; }
.rcount em { font-style: normal; color: var(--faint); font-weight: 500; }
.pd-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rev-jump { color: var(--muted); font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.rev-jump:hover { color: var(--acc); border-color: var(--acc); }

/* Review summary + items */
.rev-summary { display: flex; align-items: center; gap: 20px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); margin-bottom: 24px; }
.rev-avg { display: flex; align-items: center; gap: 14px; }
.rev-avg b { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.rev-avg small { display: block; color: var(--faint); font-size: 13px; margin-top: 3px; }
.review-top { align-items: flex-start; }
.rev-who { display: flex; align-items: center; gap: 11px; }
.rev-av { width: 36px; height: 36px; border-radius: 50%; background: var(--acc-soft); color: var(--acc); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex: none; }
.rev-who strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.rev-verified { display: inline-flex; align-items: center; gap: 4px; color: #12936a; font-size: 11.5px; font-weight: 600; }
.rev-verified svg { width: 13px; height: 13px; }

/* Product photos blend into the card surface (no detached 'white box') */
.product-media.has-photo, .pd-media.has-photo { background: radial-gradient(135% 135% at 50% 16%, #ffffff 0%, #eef2f9 70%, #e7edf7 100%); }
.product-media.has-photo img,
.pd-media.has-photo img,
.pd-thumb img,
.cart-line .thumb.has-photo img,
.sr-thumb img,
.sum-line .t img { mix-blend-mode: multiply; }

/* Minimum-order note + disabled button */
.min-note { display: flex; align-items: flex-start; gap: 9px; background: #fff6e8; border: 1px solid #f3d9a8; color: #8a5a16; border-radius: 10px; padding: 11px 13px; font-size: 13px; line-height: 1.45; margin-bottom: 12px; }
.min-note svg { width: 16px; height: 16px; flex: none; margin-top: 1px; color: #c8841a; }
.min-note strong { color: #6e470f; font-weight: 700; }
.btn[disabled], .btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; box-shadow: none; }

/* Checkout form */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field .opt { color: var(--faint); font-weight: 400; }
.checkout-grid #orderForm .btn-block { margin-top: 10px; }
.pay-unavailable { display: flex; gap: 14px; align-items: flex-start; background: #fff6e8; border: 1px solid #f3d9a8; border-radius: var(--radius); padding: 18px 20px; margin-bottom: 22px; }
.pay-unavailable .pu-ic { width: 40px; height: 40px; border-radius: 11px; background: #fae3b8; color: #b07414; display: grid; place-items: center; flex: none; }
.pay-unavailable strong { color: #6e470f; font-size: 1.02rem; }
.pay-unavailable p { color: #8a5a16; font-size: 13.5px; margin-top: 4px; line-height: 1.5; }
.pay-unavailable a { color: var(--acc-ink); font-weight: 600; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.acct-offer { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; background: var(--acc-soft); border: 1px solid rgba(22,87,240,.18); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; font-size: 14px; line-height: 1.45; }
.acct-offer-btns { display: flex; gap: 8px; flex: none; }

/* PDP stock / availability */
.pd-stock { margin: 14px 0 4px; font-size: 14px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pd-stock .stock-low { background: #fdeaed; color: #c0233f; font-weight: 700; font-size: 12px; padding: 3px 9px; border-radius: 999px; margin-left: 4px; }

