@charset "UTF-8";
/* Tee & Tail — design tokens */
:root {
  --ground: #FFFFFF;
  --ground-2: #FFF5EA;
  --surface: #FFFFFF;
  --raise: #FBF8F4;
  --text: #2A2D3E;
  --ink: #1C2150;
  --muted: #6B6E80;
  --line: #ECE5DB;
  --accent: #FF6A2A;
  --accent-hover: #E85617;
  --accent-ink: #FFFFFF;
  --accent-soft: #FFE7D8;
  --navy: #1C2150;
  --navy-2: #262C66;
  --navy-ink: #F4F2FF;
  --navy-muted: #B7B9DA;
  --good: #1E8E5A;
  --good-soft: #DDF3E8;
  --bad: #C8342B;
  --star: #F2A516;
  --t1: #FDE9D7; --t2: #DDEFE6; --t3: #E3E8FB; --t4: #FBE3E8; --t5: #FFF2C7; --t6: #EAE3F6;
  --shadow: 0 10px 30px -12px rgba(28, 33, 80, .22);
  --f-display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --f-body: "Figtree", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --f-mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --wrap: 1240px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #12142A; --ground-2: #1A1C36; --surface: #1B1E3A; --raise: #202443;
    --text: #E9E8F4; --ink: #F6F4FF; --muted: #A4A6C0; --line: #2D3056;
    --accent: #FF7A3D; --accent-hover: #FF9160; --accent-ink: #1A0E06; --accent-soft: #3B2519;
    --navy: #0B0D1F; --navy-2: #171A38; --navy-ink: #F4F2FF; --navy-muted: #9A9CC4;
    --good: #5CD39A; --good-soft: #173A2B; --bad: #FF7B72; --star: #F5B83D;
    --t1: #2E2530; --t2: #1F2F32; --t3: #232A4A; --t4: #30243A; --t5: #2F2C26; --t6: #29244A;
    --shadow: 0 10px 30px -12px rgba(0, 0, 0, .6);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ground: #12142A; --ground-2: #1A1C36; --surface: #1B1E3A; --raise: #202443;
  --text: #E9E8F4; --ink: #F6F4FF; --muted: #A4A6C0; --line: #2D3056;
  --accent: #FF7A3D; --accent-hover: #FF9160; --accent-ink: #1A0E06; --accent-soft: #3B2519;
  --navy: #0B0D1F; --navy-2: #171A38; --navy-ink: #F4F2FF; --navy-muted: #9A9CC4;
  --good: #5CD39A; --good-soft: #173A2B; --bad: #FF7B72; --star: #F5B83D;
  --t1: #2E2530; --t2: #1F2F32; --t3: #232A4A; --t4: #30243A; --t5: #2F2C26; --t6: #29244A;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, .6);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
img { max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ground); color: var(--text);
  font: 400 15px/1.55 var(--f-body); -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); margin: 0; text-wrap: balance; letter-spacing: -.01em; }
p { margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.mono { font-family: var(--f-mono); font-size: .86em; letter-spacing: .01em; }
.muted { color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  background: var(--accent); color: var(--accent-ink); transition: background .15s, transform .15s;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--ground); }
.btn.navy { background: var(--navy); color: var(--navy-ink); }
.btn.navy:hover { background: var(--navy-2); }
.btn.sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.link { color: var(--accent); font-weight: 700; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.icon-btn {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 12px; font-weight: 600; color: var(--text); padding: 4px 6px;
}
.icon-btn svg { width: 22px; height: 22px; }
.badge-dot {
  position: absolute; top: -2px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: var(--accent); color: var(--accent-ink);
  font: 700 11px/18px var(--f-body); text-align: center;
}

/* ---------- Header ---------- */
.announce { background: var(--navy); color: var(--navy-ink); font-size: 13px; }
.announce .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 36px; }
.announce-links { display: flex; gap: 18px; color: var(--navy-muted); }
.announce-links a:hover { color: var(--navy-ink); }
.announce-ticker { font-weight: 600; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.announce-ticker b { color: #FFB38F; }

.site-header { position: sticky; top: 0; z-index: 40; background: var(--ground); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; }
.logo-word { font: 800 22px/1 var(--f-display); color: var(--ink); letter-spacing: -.03em; }
.logo-word i { font-style: normal; color: var(--accent); }
.logo-sub { display: block; font: 500 10.5px/1 var(--f-mono); color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.search { flex: 1; max-width: 520px; position: relative; }
.search input {
  width: 100%; height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--raise);
  padding: 0 18px 0 44px; font-size: 14.5px; transition: border-color .15s;
}
.search input:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.search > svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.search-pop {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); padding: 8px; z-index: 50; max-height: 420px; overflow: auto;
}
.search-pop a { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: 10px; }
.search-pop a:hover, .search-pop a.on { background: var(--raise); }
.search-pop .thumb { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.search-pop .thumb svg { width: 88%; }
.search-pop .empty { padding: 14px; color: var(--muted); font-size: 14px; }
.head-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav { display: flex; gap: 4px; height: 46px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a { padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 14.5px; white-space: nowrap; color: var(--text); }
.nav a:hover { background: var(--raise); }
.nav a.on { background: var(--accent-soft); color: var(--accent-hover); }
.nav .tag { font: 700 9.5px/1 var(--f-body); background: var(--accent); color: var(--accent-ink); padding: 3px 6px; border-radius: 6px; margin-left: 6px; vertical-align: 2px; }
.theme-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero { background: var(--ground-2); border-radius: 28px; margin-top: 20px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 24px; padding: 48px 56px; }
.eyebrow { font: 600 12px/1 var(--f-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--accent-hover); }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); line-height: .98; font-weight: 800; letter-spacing: -.035em; margin: 14px 0 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lede { font-size: 17px; max-width: 46ch; color: var(--muted); }
.hero-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats div { font-size: 13px; color: var(--muted); }
.hero-stats b { display: block; font: 800 22px/1.1 var(--f-display); color: var(--ink); }
.twin-stage { position: relative; }
.twin-art { position: relative; aspect-ratio: 1 / .86; }
.twin-art .human { position: absolute; left: 2%; top: 0; width: 70%; }
.twin-art .pet { position: absolute; right: 0; bottom: 2%; width: 50%; filter: drop-shadow(0 12px 18px rgba(28,33,80,.18)); }
.twin-art svg { width: 100%; height: auto; display: block; }
.twin-art .human svg path, .twin-art .pet svg path { transition: fill .35s; }
.twin-controls { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.twin-controls span { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 4px; }
.tagline-chip {
  position: absolute; left: 6%; bottom: 8%; background: var(--surface); border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--shadow); font-size: 13px; line-height: 1.3; max-width: 190px;
}
.tagline-chip b { font-family: var(--f-display); color: var(--ink); }

/* ---------- Swatches, chips ---------- */
.swatch {
  width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14);
  outline: 2px solid transparent; outline-offset: 2px; transition: outline-color .15s, transform .15s;
}
.swatch:hover { transform: scale(1.08); }
.swatch.on { outline-color: var(--ink); }
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--surface); font-weight: 600; font-size: 14px; transition: all .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--ground); }
.size-btn {
  min-width: 56px; height: 48px; padding: 0 12px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--surface); font-weight: 700; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.1;
}
.size-btn small { font: 500 10.5px/1 var(--f-mono); color: var(--muted); margin-top: 3px; }
.size-btn:hover { border-color: var(--ink); }
.size-btn.on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-hover); }
.size-btn.on small { color: var(--accent-hover); }
.size-btn.out { opacity: .4; text-decoration: line-through; pointer-events: none; }

/* ---------- Sections ---------- */
.section { padding: 48px 0 8px; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sec-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.025em; }
.sec-head p { color: var(--muted); margin-top: 4px; }

.cats { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.cat { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; font-weight: 700; font-size: 14px; }
.cat-circle { width: 100%; max-width: 124px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; overflow: hidden; transition: transform .2s; }
.cat-circle svg { width: 78%; height: auto; }
.cat:hover .cat-circle { transform: translateY(-4px) rotate(-3deg); }
.cat small { display: block; font: 500 11.5px/1.2 var(--f-body); color: var(--muted); }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Product cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 60px) / 4); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }
.card { display: flex; flex-direction: column; background: var(--surface); border-radius: 18px; border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-media { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.card-media svg { width: 78%; height: auto; transition: transform .35s; }
.card:hover .card-media svg { transform: scale(1.04) rotate(-1.5deg); }
.card-badge {
  position: absolute; top: 12px; left: 12px; font: 700 11px/1 var(--f-body); letter-spacing: .02em; text-transform: uppercase;
  background: var(--navy); color: var(--navy-ink); padding: 6px 9px; border-radius: 8px;
}
.card-badge.hot { background: var(--accent); color: var(--accent-ink); }
.card-badge.new { background: var(--good); color: #fff; }
.wish {
  position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; background: var(--surface);
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: transform .15s;
}
.wish svg { width: 19px; height: 19px; }
.wish:hover { transform: scale(1.1); }
.wish.on svg { fill: var(--accent); stroke: var(--accent); }
.card-body { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px 16px; flex: 1; }
.card-for { font: 500 11px/1 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.card-title { font: 700 15.5px/1.3 var(--f-body); color: var(--ink); }
.card-title:hover { color: var(--accent-hover); }
.rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; }
.rating .star { color: var(--star); }
.rating .count { color: var(--muted); font-weight: 500; }
.price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; font-variant-numeric: tabular-nums; }
.price b { font-size: 17px; color: var(--ink); }
.price s { color: var(--muted); font-size: 13.5px; }
.price .off { color: var(--good); font-weight: 700; font-size: 13px; }
.card-swatches { display: flex; gap: 5px; }
.card-swatches i { width: 14px; height: 14px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.card .btn { margin-top: auto; }
.card-foot { margin-top: auto; padding-top: 6px; }

/* ---------- Promo tiles ---------- */
.promos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promo { position: relative; border-radius: 24px; padding: 34px; overflow: hidden; min-height: 250px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.promo h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.025em; max-width: 14ch; line-height: 1.05; }
.promo p { max-width: 32ch; color: var(--muted); }
.promo .btn { align-self: flex-start; margin-top: 8px; }
.promo .promo-art { position: absolute; right: -10px; bottom: -14px; width: 46%; }
.promo .promo-art svg { width: 100%; height: auto; }
.promo.dark { background: var(--navy); }
.promo.dark h3 { color: var(--navy-ink); }
.promo.dark p { color: var(--navy-muted); }
.promo.dark .eyebrow { color: #FFB38F; }
.promo > :not(.promo-art) { position: relative; z-index: 1; }

/* ---------- Size finder ---------- */
.finder { background: var(--t3); border-radius: 24px; padding: 32px 36px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: center; }
.finder h3 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.finder-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.select, .input {
  height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface); padding: 0 14px; font-size: 15px; min-width: 0;
}
.select:focus, .input:focus, textarea.input:focus { outline: none; border-color: var(--accent); }
.finder-result { background: var(--surface); border-radius: 18px; padding: 22px; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; }
.size-big { width: 96px; height: 96px; border-radius: 22px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font: 800 38px/1 var(--f-display); }
.measure { display: grid; grid-template-columns: repeat(3, auto); gap: 4px 18px; margin: 8px 0 12px; font-variant-numeric: tabular-nums; }
.measure dt { font: 500 11px/1.2 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.measure dd { margin: 0; font-weight: 700; color: var(--ink); }

/* ---------- Reviews, USPs ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--ground-2); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.review q { font: 500 16.5px/1.5 var(--f-body); color: var(--text); quotes: "“" "”"; }
.step-n { font: 800 34px/1 var(--f-display); color: var(--accent); }
.step-t { font: 800 20px/1.2 var(--f-display); color: var(--ink); }
.card-fab { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.avatar svg { width: 80%; }
.review-who b { display: block; color: var(--ink); }
.review-who span { font-size: 13px; color: var(--muted); }
.wore { font: 500 11.5px/1 var(--f-mono); background: var(--surface); padding: 6px 9px; border-radius: 8px; align-self: flex-start; color: var(--muted); }

.usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.usp { padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.usp + .usp { border-left: 1px solid var(--line); }
.usp-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; flex-shrink: 0; }
.usp-ic svg { width: 22px; height: 22px; }
.usp b { display: block; color: var(--ink); font-family: var(--f-display); font-size: 16px; }
.usp span { font-size: 13.5px; color: var(--muted); }

.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 2px; font-weight: 700; font-size: 16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 26px/1 var(--f-display); color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 2px 18px; color: var(--muted); max-width: 65ch; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--navy-muted); margin-top: 64px; padding: 52px 0 26px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; }
.footer h4 { color: var(--navy-ink); font-size: 15px; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a:hover { color: var(--navy-ink); }
.footer .logo-word { color: var(--navy-ink); }
.news { display: flex; gap: 8px; margin-top: 16px; max-width: 380px; }
.news input { flex: 1; height: 44px; border-radius: 999px; border: 1px solid #3A4080; background: var(--navy-2); color: var(--navy-ink); padding: 0 16px; min-width: 0; }
.news input::placeholder { color: var(--navy-muted); }
.foot-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid #2E3470; margin-top: 40px; padding-top: 20px; font-size: 13px; }
.pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-row span { border: 1px solid #3A4080; border-radius: 6px; padding: 3px 8px; font: 500 11px/1.4 var(--f-mono); color: var(--navy-ink); }

/* ---------- Shop ---------- */
.crumbs { display: flex; gap: 8px; font-size: 13px; color: var(--muted); padding: 18px 0 4px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }
.shop-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; padding: 8px 0 20px; }
.shop-head h1 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.03em; }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: start; }
.filters { position: sticky; top: 140px; display: flex; flex-direction: column; gap: 22px; }
.filter-group h4 { font: 600 11.5px/1 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14.5px; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); }
.check .n { margin-left: auto; font: 500 12px/1 var(--f-mono); color: var(--muted); }
.filter-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-sizes .chip { height: 32px; padding: 0 11px; font-size: 13px; }
.range-row { display: flex; justify-content: space-between; font-size: 13px; font-variant-numeric: tabular-nums; margin-top: 6px; }
input[type="range"] { width: 100%; accent-color: var(--accent); }
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.active-filters .chip { height: 30px; font-size: 13px; }
.empty-state { text-align: center; padding: 60px 20px; background: var(--ground-2); border-radius: 24px; }
.empty-state h3 { font-size: 24px; margin: 12px 0 6px; }
.empty-state p { color: var(--muted); margin-bottom: 18px; }
.filter-toggle { display: none; }
.shop-layout .grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .shop-layout .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .shop-layout .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .shop-layout .grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; padding-top: 8px; }
.gallery { position: sticky; top: 140px; display: grid; grid-template-columns: 76px 1fr; gap: 14px; }
.thumbs { display: flex; flex-direction: column; gap: 10px; }
.thumbs button { aspect-ratio: 1; border-radius: 14px; overflow: hidden; border: 2px solid transparent; display: grid; place-items: center; }
.thumbs button.on { border-color: var(--ink); }
.thumbs svg { width: 80%; }
.main-img { border-radius: 24px; aspect-ratio: 1; display: grid; place-items: center; position: relative; }
.main-img svg { width: 76%; }
.main-img .view-label { position: absolute; bottom: 16px; left: 16px; font: 500 11.5px/1 var(--f-mono); background: var(--surface); padding: 7px 10px; border-radius: 8px; color: var(--muted); }
.pdp-info { display: flex; flex-direction: column; gap: 20px; }
.pdp-info h1 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.pdp-price b { font-size: 26px; }
.tax { font-size: 12.5px; color: var(--muted); }
.opt-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-weight: 700; color: var(--ink); }
.opt-head span { font-weight: 500; color: var(--muted); }
.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; height: 46px; }
.qty button { width: 40px; height: 100%; font-size: 18px; font-weight: 700; }
.qty span { min-width: 28px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }
.qty.sm { height: 34px; }
.qty.sm button { width: 30px; font-size: 15px; }
.buy-row { display: flex; gap: 10px; flex-wrap: wrap; }
.buy-row .btn { flex: 1; min-width: 150px; }
.pin-box { background: var(--raise); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.pin-row { display: flex; gap: 8px; }
.pin-row .input { flex: 1; }
.pin-msg { font-size: 13.5px; }
.pin-msg.ok { color: var(--good); }
.pin-msg.err { color: var(--bad); }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.perks div { background: var(--ground-2); border-radius: 14px; padding: 12px; font-size: 12.5px; line-height: 1.35; color: var(--muted); }
.perks b { display: block; color: var(--ink); font-size: 13.5px; }
.acc details { border-top: 1px solid var(--line); }
.acc details:last-child { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 15px 0; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--accent); font-size: 20px; line-height: 1; }
.acc details[open] summary::after { content: "–"; }
.acc .acc-body { padding-bottom: 16px; color: var(--muted); font-size: 14.5px; }
.acc ul { margin: 0; padding-left: 18px; display: grid; gap: 4px; }
.personal { display: flex; flex-direction: column; gap: 8px; background: var(--t5); border-radius: 16px; padding: 16px; }
.personal .input { width: 100%; }
.twin-note { display: flex; gap: 10px; align-items: center; background: var(--accent-soft); color: var(--accent-hover); border-radius: 12px; padding: 10px 14px; font-size: 13.5px; font-weight: 600; }

/* ---------- Size table ---------- */
.table-wrap { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; font-size: 14px; }
.size-table th, .size-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.size-table th { font: 600 11px/1 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.size-table td:first-child { font-weight: 800; color: var(--ink); }
.size-table tr.hl td { background: var(--accent-soft); }

/* ---------- Drawer & modal ---------- */
.scrim { position: fixed; inset: 0; background: rgba(12, 14, 36, .5); z-index: 80; opacity: 0; transition: opacity .2s; }
.scrim.show { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--surface); z-index: 90;
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.drawer.show { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 20px; }
.close-btn { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--raise); }
.close-btn svg { width: 18px; height: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 12px; }
.ship-bar { background: var(--good-soft); border-radius: 12px; padding: 12px 14px; font-size: 13.5px; }
.ship-bar .track { height: 6px; border-radius: 3px; background: rgba(30,142,90,.18); margin-top: 8px; overflow: hidden; }
.ship-bar .fill { height: 100%; background: var(--good); border-radius: 3px; transition: width .3s; }
.line-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 12px; align-items: start; }
.line-item .thumb { width: 76px; height: 76px; border-radius: 14px; display: grid; place-items: center; overflow: hidden; }
.line-item .thumb svg { width: 82%; }
.li-title { font-weight: 700; color: var(--ink); font-size: 14.5px; line-height: 1.3; }
.li-meta { font: 500 12px/1.4 var(--f-mono); color: var(--muted); margin: 3px 0 8px; }
.li-price { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--ink); }
.li-remove { font-size: 12.5px; color: var(--muted); text-decoration: underline; margin-top: 6px; }
.li-remove:hover { color: var(--bad); }
.coupon { display: flex; gap: 8px; }
.coupon .input { flex: 1; height: 42px; text-transform: uppercase; }
.coupon-hints { display: flex; gap: 6px; flex-wrap: wrap; }
.coupon-hints button { font: 500 11.5px/1 var(--f-mono); border: 1.5px dashed var(--accent); color: var(--accent-hover); padding: 6px 8px; border-radius: 8px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.sum-row.total { font-size: 18px; font-weight: 800; color: var(--ink); padding-top: 8px; border-top: 1px dashed var(--line); }
.sum-row .save { color: var(--good); font-weight: 600; }

.modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(.98); opacity: 0; z-index: 95;
  width: min(620px, calc(100% - 28px)); max-height: calc(100vh - 40px); overflow: auto; background: var(--surface);
  border-radius: 24px; padding: 26px; transition: all .2s;
}
.modal.show { opacity: 1; transform: translate(-50%, -50%); }
.modal h3 { font-size: 22px; margin-bottom: 4px; }
.qa-grid { display: grid; grid-template-columns: 170px 1fr; gap: 20px; }
.qa-grid .thumb { border-radius: 18px; aspect-ratio: 1; display: grid; place-items: center; }
.qa-grid .thumb svg { width: 80%; }

/* ---------- Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; padding-top: 10px; }
.steps { display: flex; gap: 8px; align-items: center; font-size: 13.5px; font-weight: 600; color: var(--muted); margin: 6px 0 22px; flex-wrap: wrap; }
.steps .dot { width: 26px; height: 26px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--raise); font: 700 12px/1 var(--f-mono); margin-right: 6px; }
.steps .on { color: var(--ink); }
.steps .on .dot { background: var(--accent); color: var(--accent-ink); }
.steps .sep { width: 28px; height: 1.5px; background: var(--line); }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.panel + .panel { margin-top: 18px; }
.panel h2 { font-size: 20px; margin-bottom: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field .input { width: 100%; }
.field .err { font-size: 12.5px; color: var(--bad); min-height: 0; }
.field.invalid .input { border-color: var(--bad); }
.pay-opt { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; }
.pay-opt + .pay-opt { margin-top: 10px; }
.pay-opt:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.pay-opt input { accent-color: var(--accent); width: 18px; height: 18px; margin-top: 2px; }
.pay-opt b { display: block; color: var(--ink); }
.pay-opt span { font-size: 13px; color: var(--muted); }
.summary { position: sticky; top: 140px; }
.summary .line-item { grid-template-columns: 56px 1fr auto; }
.summary .line-item .thumb { width: 56px; height: 56px; border-radius: 12px; }

/* ---------- Orders ---------- */
.order-card { border: 1px solid var(--line); border-radius: 20px; padding: 22px; display: flex; flex-direction: column; gap: 16px; background: var(--surface); }
.order-card + .order-card { margin-top: 16px; }
.order-top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.order-top b { font-family: var(--f-display); color: var(--ink); font-size: 18px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.tl-step { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); text-align: center; position: relative; }
.tl-step::before { content: ""; position: absolute; top: 11px; left: -50%; width: 100%; height: 3px; background: var(--line); z-index: 0; }
.tl-step:first-child::before { display: none; }
.tl-step.done::before { background: var(--good); }
.tl-step i { width: 24px; height: 24px; border-radius: 50%; background: var(--line); position: relative; z-index: 1; display: grid; place-items: center; font-style: normal; font-size: 12px; color: #fff; }
.tl-step.done { color: var(--ink); }
.tl-step.done i { background: var(--good); }
.order-items { display: flex; gap: 10px; flex-wrap: wrap; }
.order-items .thumb { width: 64px; height: 64px; border-radius: 12px; display: grid; place-items: center; }
.order-items .thumb svg { width: 80%; }
.confirm-hero { text-align: center; background: var(--good-soft); border-radius: 28px; padding: 44px 24px; margin-top: 20px; }
.confirm-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.03em; margin: 12px 0 8px; }
.check-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--good); color: #fff; display: inline-grid; place-items: center; }

/* ---------- Toast ---------- */
.toasts { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast { background: var(--ink); color: var(--ground); padding: 12px 18px; border-radius: 14px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center; pointer-events: auto; animation: toastIn .25s ease-out; }
.toast a { color: var(--accent); font-weight: 800; }
@keyframes toastIn { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(4, 1fr); row-gap: 22px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .rail { grid-auto-columns: calc((100% - 40px) / 3); }
  .usps { grid-template-columns: 1fr 1fr; }
  .usp:nth-child(3) { border-left: 0; }
  .usp:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding: 32px 24px; }
  .promos, .finder, .pdp, .checkout { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; background: var(--raise); border-radius: 18px; padding: 18px; }
  .filters.open { display: flex; }
  .filter-toggle { display: inline-flex; }
  .gallery, .summary { position: static; }
  .announce-links { display: none; }
  .head-row { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .icon-btn .lbl { display: none; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rail { grid-auto-columns: 62%; gap: 12px; }
  .card-body { padding: 12px; }
  .card .btn { height: 38px; font-size: 13.5px; padding: 0 10px; }
  .usps { grid-template-columns: 1fr; }
  .usp + .usp { border-left: 0; border-top: 1px solid var(--line); }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; order: 2; }
  .thumbs button { width: 64px; }
  .perks { grid-template-columns: 1fr; }
  .qa-grid { grid-template-columns: 1fr; }
  .qa-grid .thumb { max-width: 160px; }
  .finder-result { grid-template-columns: 1fr; }
  .promo { padding: 26px; }
  .promo .promo-art { width: 40%; opacity: .9; }
  .foot-grid { grid-template-columns: 1fr; }
}
