/* ================================================================
   82days Tech — Modern blue tech-retail design system
   White base · electric blue primary · soft blue-purple gradients
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--ink); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--primary-soft); color: var(--primary); }

/* ----- Tokens ----- */
:root {
  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F4F7FE;
  --bg-2: #E8EEFB;
  --bg-3: #D7E0F4;
  --card: #FFFFFF;
  --paper: #FFFFFF;
  --paper-2: #F4F7FE;
  --paper-3: #E8EEFB;

  /* Hero gradient — matched to hero-scene.jpg corner color (#CAD3FC ≈ RGB 202,211,252)
     so the image edges blend seamlessly into the shell with no visible rectangle */
  --hero-grad: linear-gradient(135deg, #CED7FD 0%, #C9D2FB 50%, #CCCFFB 100%);
  --hero-light: linear-gradient(180deg, #EAF0FC 0%, #DDE5F9 100%);
  --sale-grad: linear-gradient(110deg, #4F6BF6 0%, #7B6DEB 50%, #B58AE8 100%);

  /* Text — deep navy */
  --ink: #0F1B3D;
  --ink-2: #2A3661;
  --ink-3: #5C6A8E;
  --muted: #94A0BD;
  --muted-2: #C5CCDD;
  --line: #E8EDF7;
  --line-2: #F2F5FB;
  --line-soft: rgba(15,27,61,0.06);

  /* Brand — electric blue */
  --primary: #1E5BFF;
  --primary-bright: #3D74FF;
  --primary-dark: #1448CC;
  --primary-soft: #E8EFFF;
  --primary-glow: rgba(30,91,255,0.22);

  --accent: var(--primary);
  --accent-dark: var(--primary-dark);
  --accent-bg: var(--primary-soft);
  --accent-soft: var(--primary-soft);

  --accent-red: var(--primary);
  --accent-red-2: var(--primary-dark);
  --accent-green: #10B981;
  --success: #10B981;
  --danger: #EF4444;
  --gold: #F59E0B;

  /* Typography */
  --font-sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-display: var(--font-sans);
  --font-serif: var(--font-sans);
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: clamp(2rem, 4vw, 2.75rem);
  --fs-56: clamp(2.25rem, 5vw, 3.5rem);
  --fs-72: clamp(2.5rem, 6vw, 4.5rem);

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --r-xs: 4px; --r-sm: 6px; --r-md: 10px; --r-lg: 14px;
  --r-xl: 20px; --r-2xl: 28px; --r-full: 999px;

  --sh-sm: 0 1px 3px rgba(15,27,61,0.04);
  --sh-md: 0 4px 16px rgba(15,27,61,0.06), 0 2px 4px rgba(15,27,61,0.04);
  --sh-lg: 0 16px 48px rgba(15,27,61,0.08), 0 4px 12px rgba(15,27,61,0.04);
  --sh-hover: 0 20px 56px rgba(15,27,61,0.10), 0 6px 16px rgba(15,27,61,0.05);
  --sh-blue: 0 8px 24px rgba(30,91,255,0.28);
  --sh-glow: 0 8px 24px var(--primary-glow);

  --container: 1320px;
  --nav-h: 72px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
h1 { font-size: var(--fs-56); letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: var(--fs-32); font-weight: 800; }
h3 { font-size: var(--fs-20); font-weight: 700; }
h4 { font-size: var(--fs-16); font-weight: 700; }
p  { color: var(--ink-3); }

em { font-style: normal; color: var(--primary); font-weight: inherit; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-16) 0; }
.section-tight { padding: var(--sp-10) 0; }
.rule, .rule-plain, .rule-thin { display: none; }

/* ----- Top promo bar ----- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: var(--fs-12);
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar .sep { margin: 0 12px; opacity: 0.4; }
.topbar a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* ----- Navigation ----- */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-5);
}
.nav-logo {
  display: inline-flex; align-items: baseline;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  flex-shrink: 0;
  gap: 4px;
}
.nav-logo .mark {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  background: none;
  display: inline;
  width: auto; height: auto;
  border-radius: 0;
  box-shadow: none;
}
.nav-logo .mark::after { content: none; }
.nav-logo .accent { color: var(--ink); font-size: 22px; font-weight: 800; letter-spacing: -0.035em; text-transform: none; margin: 0; }
.nav-logo .sub { display: none; }

.nav-menu { display: flex; gap: var(--sp-5); align-items: center; }
.nav-menu a {
  display: inline-flex; align-items: center;
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color .15s var(--ease);
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a.active { color: var(--primary); font-weight: 600; }
.nav-menu a.active::after {
  content: '';
  position: absolute; left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-search {
  flex: 1;
  max-width: 360px;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  padding: 9px 18px 9px 16px;
  transition: all .15s var(--ease);
}
.nav-search:focus-within { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.nav-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-size: var(--fs-14);
  color: var(--ink);
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search button { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.nav-search button:hover { background: var(--primary-dark); }

.nav-tools { display: flex; align-items: center; gap: var(--sp-2); }
.nav-tool {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border-radius: var(--r-md);
  transition: all .15s var(--ease);
  position: relative;
}
.nav-tool:hover { color: var(--primary); background: var(--bg-soft); }
.nav-tool .badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--primary); color: #fff;
  border-radius: var(--r-full);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
.nav-mobile-toggle { display: none; }

@media (max-width: 1024px) {
  .nav-search { max-width: 200px; }
  .nav-menu { gap: var(--sp-3); }
  .nav-menu a { font-size: var(--fs-13); }
}
@media (max-width: 880px) {
  .nav-search { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--bg); flex-direction: column; padding: var(--sp-4) var(--sp-6);
              border-bottom: 1px solid var(--line); box-shadow: var(--sh-md); }
  .nav-menu.is-open { display: flex; gap: 4px; }
  .nav-menu a { padding: var(--sp-3) 0; width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav-mobile-toggle { display: inline-flex; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: var(--fs-14);
  font-weight: 600;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: all .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--sh-blue); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--card); border-color: var(--primary); color: var(--primary); box-shadow: var(--sh-sm); }
.btn-red { background: var(--primary); color: #fff; }
.btn-red:hover { background: var(--primary-dark); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.18); }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--primary);
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.btn-link::after { content: '→'; transition: transform .18s var(--ease); }
.btn-link:hover { color: var(--primary-dark); }
.btn-link:hover::after { transform: translateX(3px); }
.btn-sm { padding: 9px 18px; font-size: var(--fs-13); }
.btn-lg { padding: 15px 30px; font-size: var(--fs-15); }

/* ============================================================
   HERO — light blue-purple shell, scene left + white card right
============================================================ */
.hero {
  background: var(--bg);
  padding: var(--sp-6) 0 var(--sp-12);
}
.hero-shell {
  background: var(--hero-grad);
  border-radius: var(--r-2xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-6);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.hero-shell::before {
  /* soft outer glow rings — animated */
  content: '';
  position: absolute;
  top: 50%; left: 30%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 55%);
  pointer-events: none;
  animation: heroFloat 9s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -55%) scale(1.08); opacity: 0.8; }
}

/* LEFT: static hero scene image — bottom portion smart-keyed to alpha,
   so the bottom seamlessly fades into the hero shell gradient (no container) */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.hero-stage picture {
  display: block;
  width: 100%;
}
.hero-stage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: heroSceneFloat 8s ease-in-out infinite;
}
@keyframes heroSceneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
/* Legacy hero-prod / hero-badge — hidden */
.hero-prod, .hero-badge { display: none; }

/* RIGHT: white content card */
.hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.hero-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-4);
}
.hero-card .eyebrow .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.hero-card h1 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.hero-card h1 em { color: var(--primary); }
.hero-card .lead {
  font-size: var(--fs-14);
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
  max-width: 42ch;
}
.hero-card .actions {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
}
.hero-trust .item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}
.hero-trust .item .ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-trust .item .label { font-size: var(--fs-11); font-weight: 700; color: var(--ink); display: block; line-height: 1.2; }
.hero-trust .item .sub { font-size: 10px; color: var(--ink-3); display: block; margin-top: 2px; line-height: 1.3; }

@media (max-width: 1024px) {
  .hero-shell { grid-template-columns: 1.2fr 1fr; padding: var(--sp-6); }
}
@media (max-width: 880px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-stage { min-height: 360px; }
}

/* (legacy) hero parts hidden */
.hero-grid, .hero-copy, .hero-figure, .hero-stats, .hero-thumbs, .hero-foot, .hero-slide-meta { display: none; }

/* ============================================================
   SECTION HEAD
============================================================ */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--sp-4); flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.sec-head .left .eyebrow { margin-bottom: var(--sp-2); }
.sec-head h2 {
  font-size: var(--fs-32);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 4px;
  color: var(--ink);
}
.sec-head h2 em { color: var(--primary); }

/* ============================================================
   CATEGORIES — 5 light-blue cards with floating product photos
============================================================ */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.cat-tile {
  position: relative;
  display: block;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  min-height: 180px;
  overflow: hidden;
  transition: all .25s var(--ease);
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); background: var(--primary-soft); }
.cat-tile:hover .photo { transform: scale(1.06) translateY(-4px); }
.cat-tile .photo {
  position: absolute;
  right: -10%; bottom: -10%;
  width: 70%; height: 70%;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .35s var(--ease);
  filter: drop-shadow(0 8px 16px rgba(15,27,61,0.12));
  mix-blend-mode: multiply;
}
.cat-tile .content {
  position: relative; z-index: 2;
  max-width: 65%;
}
.cat-tile .num { display: none; }
.cat-tile h3 {
  font-size: var(--fs-17);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.15;
}
.cat-tile .sub {
  font-size: var(--fs-12);
  color: var(--ink-3);
  margin-bottom: var(--sp-3);
  font-weight: 500;
  line-height: 1.4;
}
.cat-tile .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  position: absolute;
  left: var(--sp-5); bottom: var(--sp-5);
  transition: all .2s var(--ease);
  z-index: 3;
}
.cat-tile:hover .arrow {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 1024px) {
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
  .cat-tile:nth-child(4), .cat-tile:nth-child(5) { display: block; }
}
@media (max-width: 720px) {
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
}

.cat-feature { display: none; }

/* ============================================================
   PRODUCT CARD — clean white, blue accents
============================================================ */
.product-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .2s var(--ease);
  position: relative;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
}
.product-card .img-wrap {
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: var(--sp-5);
  background: var(--bg-soft);
  transition: transform .4s var(--ease);
  mix-blend-mode: multiply;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }

.product-card .badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--primary);
  color: #fff;
  z-index: 2;
}
.product-card .badge.badge-sale { background: var(--primary); }
.product-card .badge.badge-new { background: var(--primary); }
.product-card .badge.badge-stock {
  left: auto; right: var(--sp-3);
  background: rgba(255,255,255,0.95);
  color: var(--ink-3);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.product-card .heart-btn {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all .15s var(--ease);
  z-index: 3;
  backdrop-filter: blur(6px);
}
.product-card:hover .heart-btn { opacity: 1; }
.product-card .heart-btn:hover { color: var(--primary); border-color: var(--primary); }
.product-card .heart-btn.is-saved {
  color: var(--primary); border-color: var(--primary);
  opacity: 1;
}

.product-card .body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
}
.product-card .meta {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.product-card .name {
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.product-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.product-card .price {
  font-size: var(--fs-18);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.product-card .price-old {
  font-size: var(--fs-13);
  color: var(--muted);
  text-decoration: line-through;
}
.product-card .rating {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--fs-12);
  color: var(--primary);
}
.product-card .stars, .product-card .stars-text { color: var(--gold); letter-spacing: 1px; }

/* ============================================================
   GRIDS
============================================================ */
.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-asym-3, .grid-asym-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .grid-asym-3, .grid-asym-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   SALE BANNER — blue-purple gradient
============================================================ */
.sale-banner {
  background: var(--sale-grad);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--sp-6);
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sale-banner::before {
  content: '';
  position: absolute;
  top: -30%; right: 20%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.sale-banner .icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.sale-banner .copy { position: relative; z-index: 2; }
.sale-banner .copy .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.sale-banner h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
}
.sale-banner h2 em { color: #FFE16A; font-style: normal; }
.sale-banner .desc {
  font-size: var(--fs-13);
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 2;
  max-width: 30ch;
  line-height: 1.5;
}
.sale-banner .photo {
  position: relative; z-index: 2;
  width: 140px; height: 110px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
  mix-blend-mode: multiply;
}
.sale-banner .btn-white {
  position: relative; z-index: 2;
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
@media (max-width: 880px) {
  .sale-banner { grid-template-columns: 1fr; text-align: center; }
  .sale-banner .icon, .sale-banner .photo { display: none; }
}

/* ============================================================
   WHY US
============================================================ */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  padding: 0;
}
.why-card {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: all .2s var(--ease);
  text-align: left;
}
.why-card:hover { background: var(--primary-soft); }
.why-card .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: #fff;
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.why-card h4 {
  font-size: var(--fs-15);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.why-card p {
  font-size: var(--fs-12);
  color: var(--ink-3);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .why-strip { grid-template-columns: 1fr 1fr; }
}

.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border: 0;
}
.promise {
  background: var(--bg-soft);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
}
.promise + .promise::before { display: none; }
.promise .num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: var(--sp-3);
}
.promise h4 { font-family: var(--font-sans); font-size: var(--fs-15); font-weight: 700; margin-bottom: 4px; }
.promise p { font-family: var(--font-sans); font-size: var(--fs-13); color: var(--ink-3); line-height: 1.5; }
@media (max-width: 720px) { .promises { grid-template-columns: 1fr; } }

.quote {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  max-width: 38ch;
  margin: 0 auto;
  padding: var(--sp-10) 0;
  letter-spacing: -0.02em;
}
.quote::before, .quote::after { display: none; }
.quote-attr {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-12);
  color: var(--primary);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink);
  color: #fff;
  padding: var(--sp-16) 0 var(--sp-6);
}
.footer * { color: inherit; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.footer-brand .logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.footer-brand .logo .mark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--primary-bright);
  background: none;
  width: auto; height: auto;
  display: inline;
  border-radius: 0;
  box-shadow: none;
}
.footer-brand .logo .mark::after { content: none; }
.footer-brand .logo .accent {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 0;
}
.footer-brand .tagline {
  font-style: normal;
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-top: var(--sp-3);
  max-width: 34ch;
}
.footer-brand .meta {
  margin-top: var(--sp-5);
  font-size: var(--fs-13);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.footer-brand .meta strong {
  display: block;
  font-weight: 700;
  font-size: var(--fs-11);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-bright);
  margin: var(--sp-4) 0 4px;
}
.footer-brand .meta strong:first-child { margin-top: 0; }
.footer-brand .meta a { color: rgba(255,255,255,0.85); }
.footer-brand .meta a:hover { color: var(--primary-bright); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.footer-col ul li { margin-bottom: var(--sp-2); }
.footer-col a {
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.6);
  transition: color .15s var(--ease);
}
.footer-col a:hover { color: var(--primary-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-bottom .copyright {
  font-size: var(--fs-13);
  color: rgba(255,255,255,0.5);
}
.footer-bottom .pays { display: flex; gap: var(--sp-2); align-items: center; }
.footer-bottom .pay {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 4px 8px;
  height: 30px; min-width: 46px;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-bottom .pay svg { height: 16px; }

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

/* ============================================================
   PAGE HEAD
============================================================ */
.page-head {
  padding: var(--sp-12) 0 var(--sp-8);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.page-head .breadcrumb {
  font-size: var(--fs-12);
  color: var(--ink-3);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.page-head .breadcrumb a { color: var(--ink-3); }
.page-head .breadcrumb a:hover { color: var(--primary); }
.page-head h1 {
  font-size: var(--fs-40);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}
.page-head h1 em { color: var(--primary); }
.page-head .lead {
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  color: var(--ink-3);
  max-width: 60ch;
  line-height: 1.6;
}

/* ============================================================
   PROSE
============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: var(--fs-24); margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.prose h3 { font-size: var(--fs-18); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose p { font-family: var(--font-sans); font-size: var(--fs-15); line-height: 1.75; margin-bottom: var(--sp-4); color: var(--ink-2); }
.prose ul, .prose ol { margin: 0 0 var(--sp-5) var(--sp-6); }
.prose li { font-family: var(--font-sans); font-size: var(--fs-15); line-height: 1.75; margin-bottom: var(--sp-2); color: var(--ink-2); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { color: var(--primary); font-style: normal; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--primary-dark); }
.prose .updated {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-style: normal;
  font-weight: 700;
  margin-bottom: var(--sp-5);
}

/* ============================================================
   COLLECTION FILTERS
============================================================ */
.collection-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4); flex-wrap: wrap;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-6);
}
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  font-weight: 500;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: var(--r-full);
  transition: all .15s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.pill:hover { background: var(--primary-soft); color: var(--primary); }
.pill.is-active { background: var(--primary); color: #fff; }
.pill-count { font-size: 11px; font-weight: 600; color: var(--muted); }
.pill.is-active .pill-count { color: rgba(255,255,255,0.7); }
.sort-select {
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  font-weight: 500;
  padding: 8px 32px 8px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231E5BFF' stroke-width='2.5'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  letter-spacing: 0;
  text-transform: none;
}
.sort-select:focus, .sort-select:hover { background-color: var(--primary-soft); outline: none; }

/* ============================================================
   PDP
============================================================ */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); padding: var(--sp-8) 0; align-items: start; }
.pdp-gallery-wrap { position: sticky; top: 96px; align-self: start; }
.pdp-gallery {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.pdp-gallery img { width: 100%; height: 100%; object-fit: contain; padding: var(--sp-6); background: var(--bg-soft); mix-blend-mode: multiply; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-2); margin-top: var(--sp-3); }
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: all .15s var(--ease);
}
.pdp-thumb:hover { border-color: var(--primary); }
.pdp-thumb.is-active { border: 2px solid var(--primary); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; background: var(--bg-soft); mix-blend-mode: multiply; }

.pdp-info .brand-tag {
  display: inline-block;
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 5px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.pdp-info h1 { font-size: var(--fs-32); font-weight: 800; line-height: 1.2; letter-spacing: -0.025em; }
.pdp-info .rating-row { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-3); font-size: var(--fs-13); color: var(--ink-3); }
.pdp-info .rating-row .stars { color: var(--gold); font-size: var(--fs-15); letter-spacing: 1px; }
.pdp-info .price-row { display: flex; align-items: baseline; gap: var(--sp-3); margin-top: var(--sp-4); }
.pdp-info .price { font-size: var(--fs-32); font-weight: 800; color: var(--ink); letter-spacing: -0.025em; }
.pdp-info .price-old { font-size: var(--fs-18); color: var(--muted); text-decoration: line-through; }
.pdp-info .save-badge { background: var(--primary); color: #fff; padding: 4px 10px; font-size: var(--fs-11); font-weight: 700; border-radius: var(--r-sm); text-transform: uppercase; letter-spacing: 0.06em; }
.pdp-info .stock-row {
  display: flex; align-items: center; gap: 10px;
  padding: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--r-md);
  font-size: var(--fs-14);
  color: var(--ink-2);
}
.pdp-info .stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.pdp-info .stock-dot.out { background: var(--muted-2); box-shadow: none; }
.pdp-info .cta-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.pdp-info .cta-row .btn { flex: 1; }
.pdp-info .desc { margin-top: var(--sp-6); font-size: var(--fs-15); line-height: 1.65; color: var(--ink-2); }
.pdp-info .desc h3, .pdp-info .specs h3 {
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
}
.pdp-info .specs { margin-top: var(--sp-6); }
.pdp-info .specs dl { background: var(--bg-soft); border-radius: var(--r-md); padding: 4px var(--sp-4); }
.pdp-info .specs .row { display: grid; grid-template-columns: 160px 1fr; padding: var(--sp-3) 0; border-bottom: 1px solid var(--line); font-size: var(--fs-14); }
.pdp-info .specs .row:last-child { border-bottom: 0; }
.pdp-info .specs .k { font-size: var(--fs-12); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.pdp-info .specs .v { color: var(--ink); }
.pdp-info .specs .v.mono { font-family: var(--font-mono); font-size: var(--fs-12); word-break: break-all; }

@media (max-width: 880px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery-wrap { position: static; }
  .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: var(--sp-8) 0; border-top: 1px solid var(--line); }
.review { padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); }
.review .top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.review .name { font-size: var(--fs-14); font-weight: 600; color: var(--ink); }
.review .date { font-size: var(--fs-12); color: var(--ink-3); }
.review .stars { color: var(--gold); font-size: var(--fs-14); letter-spacing: 1px; }
.review p { font-size: var(--fs-14); line-height: 1.6; color: var(--ink-2); }

/* ============================================================
   FORM
============================================================ */
.form-group { margin-bottom: var(--sp-4); }
.form-group label {
  display: block;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: var(--fs-14);
  transition: all .15s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
  border-color: var(--muted-2);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   MODAL
============================================================ */
.wm-modal { position: fixed; inset: 0; z-index: 9998; display: flex; align-items: flex-start; justify-content: center; padding: 80px var(--sp-4) var(--sp-4); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease); }
.wm-modal.is-open { opacity: 1; pointer-events: auto; }
.wm-modal-backdrop { position: absolute; inset: 0; background: rgba(15,27,61,0.5); backdrop-filter: blur(4px); }
.wm-modal-card {
  position: relative; max-width: 440px; width: 100%;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 32px 28px;
  text-align: center;
  transform: scale(0.96) translateY(8px);
  transition: transform .25s var(--ease);
  box-shadow: var(--sh-lg);
}
.wm-modal.is-open .wm-modal-card { transform: scale(1) translateY(0); }
.wm-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-3);
}
.wm-modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.wm-modal-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--sp-4);
  border-radius: var(--r-full);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.wm-modal-card h3 { font-size: var(--fs-20); margin-bottom: var(--sp-2); }
.wm-modal-card > p { color: var(--ink-3); margin-bottom: var(--sp-5); font-size: var(--fs-14); }
.wm-modal-actions { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.wm-modal-actions .btn { flex: 1; }
.wm-modal-foot { font-size: var(--fs-13); color: var(--ink-3); padding-top: var(--sp-4); border-top: 1px solid var(--line); }
.wm-modal-foot a, .wm-modal-foot button { color: var(--primary); text-decoration: underline; background: none; border: 0; padding: 0; cursor: pointer; font-size: inherit; font-weight: 600; }

.policy-link-inline { background: none; border: 0; padding: 0; color: inherit; text-decoration: underline; cursor: pointer; font: inherit; }
.policy-link-inline:hover { color: var(--primary); }

/* ============================================================
   EMPTY STATE
============================================================ */
.empty { padding: var(--sp-16) var(--sp-6); text-align: center; border-radius: var(--r-lg); background: var(--bg-soft); }
.empty .ico { font-size: 48px; margin-bottom: var(--sp-4); color: var(--muted-2); }
.empty h3 { font-size: var(--fs-20); font-weight: 700; margin-bottom: var(--sp-2); }
.empty p { color: var(--ink-3); margin-bottom: var(--sp-5); font-size: var(--fs-14); }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.text-center { text-align: center; }
.hidden { display: none; }

/* ============================================================
   Member Card (account feature stat)
============================================================ */
/* Higher specificity (.acc-stat.acc-stat-feat) to win over account.html
   inline <style> rule `.acc-stat { background: var(--card); }` */
.acc-stat.acc-stat-feat {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2C5DFC 0%, #5570F7 60%, #8B6FE8 100%);
  color: #fff;
  border: 0;
  border-radius: var(--r-lg);
  padding: 24px;
  min-height: 110px;
}
.acc-stat.acc-stat-feat::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.acc-stat.acc-stat-feat::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(252,211,77,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.acc-stat.acc-stat-feat .acc-stat-eyebrow {
  color: rgba(255,255,255,0.9);
  position: relative; z-index: 1;
}
.acc-stat.acc-stat-feat .acc-stat-num {
  color: #fff;
  position: relative; z-index: 1;
}
.acc-stat.acc-stat-feat .acc-stat-sub {
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 1;
}
.acc-stat.acc-stat-feat .acc-stat-ico {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(8px);
}

/* Newsletter */
.newsletter {
  background: var(--hero-grad);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  border: 0;
}
.newsletter .inner { max-width: 540px; margin: 0 auto; }
.newsletter .eyebrow { color: var(--primary); background: transparent; }
.newsletter h2 { font-size: var(--fs-28); margin-bottom: var(--sp-3); }
.newsletter h2 em { color: var(--primary); }
.newsletter p { color: var(--ink-3); margin-bottom: var(--sp-5); font-size: var(--fs-14); }
.newsletter form { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 280px; max-width: 360px;
  padding: 13px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  color: var(--ink);
  font-size: var(--fs-14);
}
.newsletter input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.newsletter .legal { font-size: var(--fs-12); color: var(--ink-3); margin-top: var(--sp-4); }
.newsletter .legal a, .newsletter .legal button { color: var(--primary); text-decoration: underline; background: none; border: 0; padding: 0; cursor: pointer; font-size: inherit; }
