/* =========================================================
   VELOCITY APPAREL — Design System
   Bold athletic: black/white foundation, condensed display
   type, volt accent used sparingly, sale red.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --black: #0d0d0d;
  --ink: #1a1a1a;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --gray-50: #f7f7f7;
  --gray-100: #efefef;
  --gray-200: #e2e2e2;
  --gray-300: #cfcfcf;
  --gray-400: #a8a8a8;
  --gray-500: #7a7a7a;
  --gray-600: #555555;
  --gray-700: #3a3a3a;
  --volt: #d4ff3f;
  --volt-dark: #a9d61a;
  --sale: #e0243b;
  --success: #1f8a4c;
  --warning: #d98a00;

  --font-display: 'Barlow Condensed', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1440px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 2px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 6px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.22);
  --ease: cubic-bezier(.2,.7,.2,1);
  --header-h: 68px;
  --announce-h: 36px;
}

/* ---------- Reset ---------- */
*, *::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);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
input, select, textarea { outline: none; }
:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
::selection { background: var(--volt); color: var(--black); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); text-transform: uppercase; line-height: 1; letter-spacing: .01em; font-weight: 800; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Layout utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 1100px; }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section-tight { padding: clamp(32px, 5vw, 64px) 0; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(20px, 3vw, 36px); }
.section-header h2 { font-size: clamp(30px, 4vw, 48px); }
.section-header p { color: var(--gray-500); margin-top: 6px; font-size: 15px; }
.eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 10px; }
.eyebrow-volt { color: var(--black); background: var(--volt); padding: 3px 8px; }
.text-center { text-align: center; }
.text-sale { color: var(--sale); }
.muted { color: var(--gray-500); }
.grid { display: grid; gap: 24px; }
.hide { display: none !important; }
.divider { height: 1px; background: var(--gray-200); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: transform .15s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: var(--gray-700); border-color: var(--gray-700); }
.btn-volt { background: var(--volt); color: var(--black); border-color: var(--volt); }
.btn-volt:hover { background: var(--volt-dark); border-color: var(--volt-dark); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); border-color: var(--gray-100); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-ghost { background: transparent; color: var(--ink); padding: 0 12px; min-height: 40px; }
.btn-ghost:hover { background: var(--gray-100); }
.btn-sm { min-height: 38px; padding: 0 18px; font-size: 14px; }
.btn-lg { min-height: 56px; padding: 0 36px; font-size: 18px; }
.btn-block { width: 100%; }
.btn-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 2px solid var(--black); padding-bottom: 2px; transition: gap .2s, color .2s; }
.btn-link:hover { gap: 14px; }
.btn-link.on-dark { color: var(--white); border-color: var(--white); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--black); color: var(--white); height: var(--announce-h);
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.announce-track { display: flex; gap: 64px; white-space: nowrap; animation: marquee 32s linear infinite; }
.announce-track span { display: inline-flex; align-items: center; gap: 10px; }
.announce-track span::before { content: ''; width: 6px; height: 6px; background: var(--volt); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.announce:hover .announce-track { animation-play-state: paused; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 900; background: var(--white); border-bottom: 1px solid var(--gray-200); transition: box-shadow .2s; }
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.logo-mark { width: 34px; height: auto; aspect-ratio: 512 / 439; flex-shrink: 0; object-fit: contain; }
/* The mark ships as a black PNG; on dark surfaces invert it to white. */
.footer .logo-mark, .dark .logo-mark, .on-dark .logo-mark { filter: invert(1); }
.logo span em { font-style: normal; font-weight: 500; opacity: .62; }

.nav { display: flex; align-items: stretch; height: var(--header-h); }
.nav > li { position: relative; display: flex; }
.nav > li > a {
  display: inline-flex; align-items: center; padding: 0 16px; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .1em; text-transform: uppercase;
  position: relative;
}
.nav > li > a::after { content: ''; position: absolute; left: 16px; right: 16px; bottom: 16px; height: 3px; background: var(--black); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav > li:hover > a::after, .nav > li > a.active::after { transform: scaleX(1); }
.nav > li > a.sale { color: var(--sale); }
.nav > li > a.sale::after { background: var(--sale); }

/* Mega menu */
.mega {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%) translateY(8px);
  width: 720px; background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
  padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr 1fr 220px; gap: 24px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s, transform .2s, visibility .2s;
}
.nav > li:hover .mega, .nav > li:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega h5 { font-size: 14px; letter-spacing: .14em; color: var(--gray-500); margin-bottom: 12px; }
.mega ul li { margin-bottom: 8px; }
.mega ul a { font-size: 14px; color: var(--ink); transition: color .15s; }
.mega ul a:hover { color: var(--gray-500); text-decoration: underline; }
.mega-feature { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--gray-100); }
.mega-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mega-feature:hover img { transform: scale(1.05); }
.mega-feature span { position: absolute; left: 12px; bottom: 12px; background: var(--white); padding: 6px 10px; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; transition: background .15s; }
.icon-btn:hover { background: var(--gray-100); }
.icon-btn svg { width: 22px; height: 22px; }
.badge-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--volt); color: var(--black); font-size: 11px; font-weight: 700; border-radius: 9px; display: flex; align-items: center; justify-content: center; transform: scale(0); transition: transform .2s var(--ease); }
.badge-count.show { transform: scale(1); }
.badge-count.bump { animation: bump .35s var(--ease); }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }
.search-trigger { display: none; }
.header-search { display: flex; align-items: center; gap: 8px; background: var(--gray-100); border-radius: 999px; padding: 0 14px; height: 40px; width: 220px; transition: width .25s var(--ease), background .2s; }
.header-search:focus-within { width: 300px; background: var(--white); box-shadow: inset 0 0 0 2px var(--black); }
.header-search svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gray-500); }
.header-search input { flex: 1; background: transparent; border: 0; font-size: 14px; min-width: 0; }
.header-search input::placeholder { color: var(--gray-500); }
.menu-btn { display: none; }

/* Search suggestions dropdown */
.search-wrap { position: relative; }
.search-results { position: absolute; top: calc(100% + 8px); right: 0; width: 380px; max-height: 70vh; overflow: auto; background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); z-index: 50; display: none; }
.search-results.open { display: block; }
.search-results a { display: flex; gap: 12px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--gray-100); }
.search-results a:hover { background: var(--gray-50); }
.search-results img { width: 44px; height: 55px; object-fit: cover; background: var(--gray-100); }
.search-results .sr-name { font-size: 13.5px; font-weight: 600; }
.search-results .sr-price { font-size: 12.5px; color: var(--gray-500); }
.search-results .sr-all { justify-content: center; font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 14px; }
.search-results .sr-empty { padding: 18px; color: var(--gray-500); font-size: 14px; }

/* Mobile nav drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; bottom: 0; width: min(420px, 92vw); background: var(--white); z-index: 1001; display: flex; flex-direction: column; transition: transform .3s var(--ease); box-shadow: var(--shadow-lg); }
.drawer-left { left: 0; transform: translateX(-100%); }
.drawer-right { right: 0; transform: translateX(100%); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
.drawer-head h3 { font-size: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 20px 20px; }
.drawer-foot { border-top: 1px solid var(--gray-200); padding: 16px 20px; background: var(--white); }
.mobile-nav > li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav > li > a, .mobile-nav > li > button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 0; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: .08em; text-transform: uppercase; text-align: left; }
.mobile-nav > li > a.sale { color: var(--sale); }
.mobile-nav .sub { display: none; padding: 0 0 12px 12px; }
.mobile-nav li.open .sub { display: block; }
.mobile-nav .sub a { display: block; padding: 8px 0; font-size: 15px; color: var(--gray-600); }
.mobile-nav button svg { transition: transform .2s; }
.mobile-nav li.open button svg { transform: rotate(180deg); }
.mobile-search { display: flex; gap: 8px; margin: 12px 0 8px; }
.mobile-search input { flex: 1; height: 44px; padding: 0 14px; border: 1px solid var(--gray-300); }

/* Mini cart drawer */
.cart-drawer .drawer-body { padding-top: 16px; }
.mini-item { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.mini-item img { width: 84px; height: 105px; object-fit: cover; background: var(--gray-100); }
.mini-item .mi-name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.mini-item .mi-meta { font-size: 12.5px; color: var(--gray-500); margin-top: 4px; }
.mini-item .mi-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.mini-item .mi-price { font-weight: 700; font-size: 14px; }
.mini-empty { text-align: center; padding: 48px 12px; color: var(--gray-500); }
.mini-empty svg { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--gray-300); }
.mini-empty h4 { font-size: 24px; color: var(--ink); margin-bottom: 8px; }
.ship-progress { margin-bottom: 8px; font-size: 13px; }
.ship-progress .bar { height: 6px; background: var(--gray-200); margin-top: 8px; border-radius: 3px; overflow: hidden; }
.ship-progress .bar span { display: block; height: 100%; background: var(--black); transition: width .4s var(--ease); }
.ship-progress.done .bar span { background: var(--success); }
.mini-totals { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; margin-bottom: 12px; }

/* Quantity stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--gray-300); height: 36px; }
.qty button { width: 34px; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .15s; }
.qty button:hover { background: var(--gray-100); }
.qty input { width: 40px; height: 100%; border: 0; text-align: center; font-weight: 600; font-size: 14px; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-lg { height: 48px; }
.qty-lg button { width: 44px; }
.qty-lg input { width: 52px; }
.remove-link { font-size: 12.5px; color: var(--gray-500); text-decoration: underline; }
.remove-link:hover { color: var(--sale); }

/* ---------- Toast ---------- */
.toast-stack { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 1200; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 12px; background: var(--black); color: var(--white); padding: 12px 18px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 500; animation: toastIn .3s var(--ease); pointer-events: auto; max-width: 92vw; }
.toast img { width: 36px; height: 44px; object-fit: cover; border-radius: 2px; }
.toast.success::before { content: ''; width: 8px; height: 8px; background: var(--volt); border-radius: 50%; flex-shrink: 0; }
.toast.error::before { content: ''; width: 8px; height: 8px; background: var(--sale); border-radius: 50%; flex-shrink: 0; }
.toast a { text-decoration: underline; color: var(--volt); white-space: nowrap; }
.toast.out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(16px); } }

/* ---------- Product card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.product-card { position: relative; display: flex; flex-direction: column; }
.product-card .pc-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--gray-100); border-radius: var(--radius); }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), opacity .4s; }
.product-card .pc-media img.alt { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .pc-media img.main { transform: scale(1.04); }
.product-card:hover .pc-media img.alt { opacity: 1; transform: scale(1.04); }
.pc-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { display: inline-block; padding: 4px 8px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; line-height: 1.2; }
.badge-new { background: var(--volt); color: var(--black); }
.badge-sale { background: var(--sale); color: var(--white); }
.badge-best { background: var(--black); color: var(--white); }
.badge-outline { background: var(--white); color: var(--black); border: 1px solid var(--black); }
.pc-wish { position: absolute; top: 8px; right: 8px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-4px); transition: opacity .2s, transform .2s, background .2s; }
.product-card:hover .pc-wish, .pc-wish.active { opacity: 1; transform: none; }
.pc-wish svg { width: 18px; height: 18px; }
.pc-wish.active { background: var(--black); color: var(--white); }
.pc-wish.active svg { fill: currentColor; }
.pc-quick { position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s var(--ease); }
.product-card:hover .pc-quick { opacity: 1; transform: none; }
.pc-quick .btn { width: 100%; min-height: 42px; font-size: 14px; background: var(--white); color: var(--black); border-color: var(--white); box-shadow: var(--shadow-md); }
.pc-quick .btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.pc-quick-sizes { display: none; position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 3; background: var(--white); padding: 10px; box-shadow: var(--shadow-md); }
.pc-quick-sizes.open { display: block; }
.pc-quick-sizes .label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--gray-500); margin-bottom: 8px; display: flex; justify-content: space-between; }
.pc-quick-sizes .sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-quick-sizes .sizes button { min-width: 38px; height: 32px; padding: 0 8px; border: 1px solid var(--gray-300); font-size: 12.5px; font-weight: 600; transition: all .15s; }
.pc-quick-sizes .sizes button:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.pc-body { padding: 12px 2px 0; }
.pc-swatches { display: flex; gap: 6px; margin-bottom: 8px; }
.pc-swatches span { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.pc-swatches .more { font-size: 11px; color: var(--gray-500); line-height: 14px; margin-left: 2px; }
.pc-name { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.pc-name a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.pc-type { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }
.pc-price { margin-top: 6px; font-size: 14.5px; font-weight: 700; display: flex; gap: 8px; align-items: baseline; }
.pc-price .compare { color: var(--gray-500); text-decoration: line-through; font-weight: 400; }
.pc-price .sale-price { color: var(--sale); }
.pc-rating { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; color: var(--gray-500); }
.stars { display: inline-flex; gap: 1px; color: var(--black); }
.stars svg { width: 12px; height: 12px; }
.stars.lg svg { width: 16px; height: 16px; }
.stars .empty { color: var(--gray-300); }

/* Horizontal scroller */
.scroller-wrap { position: relative; }
.scroller { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 20px) / 4); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; }
.scroller-nav { display: flex; gap: 8px; }
.scroller-nav button { width: 44px; height: 44px; border: 1px solid var(--gray-300); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.scroller-nav button:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.scroller-nav button svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 860px); display: flex; align-items: flex-end; color: var(--white); overflow: hidden; background: var(--black); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.75) 100%); }
.hero-content { position: relative; z-index: 2; padding: clamp(40px, 6vw, 80px) 0; max-width: 820px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--volt); color: var(--black); font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(56px, 9.5vw, 132px); line-height: .92; letter-spacing: -.01em; margin-bottom: 18px; text-shadow: 0 4px 30px rgba(0,0,0,.25); }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--white); }
.hero p { font-size: clamp(16px, 1.6vw, 20px); max-width: 560px; margin-bottom: 28px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { position: absolute; right: var(--gutter); bottom: 32px; z-index: 2; display: flex; gap: 32px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.hero-meta b { display: block; font-family: var(--font-display); font-size: 28px; color: var(--white); letter-spacing: 0; }

/* Category tiles */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.tile { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--gray-100); border-radius: var(--radius); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7)); }
.tile-label { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; color: var(--white); display: flex; align-items: center; justify-content: space-between; }
.tile-label h3 { font-size: clamp(22px, 2.2vw, 30px); }
.tile-label svg { width: 22px; height: 22px; transition: transform .25s var(--ease); }
.tile:hover .tile-label svg { transform: translateX(6px); }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.split-media { position: relative; overflow: hidden; background: var(--gray-100); }
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 96px); }
.split-body h2 { font-size: clamp(40px, 5vw, 72px); line-height: .95; margin-bottom: 18px; }
.split-body p { font-size: 16px; color: var(--gray-600); max-width: 480px; margin-bottom: 28px; }
.split.dark { background: var(--black); color: var(--white); }
.split.dark .split-body p { color: rgba(255,255,255,.75); }
.split.reverse .split-media { order: 2; }

/* Collection cards */
.collections { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.collection-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); background: var(--gray-100); color: var(--white); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.75) 100%); }
.collection-card .cc-body { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; }
.collection-card .cc-tag { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--volt); font-weight: 700; }
.collection-card h3 { font-size: 40px; margin: 4px 0 8px; }
.collection-card p { font-size: 13.5px; color: rgba(255,255,255,.8); max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.collection-card:hover p { max-height: 120px; }

/* Tech / feature strip */
.tech-strip { background: var(--black); color: var(--white); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.tech-item svg { width: 40px; height: 40px; color: var(--volt); margin-bottom: 16px; }
.tech-item h4 { font-size: 24px; margin-bottom: 8px; }
.tech-item p { color: rgba(255,255,255,.7); font-size: 14px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--gray-50); padding: 32px; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 16px; }
.testimonial blockquote { font-size: 16px; line-height: 1.6; flex: 1; }
.testimonial blockquote::before { content: '“'; font-family: var(--font-display); font-size: 48px; line-height: 0; color: var(--gray-300); margin-right: 4px; vertical-align: -18px; }
.testimonial .t-name { font-weight: 700; font-size: 14px; }
.testimonial .t-role { font-size: 13px; color: var(--gray-500); }

/* Newsletter */
.newsletter { background: var(--volt); color: var(--black); }
.newsletter-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.newsletter h2 { font-size: clamp(36px, 5vw, 64px); line-height: .95; }
.newsletter p { margin-top: 10px; font-size: 16px; max-width: 480px; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input { flex: 1; height: 54px; padding: 0 18px; border: 2px solid var(--black); background: var(--white); font-size: 15px; }
.newsletter small { display: block; margin-top: 10px; font-size: 12px; opacity: .75; }

/* Trust bar */
.trust { border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 16px; border-right: 1px solid var(--gray-200); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 28px; height: 28px; flex-shrink: 0; }
.trust-item b { display: block; font-family: var(--font-display); font-size: 17px; letter-spacing: .06em; text-transform: uppercase; }
.trust-item span { font-size: 12.5px; color: var(--gray-500); }

/* Promo banner */
.promo-banner { position: relative; min-height: 460px; display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--black); }
.promo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.promo-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.2)); }
.promo-banner .container { position: relative; z-index: 2; }
.promo-banner h2 { font-size: clamp(48px, 7vw, 96px); line-height: .92; }
.promo-banner h2 span { color: var(--volt); }
.promo-banner p { margin: 14px 0 24px; font-size: 17px; max-width: 480px; }

/* Instagram-ish grid */
.social-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.social-grid a { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--gray-100); }
.social-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.social-grid a:hover img { transform: scale(1.08); }

/* ---------- Page header / breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12.5px; color: var(--gray-500); padding: 16px 0; }
.breadcrumbs a:hover { color: var(--black); text-decoration: underline; }
.breadcrumbs span.sep { color: var(--gray-300); }
.page-banner { position: relative; min-height: 260px; display: flex; align-items: flex-end; color: var(--white); background: var(--black); overflow: hidden; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.7)); }
.page-banner .container { position: relative; z-index: 2; padding-bottom: 32px; padding-top: 48px; }
.page-banner h1 { font-size: clamp(44px, 7vw, 88px); line-height: .92; }
.page-banner p { margin-top: 10px; max-width: 560px; font-size: 15.5px; color: rgba(255,255,255,.85); }
.page-banner .count { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ---------- Shop / PLP ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; padding-top: 8px; }
.filters { position: sticky; top: calc(var(--header-h) + 16px); }
.filters-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 2px solid var(--black); margin-bottom: 4px; }
.filters-head h3 { font-size: 22px; }
.filters-head button { font-size: 12.5px; color: var(--gray-500); text-decoration: underline; }
.filter-group { border-bottom: 1px solid var(--gray-200); }
.filter-group > button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; }
.filter-group > button svg { width: 16px; height: 16px; transition: transform .2s; }
.filter-group.open > button svg { transform: rotate(180deg); }
.filter-body { display: none; padding: 0 0 16px; }
.filter-group.open .filter-body { display: block; }
.check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; cursor: pointer; color: var(--gray-700); }
.check input { appearance: none; width: 18px; height: 18px; border: 1.5px solid var(--gray-400); border-radius: 2px; position: relative; cursor: pointer; flex-shrink: 0; transition: all .15s; }
.check input:checked { background: var(--black); border-color: var(--black); }
.check input:checked::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.check .cnt { margin-left: auto; font-size: 12px; color: var(--gray-400); }
.size-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.size-chips button { min-width: 42px; height: 36px; padding: 0 10px; border: 1px solid var(--gray-300); font-size: 13px; font-weight: 600; transition: all .15s; }
.size-chips button:hover { border-color: var(--black); }
.size-chips button.active { background: var(--black); color: var(--white); border-color: var(--black); }
.color-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.color-chips button { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; padding: 2px; background: transparent; position: relative; }
.color-chips button span { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.color-chips button.active { border-color: var(--black); }
.color-chips button:hover { border-color: var(--gray-400); }
.range-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.range-row input[type=number] { width: 80px; height: 36px; padding: 0 8px; border: 1px solid var(--gray-300); }
.range-row input[type=range] { width: 100%; accent-color: var(--black); }
.price-range { display: flex; flex-direction: column; gap: 8px; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.shop-toolbar .result-count { font-size: 14px; color: var(--gray-500); }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; height: 42px; padding: 0 40px 0 14px; border: 1px solid var(--gray-300); background: var(--white); font-size: 14px; font-weight: 500; cursor: pointer; }
.select-wrap svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; pointer-events: none; }
.filter-toggle { display: none; }
#filters-close { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.active-filters .chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; background: var(--gray-100); font-size: 12.5px; border-radius: 999px; }
.active-filters .chip button { display: flex; }
.active-filters .chip svg { width: 12px; height: 12px; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 80px 20px; color: var(--gray-500); }
.empty-state h3 { font-size: 32px; color: var(--ink); margin-bottom: 8px; }
.load-more-wrap { text-align: center; margin-top: 40px; }
.load-more-wrap p { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.shop-seo { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--gray-200); max-width: 800px; color: var(--gray-600); font-size: 14.5px; }
.shop-seo h2 { font-size: 30px; color: var(--ink); margin-bottom: 10px; }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.pdp-gallery { display: grid; grid-template-columns: 76px 1fr; gap: 12px; position: sticky; top: calc(var(--header-h) + 16px); }
.pdp-thumbs { display: flex; flex-direction: column; gap: 8px; }
.pdp-thumbs button { aspect-ratio: 4/5; overflow: hidden; border: 2px solid transparent; background: var(--gray-100); transition: border-color .15s; }
.pdp-thumbs button.active { border-color: var(--black); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--gray-100); border-radius: var(--radius); cursor: zoom-in; }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease), opacity .25s; transform-origin: var(--zx, 50%) var(--zy, 50%); }
.pdp-main.zoomed { cursor: zoom-out; }
.pdp-main.zoomed img { transform: scale(2); }
.pdp-main .pc-badges { top: 14px; left: 14px; }
.pdp-main-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; pointer-events: none; }
.pdp-main-nav button { pointer-events: auto; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); opacity: 0; transition: opacity .2s; }
.pdp-main:hover .pdp-main-nav button { opacity: 1; }
.pdp-main-nav svg { width: 18px; height: 18px; }
.pdp-info { padding-top: 4px; }
.pdp-info .pdp-cat { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); font-weight: 600; }
.pdp-info h1 { font-size: clamp(30px, 3.2vw, 44px); line-height: .98; margin: 8px 0 12px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }
.pdp-rating a { text-decoration: underline; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.pdp-price .compare { font-size: 18px; color: var(--gray-500); text-decoration: line-through; font-weight: 400; }
.pdp-price .save { font-size: 13px; color: var(--sale); font-weight: 700; background: rgba(224,36,59,.08); padding: 3px 8px; }
.pdp-block { margin-bottom: 22px; }
.pdp-block-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13.5px; }
.pdp-block-head b { font-weight: 700; }
.pdp-block-head span { color: var(--gray-500); }
.pdp-block-head a, .pdp-block-head button { font-size: 13px; text-decoration: underline; color: var(--gray-600); }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 44px; height: 44px; border-radius: 50%; border: 2px solid transparent; padding: 3px; transition: border-color .15s; }
.swatch span { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.swatch:hover { border-color: var(--gray-400); }
.swatch.active { border-color: var(--black); }
.size-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 8px; }
.size-grid button { height: 46px; border: 1px solid var(--gray-300); font-weight: 600; font-size: 14px; transition: all .15s; position: relative; }
.size-grid button:hover { border-color: var(--black); }
.size-grid button.active { background: var(--black); color: var(--white); border-color: var(--black); }
.size-grid button.low::after { content: ''; position: absolute; top: 4px; right: 4px; width: 6px; height: 6px; border-radius: 50%; background: var(--warning); }
.size-grid button.oos { color: var(--gray-400); background: repeating-linear-gradient(135deg, transparent 0 6px, var(--gray-100) 6px 7px); cursor: not-allowed; }
.size-error { color: var(--sale); font-size: 13px; margin-top: 8px; display: none; }
.size-error.show { display: block; animation: shake .3s; }
@keyframes shake { 0%,100% { transform: translateX(0);} 25% { transform: translateX(-4px);} 75% { transform: translateX(4px);} }
.pdp-actions { display: flex; gap: 10px; margin: 24px 0 14px; }
.pdp-actions .btn { flex: 1; }
.pdp-actions .wish-btn { width: 56px; min-height: 56px; border: 2px solid var(--black); display: flex; align-items: center; justify-content: center; transition: all .15s; }
.pdp-actions .wish-btn svg { width: 22px; height: 22px; }
.pdp-actions .wish-btn.active { background: var(--black); color: var(--white); }
.pdp-actions .wish-btn.active svg { fill: currentColor; }
.pdp-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.pdp-perks div { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--gray-600); }
.pdp-perks svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--black); }
.pdp-fit { font-size: 13.5px; color: var(--gray-600); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.pdp-fit svg { width: 16px; height: 16px; }
.pdp-desc { font-size: 15px; color: var(--gray-700); margin-bottom: 20px; }

/* Accordion */
.accordion { border-top: 1px solid var(--gray-200); }
.acc-item { border-bottom: 1px solid var(--gray-200); }
.acc-item > button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: .08em; text-transform: uppercase; text-align: left; }
.acc-item > button svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; }
.acc-item.open > button svg { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 0 18px; font-size: 14.5px; color: var(--gray-700); }
.acc-item.open .acc-body { display: block; animation: fadeIn .25s; }
.acc-body ul { list-style: disc; padding-left: 18px; }
.acc-body li { margin-bottom: 6px; }
.acc-body p + p { margin-top: 8px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px);} to { opacity: 1; transform: none; } }

/* Reviews */
.reviews { display: grid; grid-template-columns: 300px 1fr; gap: 48px; }
.review-summary { position: sticky; top: calc(var(--header-h) + 16px); }
.review-summary .big { font-family: var(--font-display); font-size: 72px; font-weight: 800; line-height: 1; }
.review-bars { margin: 16px 0 20px; display: flex; flex-direction: column; gap: 6px; }
.review-bars div { display: grid; grid-template-columns: 30px 1fr 36px; align-items: center; gap: 10px; font-size: 12.5px; color: var(--gray-500); }
.review-bars .bar { height: 8px; background: var(--gray-200); }
.review-bars .bar span { display: block; height: 100%; background: var(--black); }
.review { padding: 20px 0; border-bottom: 1px solid var(--gray-200); }
.review-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.review-head .who { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.review-head .verified { font-size: 11px; color: var(--success); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; }
.review-head .verified svg { width: 12px; height: 12px; }
.review-head .date { font-size: 12.5px; color: var(--gray-500); }
.review h4 { font-family: var(--font-body); text-transform: none; font-size: 15px; font-weight: 700; letter-spacing: 0; margin: 6px 0; }
.review p { font-size: 14px; color: var(--gray-700); }
.review-form { background: var(--gray-50); padding: 24px; margin-top: 24px; display: none; }
.review-form.open { display: block; }
.star-input { display: flex; gap: 4px; margin-bottom: 12px; }
.star-input button svg { width: 26px; height: 26px; color: var(--gray-300); transition: color .1s; }
.star-input button.on svg { color: var(--black); fill: currentColor; }

/* Sticky add-to-cart bar (mobile) */
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; background: var(--white); border-top: 1px solid var(--gray-200); padding: 10px var(--gutter); display: none; align-items: center; gap: 12px; transform: translateY(100%); transition: transform .3s var(--ease); }
.sticky-atc.show { transform: none; }
.sticky-atc .s-name { font-weight: 600; font-size: 13px; line-height: 1.3; }
.sticky-atc .s-price { font-size: 13px; color: var(--gray-500); }
.sticky-atc .btn { margin-left: auto; }

/* ---------- Modals ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal { background: var(--white); width: 100%; max-width: 720px; max-height: 90vh; overflow: auto; border-radius: var(--radius-lg); transform: translateY(12px); transition: transform .3s var(--ease); }
.modal-backdrop.open .modal { transform: none; }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; background: var(--white); z-index: 2; }
.modal-head h3 { font-size: 26px; }
.modal-body { padding: 24px; }
.modal-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.modal-close:hover { background: var(--gray-100); }
.modal-close svg { width: 20px; height: 20px; }
.size-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.size-tabs button { padding: 8px 14px; border: 1px solid var(--gray-300); font-size: 13px; font-weight: 600; }
.size-tabs button.active { background: var(--black); color: var(--white); border-color: var(--black); }
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.data th, table.data td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--gray-200); white-space: nowrap; }
table.data th { font-family: var(--font-display); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; background: var(--gray-50); }
table.data tr:nth-child(even) td { background: var(--gray-50); }
.how-to-measure { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; font-size: 13.5px; color: var(--gray-600); }
.how-to-measure b { display: block; color: var(--ink); margin-bottom: 4px; }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.cart-list { border-top: 2px solid var(--black); }
.cart-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.cart-row img { width: 120px; height: 150px; object-fit: cover; background: var(--gray-100); }
.cart-row .cr-name { font-weight: 600; font-size: 16px; }
.cart-row .cr-name a:hover { text-decoration: underline; }
.cart-row .cr-meta { font-size: 13px; color: var(--gray-500); margin-top: 4px; display: flex; gap: 12px; flex-wrap: wrap; }
.cart-row .cr-controls { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.cart-row .cr-price { text-align: right; font-weight: 700; font-size: 16px; }
.cart-row .cr-price .each { display: block; font-size: 12px; color: var(--gray-500); font-weight: 400; margin-top: 2px; }
.cart-row .stock { font-size: 12px; color: var(--success); font-weight: 600; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; }
.cart-row .stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.summary { background: var(--gray-50); padding: 28px; position: sticky; top: calc(var(--header-h) + 16px); }
.summary h3 { font-size: 26px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 8px 0; }
.summary-row.total { border-top: 2px solid var(--black); margin-top: 8px; padding-top: 16px; font-size: 20px; font-weight: 700; }
.summary-row .free { color: var(--success); font-weight: 700; }
.summary-row .discount { color: var(--success); }
.promo-form { display: flex; gap: 8px; margin: 16px 0; }
.promo-form input { flex: 1; height: 46px; padding: 0 14px; border: 1px solid var(--gray-300); text-transform: uppercase; }
.promo-form input:focus { border-color: var(--black); }
.promo-msg { font-size: 13px; margin-top: -8px; margin-bottom: 12px; }
.promo-msg.ok { color: var(--success); }
.promo-msg.err { color: var(--sale); }
.promo-applied { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; background: var(--white); border: 1px dashed var(--success); font-size: 13px; margin-bottom: 12px; }
.promo-applied button { display: flex; }
.promo-applied svg { width: 14px; height: 14px; }
.payment-icons { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.payment-icons span { height: 28px; padding: 0 8px; border: 1px solid var(--gray-300); border-radius: 4px; background: var(--white); display: inline-flex; align-items: center; font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--gray-700); }
.summary-secure { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--gray-500); margin-top: 14px; }
.summary-secure svg { width: 16px; height: 16px; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty svg { width: 72px; height: 72px; margin: 0 auto 20px; color: var(--gray-300); }
.cart-empty h2 { font-size: 40px; margin-bottom: 10px; }
.cart-empty p { color: var(--gray-500); margin-bottom: 24px; }

/* ---------- Checkout ---------- */
.checkout-header { border-bottom: 1px solid var(--gray-200); }
.checkout-header .header-inner { justify-content: space-between; }
.checkout-secure { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); }
.checkout-secure svg { width: 18px; height: 18px; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 56px; align-items: start; }
.steps { display: flex; gap: 8px; margin-bottom: 28px; font-size: 13px; }
.steps div { display: flex; align-items: center; gap: 8px; color: var(--gray-400); }
.steps div b { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.steps div.active { color: var(--black); font-weight: 600; }
.steps div.active b { background: var(--black); color: var(--white); border-color: var(--black); }
.steps div.done { color: var(--black); }
.steps div.done b { background: var(--volt); border-color: var(--volt); color: var(--black); }
.steps .line { flex: 1; height: 1px; background: var(--gray-200); align-self: center; }
.co-step { display: none; }
.co-step.active { display: block; animation: fadeIn .3s; }
.co-step h2 { font-size: 32px; margin-bottom: 20px; }
.co-step h3 { font-size: 20px; margin: 28px 0 12px; }
.co-step p svg { width: 16px; height: 16px; flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--gray-600); }
.field input, .field select, .field textarea { height: 50px; padding: 0 14px; border: 1px solid var(--gray-300); border-radius: var(--radius); background: var(--white); font-size: 15px; transition: border-color .15s, box-shadow .15s; width: 100%; }
.field textarea { height: auto; padding: 12px 14px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,.06); }
.field.invalid input, .field.invalid select { border-color: var(--sale); }
.field .err { font-size: 12px; color: var(--sale); display: none; }
.field.invalid .err { display: block; }
.field .hint { font-size: 12px; color: var(--gray-500); }
.field.has-icon input { padding-right: 60px; }
.field .card-brand { position: absolute; right: 12px; top: 31px; font-size: 11px; font-weight: 800; letter-spacing: .06em; color: var(--gray-500); }
.select-field { position: relative; }
.select-field select { appearance: none; padding-right: 40px; }
.select-field svg { position: absolute; right: 14px; bottom: 17px; width: 16px; height: 16px; pointer-events: none; }
.option-cards { display: flex; flex-direction: column; gap: 10px; }
.option-card { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--gray-300); cursor: pointer; transition: all .15s; border-radius: var(--radius); }
.option-card:hover { border-color: var(--gray-500); }
.option-card.active { border-color: var(--black); box-shadow: inset 0 0 0 1px var(--black); background: var(--gray-50); }
.option-card input { accent-color: var(--black); width: 18px; height: 18px; }
.option-card .oc-body { flex: 1; }
.option-card .oc-name { font-weight: 600; font-size: 14.5px; }
.option-card .oc-desc { font-size: 12.5px; color: var(--gray-500); }
.option-card .oc-price { font-weight: 700; font-size: 14.5px; }
.option-card .oc-price.free { color: var(--success); }
.pay-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.pay-tab { padding: 14px; border: 1px solid var(--gray-300); text-align: center; font-weight: 600; font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: all .15s; }
.pay-tab svg { width: 24px; height: 24px; }
.pay-tab.active { border-color: var(--black); box-shadow: inset 0 0 0 1px var(--black); background: var(--gray-50); }
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.pay-panel .express-note { padding: 24px; border: 1px dashed var(--gray-300); text-align: center; font-size: 14px; color: var(--gray-600); }
.card-preview { background: linear-gradient(135deg, #1c1c1c, #3a3a3a); color: var(--white); border-radius: 12px; padding: 22px; margin-bottom: 18px; font-family: 'SF Mono', Menlo, monospace; position: relative; overflow: hidden; max-width: 380px; }
.card-preview::before { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--volt); opacity: .15; right: -60px; top: -100px; }
.card-preview .cp-chip { width: 40px; height: 28px; border-radius: 5px; background: linear-gradient(135deg, #e6c56a, #b8952f); margin-bottom: 22px; }
.card-preview .cp-num { font-size: 19px; letter-spacing: .12em; margin-bottom: 16px; }
.card-preview .cp-row { display: flex; justify-content: space-between; font-size: 12px; text-transform: uppercase; }
.card-preview .cp-row small { display: block; font-size: 9px; opacity: .6; letter-spacing: .1em; }
.co-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 16px; flex-wrap: wrap; }
.co-nav .back { font-size: 14px; text-decoration: underline; color: var(--gray-600); display: inline-flex; align-items: center; gap: 6px; }
.co-nav .back svg { width: 16px; height: 16px; }
.review-block { border: 1px solid var(--gray-200); padding: 16px; margin-bottom: 12px; display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.review-block b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.review-block button { font-size: 13px; text-decoration: underline; color: var(--gray-600); align-self: flex-start; }
.co-summary { background: var(--gray-50); padding: 24px; position: sticky; top: 16px; }
.co-summary h3 { font-size: 24px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
.co-summary h3 span { font-family: var(--font-body); text-transform: none; font-size: 13px; font-weight: 500; color: var(--gray-500); letter-spacing: 0; }
.co-items { max-height: 340px; overflow: auto; margin: 12px 0; padding-right: 4px; }
.co-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 13.5px; align-items: center; }
.co-item .thumb { position: relative; }
.co-item img { width: 64px; height: 80px; object-fit: cover; background: var(--gray-100); }
.co-item .thumb span { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--gray-600); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.co-item .name { font-weight: 600; }
.co-item .meta { font-size: 12px; color: var(--gray-500); }
.co-item .price { font-weight: 700; }
.processing { display: none; align-items: center; gap: 12px; }
.spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.3); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading { pointer-events: none; }
.btn.loading .label { display: none; }
.btn.loading .processing { display: inline-flex; }

/* Confirmation */
.confirm-hero { text-align: center; padding: clamp(40px, 8vw, 96px) 0 32px; }
.confirm-hero .check-anim { width: 88px; height: 88px; border-radius: 50%; background: var(--volt); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; animation: pop .5s var(--ease); }
.confirm-hero .check-anim svg { width: 44px; height: 44px; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.confirm-hero h1 { font-size: clamp(44px, 7vw, 88px); line-height: .92; }
.confirm-hero p { color: var(--gray-600); margin-top: 12px; font-size: 16px; }
.confirm-hero .order-no { display: inline-block; margin-top: 16px; padding: 8px 16px; background: var(--gray-100); font-family: 'SF Mono', Menlo, monospace; font-size: 14px; letter-spacing: .08em; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 40px 0; }
.confirm-card { border: 1px solid var(--gray-200); padding: 20px; font-size: 14px; }
.confirm-card b { display: block; font-family: var(--font-display); font-size: 16px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.confirm-card p { color: var(--gray-600); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 32px 0 48px; }
.timeline div { text-align: center; font-size: 12.5px; color: var(--gray-500); position: relative; padding-top: 22px; }
.timeline div::before { content: ''; position: absolute; top: 6px; left: 0; right: 0; height: 3px; background: var(--gray-200); }
.timeline div::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15px; height: 15px; border-radius: 50%; background: var(--gray-200); border: 3px solid var(--white); }
.timeline div.done::before, .timeline div.done::after { background: var(--black); }
.timeline div.done { color: var(--black); font-weight: 600; }

/* ---------- Content pages ---------- */
.prose { max-width: 760px; font-size: 16px; color: var(--gray-700); }
.prose h2 { font-size: 36px; color: var(--ink); margin: 40px 0 14px; }
.prose h3 { font-size: 24px; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 28px 24px; border: 1px solid var(--gray-200); }
.stat b { display: block; font-family: var(--font-display); font-size: 56px; line-height: 1; font-weight: 800; }
.stat span { font-size: 13.5px; color: var(--gray-500); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { padding: 28px; background: var(--gray-50); }
.value .num { font-family: var(--font-display); font-size: 14px; letter-spacing: .14em; color: var(--gray-500); margin-bottom: 12px; }
.value h4 { font-size: 26px; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--gray-600); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card .tc-media { aspect-ratio: 4/5; overflow: hidden; background: var(--gray-100); margin-bottom: 12px; }
.team-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .4s; }
.team-card:hover img { filter: none; }
.team-card b { display: block; font-size: 15px; }
.team-card span { font-size: 13px; color: var(--gray-500); }
.timeline-list { border-left: 2px solid var(--gray-200); padding-left: 28px; }
.timeline-list li { position: relative; padding-bottom: 28px; }
.timeline-list li::before { content: ''; position: absolute; left: -35px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--black); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--black); }
.timeline-list b { display: block; font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; }
.timeline-list p { color: var(--gray-600); font-size: 14.5px; }

/* Help center */
.help-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.help-nav { position: sticky; top: calc(var(--header-h) + 16px); }
.help-nav a { display: block; padding: 10px 14px; border-left: 2px solid transparent; font-size: 14px; color: var(--gray-600); }
.help-nav a:hover, .help-nav a.active { border-color: var(--black); color: var(--black); font-weight: 600; background: var(--gray-50); }
.help-section { margin-bottom: 56px; scroll-margin-top: 100px; }
.help-section h2 { font-size: 34px; margin-bottom: 16px; }
.help-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.help-card { padding: 24px; border: 1px solid var(--gray-200); transition: all .2s; display: block; }
.help-card:hover { border-color: var(--black); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.help-card svg { width: 30px; height: 30px; margin-bottom: 12px; }
.help-card b { display: block; font-family: var(--font-display); font-size: 20px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.help-card p { font-size: 13.5px; color: var(--gray-500); }
.faq .acc-item > button { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 16px; font-weight: 600; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-box { padding: 22px; background: var(--gray-50); font-size: 14.5px; }
.info-box b { display: block; font-size: 15px; margin-bottom: 6px; }
.info-box p { color: var(--gray-600); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.contact-method { display: flex; gap: 16px; }
.contact-method svg { width: 26px; height: 26px; flex-shrink: 0; }
.contact-method b { display: block; font-size: 15px; }
.contact-method p { font-size: 14px; color: var(--gray-500); }
.form-success { display: none; padding: 40px; text-align: center; background: var(--gray-50); }
.form-success.show { display: block; animation: fadeIn .3s; }
.form-success svg { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--success); }
.form-success h3 { font-size: 30px; margin-bottom: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: var(--white); margin-top: clamp(48px, 7vw, 96px); }
.footer-top { padding: 64px 0 48px; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; max-width: 320px; margin-bottom: 20px; }
.footer h5 { font-size: 15px; letter-spacing: .14em; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.85); font-size: 14px; transition: color .15s; }
.footer ul a:hover { color: var(--volt); }
.socials { display: flex; gap: 8px; }
.socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.socials a:hover { background: var(--volt); border-color: var(--volt); color: var(--black); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.55); }
.footer-bottom .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .region { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .region svg { width: 16px; height: 16px; }

/* ---------- Skeleton ---------- */
.skeleton { background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 37%, var(--gray-100) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .scroller { grid-auto-columns: calc((100% - 2 * 20px) / 3); }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .collections { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mega { width: 640px; }
}
@media (max-width: 1024px) {
  :root { --header-h: 60px; }
  .nav, .header-search { display: none; }
  .menu-btn, .search-trigger { display: inline-flex; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; left: 0; bottom: 0; width: min(380px, 90vw); background: var(--white); z-index: 1001; padding: 20px; overflow-y: auto; transform: translateX(-100%); transition: transform .3s var(--ease); }
  .filters.open { transform: none; }
  .filter-toggle { display: inline-flex; }
  #filters-close { display: inline-flex; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .pdp-thumbs button { width: 64px; flex-shrink: 0; }
  .reviews { grid-template-columns: 1fr; }
  .review-summary { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary, .co-summary { position: static; }
  .co-summary { order: -1; }
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split-media { aspect-ratio: 4/3; }
  .split.reverse .split-media { order: 0; }
  .tech-grid, .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
  .testimonials { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .help-layout { grid-template-columns: 1fr; }
  .help-nav { position: static; display: flex; overflow-x: auto; gap: 4px; }
  .help-nav a { white-space: nowrap; border-left: 0; border-bottom: 2px solid transparent; }
  .help-nav a.active { border-color: var(--black); }
  .help-cards { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .confirm-grid { grid-template-columns: 1fr; }
  .sticky-atc { display: flex; }
  body.has-sticky { padding-bottom: 72px; }
  .hero-meta { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .scroller { grid-auto-columns: 72%; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .tiles .tile:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .collections { grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: 16/10; }
  .collection-card p { max-height: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-header .scroller-nav, .section-header .btn-link { align-self: flex-start; }
  .hero { min-height: 80vh; }
  .hero-actions .btn { flex: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cart-row { grid-template-columns: 90px 1fr; }
  .cart-row img { width: 90px; height: 112px; }
  .cart-row .cr-price { grid-column: 2; text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .pay-tabs { grid-template-columns: 1fr; }
  .pdp-actions .btn { min-height: 52px; }
  .pdp-perks { grid-template-columns: 1fr; }
  .tech-grid, .trust-inner, .stats, .help-cards, .info-grid, .team-grid, .how-to-measure { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .trust-item:last-child { border-bottom: 0; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
  .newsletter form { flex-direction: column; }
  .steps div span { display: none; }
  .steps div.active span { display: inline; }
  .pc-quick { display: none; }
  .pc-wish { opacity: 1; transform: none; }
  .search-results { width: calc(100vw - 32px); right: -8px; }
  .mega { display: none; }
  .header-inner { gap: 8px; }
  .logo { font-size: 22px; }
  .logo-mark { width: 28px; }
  .header-actions { gap: 0; }
  .header-actions a[href="wishlist.html"], .header-actions a[href="account.html"] { display: none; }
}
