:root {
  --bg: #ffffff;
  --ink: #121110;
  --ink-2: #34302c;
  --muted: #7a726b;
  --line: #e6e1db;
  --tile: #f3f0ec;
  --beige: #e9e1d7;
  --wood: #5a3a27;
  --wood-deep: #2a1c14;
  --accent: #9a6a45;
  --accent-light: #d7ae82;
  --sans: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 12px;
  --gut: 12px;
  --nav-h: 60px;
  --wood-grain:
    radial-gradient(120% 80% at 80% 10%, rgba(215, 174, 130, .18), transparent 60%),
    repeating-linear-gradient(94deg, rgba(255,255,255,.022) 0 2px, transparent 2px 11px),
    repeating-linear-gradient(86deg, rgba(0,0,0,.10) 0 1px, transparent 1px 27px),
    linear-gradient(155deg, #4a3121 0%, #2e1f16 48%, #17100b 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 70px; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.locked { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }
[hidden] { display: none !important; }
::selection { background: var(--wood); color: #fff; }

/* ---------- Type ---------- */
.label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .01em; margin: 0; color: var(--ink); }
.label.light { color: #fff; }
.label.dim { opacity: .55; }
.label.center, .display.center, .small-caps.center { text-align: center; margin-left: auto; margin-right: auto; }
.display {
  font-weight: 400; font-size: clamp(34px, 6.2vw, 66px); line-height: 1.02; letter-spacing: -0.045em; margin: 0;
}
.display em, .hero-title em, .about-text em, .menu-links em, .pill i {
  font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em;
}
.display em { font-size: 1.06em; }
.display.light { color: #fff; }
.accent-dot { color: var(--accent); }
.small-caps { font-size: 12.5px; text-transform: uppercase; line-height: 1.4; max-width: 560px; margin: 0; letter-spacing: .005em; }

.frame { max-width: 1480px; margin: 0 auto; padding: 0 var(--gut); }
@media (min-width: 800px) { :root { --gut: 20px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 26px;
  border-radius: 100px; border: 1px solid transparent; font-size: 13px; text-transform: uppercase; letter-spacing: .02em;
  transition: background .3s var(--ease), color .3s, border-color .3s, transform .15s; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--wood); }
.btn-wood { background: var(--wood); color: #fff; }
.btn-wood:hover { background: var(--wood-deep); }
.btn-outline { border-color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.wa-ico .fill { fill: currentColor; stroke: none; }
.text-btn { background: none; border: 0; padding: 6px; font-size: 12px; text-transform: uppercase; color: var(--muted); }
.text-btn:hover { color: var(--ink); }
.icon-btn {
  width: 42px; height: 42px; border: 0; background: none; border-radius: 50%; display: grid; place-items: center; position: relative;
  -webkit-tap-highlight-color: transparent; transition: background .2s;
}
.icon-btn:hover { background: var(--tile); }
.pill, .pill-btn {
  display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 20px; border-radius: 100px;
  border: 1px solid var(--line); background: #fff; font-size: 15px; color: var(--muted); white-space: nowrap;
  transition: background .3s var(--ease), color .3s, border-color .3s; -webkit-tap-highlight-color: transparent;
}
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.pill sup { font-size: 10px; opacity: .6; margin-left: -3px; }
.pill i { font-size: 1.12em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h); background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.5) blur(14px); -webkit-backdrop-filter: saturate(1.5) blur(14px);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 calc(var(--gut) - 6px);
  max-width: 1480px; margin: 0 auto;
}
.nav::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); opacity: 0; transition: opacity .3s; }
.nav.scrolled::after { opacity: 1; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 4px; }
.nav-right { justify-content: flex-end; }
.nav-link { background: none; border: 0; padding: 8px 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .01em; }
.nav-link:hover { opacity: .6; }
.nav-link.accent { color: var(--accent); }
.logo {
  font-family: var(--serif); font-size: 30px; line-height: 1; letter-spacing: -0.01em; white-space: nowrap; display: flex; align-items: center; gap: 1px;
}
.logo em { font-style: italic; }
.bag-dot {
  position: absolute; top: 5px; right: 3px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 10px; background: var(--wood);
  color: #fff; font-size: 10px; display: grid; place-items: center; font-weight: 500;
}
.pop { animation: pop .5s var(--ease); }
@keyframes pop { 0% { transform: scale(.5); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }
.only-d { display: none !important; }
@media (min-width: 900px) {
  .only-m { display: none !important; }
  .only-d { display: inline-flex !important; }
  .logo { font-size: 34px; }
}

/* ---------- Search ---------- */
.search-pop { position: sticky; top: var(--nav-h); z-index: 45; padding: 8px var(--gut) 12px; max-width: 1480px; margin: 0 auto; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); animation: drop .4s var(--ease); }
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } }
.search-box { display: flex; align-items: center; gap: 12px; border: 1px solid var(--ink); border-radius: 100px; padding: 4px 4px 4px 18px; }
.search-box svg { color: var(--muted); }
.search-box input { flex: 1; min-width: 0; border: 0; outline: 0; font: inherit; font-size: 16px; background: none; padding: 8px 0; text-transform: uppercase; }
.search-box input::placeholder { color: #aaa39c; }
.pill-btn { min-height: 38px; padding: 0 16px; background: var(--ink); color: #fff; border: 0; font-size: 12px; text-transform: uppercase; }

/* ---------- Hero ---------- */
.hero-frame { padding-top: 2px; }
.hero {
  position: relative; border-radius: var(--r); overflow: hidden; color: #fff; background: var(--wood-grain);
  height: calc(100svh - var(--nav-h) - 16px); min-height: 520px; max-height: 860px; display: grid; place-items: center; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media > img, .hero-media > video { width: 100%; height: 100%; object-fit: cover; }
.hero-media.has-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.08) 40%, rgba(0,0,0,.42)); }
.hero-media:not(.has-media)::before {
  content: ''; position: absolute; inset: -20%; opacity: .5;
  background: radial-gradient(40% 50% at 30% 60%, rgba(215,174,130,.16), transparent 70%), radial-gradient(30% 40% at 75% 30%, rgba(255,255,255,.06), transparent 70%);
  animation: float 14s ease-in-out infinite alternate;
}
@keyframes float { to { transform: translate(4%, -3%) scale(1.05); } }
.hero-center { text-align: center; padding: 0 20px; }
.hero-eyebrow { margin: 0 0 4px; font-size: clamp(22px, 3.4vw, 36px); letter-spacing: -0.04em; font-weight: 400; }
.hero-title {
  margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(64px, 14vw, 180px); line-height: .9; letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-title .accent-dot, .display.light .accent-dot { color: var(--accent-light); }
.hero-center > * { opacity: 0; transform: translateY(30px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.hero.in .hero-center > * { opacity: 1; transform: none; }
.hero.in .hero-center > :nth-child(2) { transition-delay: .12s; }
.hero-bar {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px;
  font-size: 12px; text-transform: uppercase;
}
.hero-bar-left, .hero-bar-right { display: flex; gap: 22px; align-items: center; }
.hero-bar a { display: inline-flex; align-items: center; gap: 6px; opacity: .92; }
.hero-bar a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.hero-bar svg { width: 14px; height: 14px; }
@media (max-width: 599px) { .hero-bar { justify-content: center; } .hero-bar-left { display: none; } }

/* ---------- Intro / features ---------- */
.intro { display: grid; gap: 22px; padding-top: 56px; padding-bottom: 20px; }
.intro-copy { display: grid; gap: 28px; }
@media (min-width: 900px) {
  .intro { grid-template-columns: 1fr 1.9fr; padding-top: 72px; column-gap: 20px; }
  .intro-copy { gap: 150px; padding-bottom: 44px; }
  .intro-copy .display { max-width: 15ch; }
  .feature-row { grid-column: 1 / -1; }
}
.feature-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 12px calc(var(--gut) * -1) 0; padding: 0 var(--gut); scrollbar-width: none;
}
.feature-row::-webkit-scrollbar { display: none; }
@media (min-width: 700px) { .feature-row { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin: 12px 0 0; padding: 0; gap: 18px; } }
.feature {
  position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; background: var(--beige); scroll-snap-align: start;
}
.feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature::after { content: ''; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.45)); }
.feature-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; color: #fff; display: flex; justify-content: space-between; align-items: end; gap: 12px;
  font-size: 13px; text-transform: uppercase;
}
.feature-cap b { font-weight: 500; }
@media (hover: hover) { .feature:hover img { transform: scale(1.05); } }

/* ---------- Split ---------- */
.split { position: relative; margin-top: 56px; border-radius: var(--r); overflow: hidden; background: var(--wood-grain); display: grid; }
.split-media { position: relative; min-height: 300px; order: -1; }
.split-media img, .split-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media:not(.has-media)::after {
  content: 'U'; position: absolute; right: 4%; bottom: -12%; font-family: var(--serif); font-style: italic; font-size: 380px; line-height: 1; color: rgba(255,255,255,.07);
}
.split-card { position: relative; background: #fff; margin: 0 10px 10px; margin-top: -40px; border-radius: 10px; padding: 26px 20px 20px; display: grid; gap: 20px; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; min-height: 640px; padding: 18px; }
  .split-media { order: 0; position: absolute; inset: 0; min-height: 0; }
  .split-card { margin: 0; padding: 40px; gap: 24px; align-content: start; grid-template-rows: auto auto 1fr auto; }
  .split-card .small-caps { align-self: end; max-width: 460px; }
}
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cat-tile { background: none; border: 0; padding: 0; display: grid; gap: 10px; font-size: 11.5px; text-transform: uppercase; text-align: center; -webkit-tap-highlight-color: transparent; }
.tile-ico { aspect-ratio: 1 / 1.1; background: var(--tile); border-radius: 6px; display: grid; place-items: center; transition: background .3s var(--ease), color .3s; }
.tile-ico svg { width: 44%; height: auto; stroke-width: 1.2; }
.cat-tile:hover .tile-ico { background: var(--ink); color: #fff; }
@media (min-width: 900px) { .cat-tile { font-size: 13px; } }

/* ---------- Collection ---------- */
.collection { padding-top: 88px; }
.coll-head { display: grid; gap: 16px; padding-bottom: 32px; }
.coll-head .small-caps { max-width: 620px; }
.pills-bar {
  position: sticky; top: var(--nav-h); z-index: 30; display: flex; align-items: center; gap: 8px; padding: 10px 0;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  margin: 0 calc(var(--gut) * -1); padding-left: var(--gut); padding-right: var(--gut);
}
.pills { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
.pills::-webkit-scrollbar { display: none; }
.filter-wrap { position: relative; flex: none; }
.filter-btn { color: var(--ink); border-color: var(--ink); }
.filter-btn svg { width: 17px; height: 17px; }
.filter-count { width: 18px; height: 18px; border-radius: 50%; background: var(--wood); color: #fff; font-size: 10px; display: grid; place-items: center; }
.filter-pop {
  position: absolute; right: 0; top: calc(100% + 8px); width: 270px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px; display: grid; gap: 16px; box-shadow: 0 20px 50px rgba(18,17,16,.12); animation: drop .3s var(--ease);
}
.filter-group { display: grid; gap: 10px; }
.sort-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sort-opts button { border: 1px solid var(--line); background: #fff; border-radius: 100px; padding: 9px 8px; font-size: 13px; }
.sort-opts button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.switch { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; text-transform: uppercase; cursor: pointer; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch-track { width: 40px; height: 24px; border-radius: 20px; background: var(--line); position: relative; transition: background .3s; flex: none; }
.switch-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .35s var(--ease); }
.switch input:checked + .switch-track { background: var(--ink); }
.switch input:checked + .switch-track .switch-thumb { transform: translateX(16px); }
.switch input:focus-visible + .switch-track { outline: 2px solid var(--accent); outline-offset: 2px; }

.result-note { margin: 12px 0 0; font-size: 13px; text-transform: uppercase; color: var(--muted); }
.result-note b { color: var(--ink); font-weight: 500; }

.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 10px; padding-top: 14px; }
@media (min-width: 760px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 16px; } }
@media (min-width: 1120px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 18px; } }

.card { display: flex; flex-direction: column; opacity: 0; transform: translateY(20px); animation: rise .8s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.card-media { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: 10px; overflow: hidden; background: var(--beige); -webkit-tap-highlight-color: transparent; }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity .6s var(--ease); }
.card-media .img-alt { opacity: 0; }
@media (hover: hover) {
  .card:hover .card-media img { transform: scale(1.045); }
  .card:hover .card-media .img-alt { opacity: 1; }
}
.card.soldout .card-media img { filter: grayscale(.55) contrast(.95); opacity: .82; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; text-transform: uppercase; letter-spacing: .02em;
  padding: 5px 10px; border-radius: 100px; background: rgba(255,255,255,.92); color: var(--ink); white-space: nowrap;
}
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #5f7d5c; }
.status-pill.sold { background: var(--ink); color: #fff; }
.status-pill.sold::before { background: var(--accent-light); }
.card-media .status-pill { position: absolute; top: 10px; left: 10px; z-index: 2; }
.card-body { padding-top: 12px; display: flex; flex-direction: column; flex: 1; }
.card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.card-name { margin: 0; font-size: 14.5px; font-weight: 400; text-transform: uppercase; line-height: 1.25; letter-spacing: -0.01em; min-width: 0; }
.card-price { font-size: 14.5px; font-weight: 600; white-space: nowrap; letter-spacing: -0.01em; }
.card-sub { margin-top: 5px; display: flex; align-items: center; gap: 6px; font-size: 10.5px; text-transform: uppercase; color: var(--muted); min-height: 14px; }
.card-sub .names { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dots { display: inline-flex; gap: 3px; flex: none; }
.dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); flex: none; display: inline-block; }
.card-btn {
  margin-top: 12px; min-height: 40px; border-radius: 100px; border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-size: 12px; text-transform: uppercase; letter-spacing: .02em; transition: background .3s, color .3s; width: 100%; -webkit-tap-highlight-color: transparent;
}
.card-btn:hover { background: var(--wood); border-color: var(--wood); }
.card.soldout .card-btn { background: #fff; color: var(--ink); }
.card.soldout .card-btn:hover { background: var(--ink); color: #fff; }
@media (max-width: 480px) {
  .card-row { flex-direction: column; gap: 2px; }
  .card-name, .card-price { font-size: 13.5px; }
}

.skeleton { opacity: 1; transform: none; animation: none; }
.skeleton .card-media { background: linear-gradient(100deg, var(--beige) 30%, #f3eee8 50%, var(--beige) 70%); background-size: 300% 100%; animation: shimmer 1.4s linear infinite; }
.sk-line { height: 12px; margin-top: 12px; width: 70%; border-radius: 4px; background: var(--tile); }
.sk-line.short { width: 40%; }
@keyframes shimmer { to { background-position: -150% 0; } }
.empty { text-align: center; padding: 60px 16px; display: grid; gap: 14px; justify-items: center; }
.empty .display { font-size: 40px; }

/* ---------- Marquee ---------- */
.marquee {
  margin-top: 96px; border-radius: var(--r); overflow: hidden; color: #fff; padding: 22px 0;
  background: linear-gradient(90deg, #121110 0%, #2a1c14 55%, #5a3a27 100%);
}
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-size: clamp(40px, 7vw, 86px); letter-spacing: -0.045em; white-space: nowrap; padding-right: .4em; line-height: 1; }
.marquee-track em { font-family: var(--serif); font-style: italic; letter-spacing: -0.01em; }
.marquee-track .sep { color: rgba(255,255,255,.35); }
.marquee-track .accent-dot { color: var(--accent-light); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Dark block ---------- */
#how { padding-top: 12px; }
.dark-block { background: var(--ink); color: #fff; border-radius: var(--r); padding: 28px 20px; display: grid; gap: 28px; }
.dark-left { display: flex; gap: 24px; }
.dark-right { display: grid; gap: 28px; }
.dark-thumb { width: min(100%, 460px); aspect-ratio: 16 / 11; border-radius: 10px; overflow: hidden; background: var(--wood-grain); }
.dark-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dark-right .display { max-width: 17ch; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 10px; padding: 16px; background: var(--ink); }
.steps span { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1; color: var(--accent-light); }
.steps p { margin: 0; font-size: 13px; text-transform: uppercase; color: rgba(255,255,255,.72); }
.steps b { color: #fff; font-weight: 500; }
.wa-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; color: var(--ink); border-radius: 100px;
  padding: 5px 5px 5px 22px; max-width: 480px; font-size: 13px; text-transform: uppercase; min-height: 58px;
}
.wa-cta-go { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; border-radius: 100px; padding: 0 18px; min-height: 46px; transition: background .3s; }
.wa-cta:hover .wa-cta-go { background: var(--wood); }
.wa-cta svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.wa-cta:hover svg { transform: translateX(3px); }
@media (min-width: 900px) {
  .dark-block { grid-template-columns: 1fr 1.9fr; padding: 40px; min-height: 720px; }
  .dark-right { gap: 36px; align-content: start; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
}

/* ---------- About & footer ---------- */
.about { display: grid; gap: 20px; padding-top: 110px; padding-bottom: 110px; }
.about-text { font-size: clamp(26px, 4.2vw, 46px); line-height: 1.12; letter-spacing: -0.04em; margin: 0; max-width: 24ch; }
@media (min-width: 900px) { .about { grid-template-columns: 1fr 1.9fr; column-gap: 20px; } }
.footer { padding-bottom: calc(var(--gut) + env(safe-area-inset-bottom)); }
.footer-inner { border-top: 1px solid var(--line); padding: 40px 0 28px; display: grid; gap: 36px; }
.footer-logo { font-family: var(--serif); font-size: clamp(88px, 22vw, 260px); line-height: .8; letter-spacing: -0.04em; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-cols div { display: grid; gap: 8px; align-content: start; }
.footer-cols .label { color: var(--muted); margin-bottom: 4px; }
.footer-cols a { font-size: 14px; text-transform: uppercase; width: fit-content; }
.footer-cols a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; text-transform: uppercase; color: var(--muted); padding-bottom: 12px; }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 1.9fr 1fr; align-items: end; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.steps .reveal:nth-child(2) { transition-delay: .1s; }
.steps .reveal:nth-child(3) { transition-delay: .2s; }

/* ---------- Overlays ---------- */
.overlay { position: fixed; inset: 0; z-index: 100; background: rgba(18,17,16,0); transition: background .45s var(--ease); display: flex; }
.overlay.open { background: rgba(18,17,16,.45); }

/* menu */
#menuOverlay { justify-content: flex-start; }
.menu-panel {
  width: min(420px, 100%); height: 100%; background: #fff; display: flex; flex-direction: column; padding: 8px 18px calc(24px + env(safe-area-inset-bottom));
  transform: translateX(-100%); transition: transform .5s var(--ease);
}
.overlay.open .menu-panel { transform: none; }
.menu-head { display: flex; justify-content: space-between; align-items: center; height: 52px; }
.menu-links { display: grid; margin-top: 28px; }
.menu-links a { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 36px; letter-spacing: -0.045em; line-height: 1.05; }
.menu-links sup { font-size: 12px; color: var(--muted); letter-spacing: 0; }
.menu-foot { margin-top: auto; display: flex; gap: 22px; font-size: 13px; text-transform: uppercase; }

/* product sheet */
#sheetOverlay { align-items: flex-end; justify-content: center; }
.sheet {
  position: relative; width: 100%; max-height: 94svh; background: #fff; overflow-y: auto; overscroll-behavior: contain;
  border-radius: 18px 18px 0 0; transform: translateY(100%); transition: transform .55s var(--ease);
}
.overlay.open .sheet { transform: none; }
.sheet-grab { position: absolute; top: 8px; left: 50%; width: 40px; height: 4px; margin-left: -20px; border-radius: 4px; background: rgba(255,255,255,.85); z-index: 3; box-shadow: 0 0 6px rgba(0,0,0,.2); }
.sheet-close {
  position: sticky; top: 12px; float: right; margin: 12px 12px -54px 0; z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.94); display: grid; place-items: center; box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.sheet-close svg { width: 18px; height: 18px; }
@media (min-width: 900px) {
  #sheetOverlay { align-items: center; padding: 28px; }
  .sheet { max-width: 1160px; max-height: min(90vh, 860px); border-radius: 16px; transform: translateY(24px) scale(.985); opacity: 0; transition: transform .5s var(--ease), opacity .35s; }
  .overlay.open .sheet { transform: none; opacity: 1; }
  .sheet-grab { display: none; }
}
.pd { display: grid; }
@media (min-width: 900px) { .pd { grid-template-columns: 1.05fr 1fr; padding: 12px; gap: 12px; } }
.pd-gallery { position: relative; background: var(--beige); overflow: hidden; }
@media (min-width: 900px) { .pd-gallery { position: sticky; top: 12px; align-self: start; border-radius: 10px; } }
.pd-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; aspect-ratio: 4 / 5; }
@media (min-width: 900px) { .pd-track { max-height: calc(min(90vh, 860px) - 24px); } }
.pd-track::-webkit-scrollbar { display: none; }
.pd-track img, .pd-track video { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; }
.pd-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); display: none; place-items: center; }
.pd-arrow.prev { left: 14px; } .pd-arrow.next { right: 14px; }
.pd-arrow svg { width: 18px; height: 18px; }
@media (hover: hover) and (min-width: 900px) { .pd-gallery.multi .pd-arrow { display: grid; } }
.pd-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.pd-dots span { width: 6px; height: 6px; border-radius: 6px; background: rgba(255,255,255,.55); transition: width .4s var(--ease), background .3s; box-shadow: 0 0 3px rgba(0,0,0,.2); }
.pd-dots span.on { width: 20px; background: #fff; }

.pd-info { padding: 24px 20px calc(32px + env(safe-area-inset-bottom)); }
@media (min-width: 900px) { .pd-info { padding: 36px 32px 32px; } }
.pd-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pd-meta .label { color: var(--muted); }
.pd-meta .status-pill { border: 1px solid var(--line); }
.pd-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.pd-name { margin: 0; font-weight: 400; font-size: clamp(32px, 7vw, 50px); line-height: 1; letter-spacing: -0.045em; }
.pd-price { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.pd-code { margin: 10px 0 24px; color: var(--muted); }
.pd-code b { color: var(--ink); font-weight: 500; }
.pd-field { padding: 18px 0; border-top: 1px solid var(--line); }
.pd-label { font-size: 12px; text-transform: uppercase; margin-bottom: 12px; color: var(--muted); }
.pd-label span { color: var(--ink); margin-left: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips.shake { animation: shake .45s; }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.chip {
  min-height: 42px; min-width: 50px; padding: 0 16px; border: 1px solid var(--line); background: #fff; border-radius: 100px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; transition: border-color .25s, background .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.chip[aria-pressed="true"] .dot { box-shadow: 0 0 0 2px #fff; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; }
.stepper button { width: 44px; height: 42px; border: 0; background: none; font-size: 18px; }
.stepper output { min-width: 28px; text-align: center; font-size: 15px; }
.pd-actions { display: grid; gap: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
.pd-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; text-transform: uppercase; line-height: 1.4; }
.pd-preview { margin-top: 18px; border-radius: 10px; background: var(--tile); }
.pd-preview summary { cursor: pointer; padding: 14px 16px; font-size: 12px; text-transform: uppercase; list-style: none; display: flex; justify-content: space-between; }
.pd-preview summary::-webkit-details-marker { display: none; }
.pd-preview summary::after { content: '+'; font-size: 17px; line-height: 1; }
.pd-preview[open] summary::after { content: '−'; }
.pd-preview pre { margin: 0; padding: 0 16px 16px; white-space: pre-wrap; font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.pd-desc { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.pd-desc p { margin: 0 0 12px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.share-btn { margin-top: 10px; color: var(--ink); }
.share-btn svg { width: 16px; height: 16px; }

/* bag drawer */
#bagOverlay { justify-content: flex-end; }
.drawer { width: min(440px, 100%); height: 100%; background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .5s var(--ease); }
.overlay.open .drawer { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 12px 16px 20px; }
.drawer-head .display { font-size: 38px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 0 20px; }
.drawer-foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: grid; gap: 10px; }
.drawer-foot .text-btn { justify-self: center; }
.bag-total { display: flex; justify-content: space-between; align-items: baseline; }
.bag-total b { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.bag-note { margin: 0; font-size: 12px; color: var(--muted); text-transform: uppercase; }
.bag-item { display: grid; grid-template-columns: 80px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); animation: rise .5s var(--ease) both; opacity: 0; }
.bag-item img { width: 80px; aspect-ratio: 4/5; object-fit: cover; background: var(--beige); border-radius: 8px; }
.bag-item h3 { font-size: 14px; font-weight: 400; text-transform: uppercase; margin: 0; }
.bag-item .meta { font-size: 11px; color: var(--muted); margin: 4px 0 10px; text-transform: uppercase; }
.bag-item .row { display: flex; justify-content: space-between; align-items: center; }
.bag-item .row > span { font-weight: 600; font-size: 14px; }
.bag-item .stepper button { width: 34px; height: 32px; font-size: 15px; }
.bag-item .rm { padding: 6px 0; font-size: 11px; }
.bag-empty { text-align: center; padding: 64px 12px; color: var(--muted); display: grid; gap: 10px; }
.bag-empty .display { font-size: 32px; color: var(--ink); }
.bag-empty p { margin: 0; font-size: 13px; text-transform: uppercase; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 200; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 13px 20px; font-size: 13px; border-radius: 100px; opacity: 0; pointer-events: none;
  transition: opacity .35s, transform .45s var(--ease); max-width: calc(100% - 32px); text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Discount / Sale ---------- */
.only-d[hidden], .only-m[hidden] { display: none !important; }
.price-stack { display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.price-sale { color: var(--accent); }
.price-was { color: var(--muted); font-weight: 400; font-size: .86em; text-decoration-thickness: 1px; }
.card-price.price-stack { gap: 2px 7px; }
@media (max-width: 480px) { .card-price.price-stack { justify-content: flex-start; } }
.sale-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2; padding: 5px 10px; border-radius: 100px;
  background: var(--wood); color: #fff; font-size: 11px; font-weight: 500; letter-spacing: .02em;
}
.feature-cap .price-stack { flex-direction: column; align-items: flex-end; gap: 0; }
.feature-cap .price-sale { color: #fff; }
.feature-cap .price-was { color: rgba(255,255,255,.75); }
.pd-price.price-stack { flex-direction: column; align-items: flex-end; gap: 2px; }
.pd-price .price-was { font-size: 15px; }
.pd-sale {
  display: inline-flex; margin: -12px 0 22px; padding: 6px 12px; border-radius: 100px; background: rgba(154,106,69,.12);
  color: var(--wood); font-size: 12px; text-transform: uppercase; letter-spacing: .02em;
}
.pill-sale i { color: var(--accent); }
.pill-sale[aria-selected="true"] { background: var(--wood); border-color: var(--wood); }
.pill-sale[aria-selected="true"] i { color: #fff; }
.sale-link, .menu-sale em { color: var(--accent); }
.bag-item .row > .price-stack { flex-direction: column; align-items: flex-end; gap: 0; }
.bag-item .price-was { font-size: 12px; }

/* ---------- Hero slideshow ---------- */
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.on { opacity: 1; z-index: 1; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.hero-slide.on img, .hero-slide.on video { animation: heroZoom 9s linear forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1.0); } }
.hero-media.has-media::after { z-index: 2; }
.hero-bars { position: absolute; top: 14px; left: 18px; right: 18px; z-index: 3; display: flex; gap: 6px; }
.hero-bars button { flex: 1; padding: 8px 0; border: 0; background: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.hero-bars span { display: block; height: 2px; border-radius: 2px; background: rgba(255,255,255,.32); overflow: hidden; }
.hero-bars i { display: block; height: 100%; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero-bars button:hover span { background: rgba(255,255,255,.5); }
.hero-count { font-variant-numeric: tabular-nums; letter-spacing: .04em; margin-right: 4px; }
.hero-bar-left #heroSocial { display: flex; gap: 22px; }
@media (max-width: 599px) {
  .hero-bar-left { display: flex !important; }
  .hero-bar-left #heroSocial { display: none; }
  .hero-bar { justify-content: space-between; }
}

/* ---------- Hero hover FX ---------- */
.hero { --mx: 0; --my: 0; --gx: 50%; --gy: 50%; }
.hero.fx { cursor: none; }
.hero.fx a, .hero.fx button { cursor: pointer; }
.hero.fx .hero-media { transform: translate3d(calc(var(--mx) * -22px), calc(var(--my) * -16px), 0) scale(1.05); will-change: transform; }
.hero.fx .hero-center { transform: translate3d(calc(var(--mx) * 26px), calc(var(--my) * 18px), 0); will-change: transform; }
.hero.fx .hero-title em { display: inline-block; transform: translate3d(calc(var(--mx) * 14px), calc(var(--my) * 6px), 0); }
.hero.in.fx .hero-center > .hero-eyebrow { transform: translate3d(calc(var(--mx) * -10px), 0, 0); }
.hero-glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity .6s var(--ease);
  background: radial-gradient(520px circle at var(--gx) var(--gy), rgba(255, 232, 205, .22), rgba(255, 232, 205, .06) 40%, transparent 70%);
  mix-blend-mode: soft-light;
}
.hero.hovering .hero-glow { opacity: 1; }
.hero-center { position: relative; z-index: 3; }
.hero-bar { z-index: 3; }
.hero-cursor { position: absolute; left: 0; top: 0; z-index: 4; pointer-events: none; width: 0; height: 0; }
.hero-cursor span {
  position: absolute; left: -46px; top: -46px; width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transform: scale(0); opacity: 0; transition: transform .45s var(--ease), opacity .3s, background .3s;
}
.hero.hovering .hero-cursor span { transform: scale(1); opacity: 1; }
.hero.hovering .hero-cursor.mini span { transform: scale(.14); background: #fff; color: transparent; }
.hero-cursor.press span { animation: cursorPress .45s var(--ease); }
@keyframes cursorPress { 40% { transform: scale(.82); background: rgba(255,255,255,.22); } }

/* ---------- Add-to-request fly animation ---------- */
.fly { position: fixed; z-index: 300; pointer-events: none; will-change: transform; }
.fly-inner {
  width: 100%; height: 100%; background: var(--beige) center / cover no-repeat; border-radius: 12px;
  box-shadow: 0 18px 40px rgba(18,17,16,.28), 0 0 0 3px #fff; will-change: transform;
}
.nav.lift { z-index: 150; background: #fff; }
.bag-hit { animation: bagHit .7s var(--ease); }
@keyframes bagHit {
  0% { transform: scale(1); }
  25% { transform: scale(1.28) rotate(-8deg); }
  50% { transform: scale(.92) rotate(5deg); }
  75% { transform: scale(1.06) rotate(-2deg); }
  100% { transform: scale(1); }
}
.bag-hit::after {
  content: ''; position: absolute; inset: 2px; border-radius: 50%; border: 1.5px solid var(--accent);
  animation: bagRing .7s var(--ease) forwards; pointer-events: none;
}
@keyframes bagRing { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.7); opacity: 0; } }
#pdAdd.added { background: var(--ink); color: #fff; border-color: var(--ink); }

/* header bag icon */
.bag-btn svg { width: 22px; height: 22px; }
.bag-dot { transition: transform .3s var(--ease); }

/* ---------- Store ---------- */
.store { padding-top: 110px; display: grid; gap: 28px; }
.store-head { display: grid; gap: 20px; }
.store-copy { display: grid; gap: 22px; }
@media (min-width: 900px) {
  .store-head { grid-template-columns: 1fr 1.9fr; column-gap: 20px; }
  .store-copy .display { max-width: 16ch; }
}
.store-tabs { margin: 0; }
.store-body { display: grid; gap: 12px; }
@media (min-width: 900px) { .store-body { grid-template-columns: 1fr 1.35fr; gap: 18px; min-height: 560px; } }
.store-card { background: var(--tile); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.store-photo { aspect-ratio: 16 / 10; overflow: hidden; background: var(--beige); }
.store-photo img, .store-photo video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.store-card:hover .store-photo img { transform: scale(1.04); }
.store-info { padding: 22px 20px 20px; display: grid; gap: 16px; flex: 1; align-content: start; }
@media (min-width: 900px) { .store-info { padding: 28px; } }
.store-note { color: var(--accent); }
.store-name { margin: 0; font-weight: 400; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.02; letter-spacing: -0.045em; }
.store-name em { font-family: var(--serif); font-style: italic; letter-spacing: -0.01em; }
.store-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.store-row .label { color: var(--muted); font-size: 11.5px; padding-top: 2px; }
.store-row p { margin: 0; font-size: 15px; line-height: 1.5; }
@media (max-width: 480px) { .store-row { grid-template-columns: 1fr; gap: 4px; } }
.store-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.store-actions .btn { flex: 1 1 auto; min-height: 46px; }
.store-map { position: relative; border-radius: var(--r); overflow: hidden; background: var(--beige); min-height: 360px; }
.store-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  /* tone the map toward the black / white / wood palette */
  filter: grayscale(1) sepia(.28) contrast(1.05) brightness(.98);
  transition: filter .6s var(--ease);
}
.store-map:hover iframe { filter: grayscale(.2) sepia(.1); }
.map-open {
  position: absolute; left: 12px; bottom: 12px; z-index: 1; background: rgba(255,255,255,.95); color: var(--ink);
  border-radius: 100px; padding: 10px 16px; font-size: 12px; text-transform: uppercase; box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.map-open:hover { background: var(--ink); color: #fff; }

/* ---------- Parallax lookbook ---------- */
.px {
  --px: 0;
  position: relative; margin-top: 96px; border-radius: var(--r); overflow: hidden; isolation: isolate;
  min-height: max(720px, 104vh); display: grid; place-items: center; color: #fff; background: var(--wood-grain);
}
.px-bg { position: absolute; inset: -18% 0; z-index: -2; will-change: transform; }
.px-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) sepia(.25) brightness(.62) contrast(1.05); }
.px::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 50%, rgba(18,17,16,.15), rgba(18,17,16,.55)), linear-gradient(180deg, rgba(42,28,20,.35), rgba(18,17,16,.5));
}
.px-word {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); z-index: -1; pointer-events: none;
  display: flex; justify-content: center; white-space: nowrap; overflow: visible;
}
.px-word span {
  font-family: var(--serif); font-style: italic; font-size: clamp(180px, 34vw, 560px); line-height: .8; letter-spacing: -0.03em;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 236, 214, .22); will-change: transform;
}
.px-cards { position: absolute; inset: 0; pointer-events: none; }
.px-card {
  position: absolute; display: block; pointer-events: auto; border-radius: 10px; overflow: hidden; background: var(--beige);
  box-shadow: 0 30px 60px rgba(0,0,0,.35); will-change: transform; aspect-ratio: 4 / 5; transition: box-shadow .4s;
}
.px-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.px-card span {
  position: absolute; left: 10px; right: 10px; bottom: 10px; font-size: 11px; text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s var(--ease); text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.px-card:hover img { transform: scale(1.06); }
.px-card:hover span { opacity: 1; transform: none; }
.px-card-1 { width: clamp(120px, 20vw, 300px); left: 5%; top: 10%; }
.px-card-2 { width: clamp(110px, 16vw, 250px); right: 6%; top: 18%; }
.px-card-3 { width: clamp(100px, 14vw, 220px); left: 58%; bottom: 7%; }
.px-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; display: grid; gap: 22px; justify-items: center; max-width: 820px; will-change: transform; }
.px-content .display { font-size: clamp(40px, 7vw, 92px); }
.px-content .display em { color: #e2c9a0; }
.px-text { color: rgba(255,255,255,.78); max-width: 440px; text-align: center; }
.px-cta {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink); border-radius: 100px;
  min-height: 52px; padding: 0 26px; font-size: 13px; text-transform: uppercase; transition: background .3s, color .3s;
}
.px-cta svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.px-cta:hover { background: var(--ink); color: #fff; }
.px-cta:hover svg { transform: translateX(4px); }
@media (max-width: 699px) {
  .px { min-height: 680px; }
  .px-card-1 { width: 34%; left: 4%; top: 5%; }
  .px-card-2 { width: 28%; right: 4%; top: 12%; }
  .px-card-3 { width: 30%; left: auto; right: 10%; bottom: 4%; }
  .px-content { padding-top: 40px; }
}

/* ---------- TikTok ---------- */
.tiktok { padding-top: 110px; display: grid; gap: 28px; }
.tt-head { display: grid; gap: 22px; align-items: end; }
.tt-copy { display: grid; gap: 18px; }
.tt-copy .display { max-width: 20ch; }
.tt-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tt-ico { width: 18px; height: 18px; }
.tt-arrows { gap: 6px; }
.tt-arrow { border: 1px solid var(--line); }
@media (min-width: 900px) { .tt-head { grid-template-columns: 1fr auto; } .tt-actions { justify-content: flex-end; } }
.tt-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: 62%; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 calc(var(--gut) * -1); padding: 4px var(--gut) 12px; scrollbar-width: none; overscroll-behavior-x: contain;
}
.tt-row::-webkit-scrollbar { display: none; }
@media (min-width: 600px) { .tt-row { grid-auto-columns: 34%; } }
@media (min-width: 1000px) { .tt-row { grid-auto-columns: calc((100% - 4 * 14px) / 5); gap: 14px; margin: 0; padding: 4px 0 12px; } }
.tt-card {
  position: relative; aspect-ratio: 9 / 16; border: 0; padding: 0; border-radius: var(--r); overflow: hidden; background: var(--wood-grain);
  scroll-snap-align: start; cursor: pointer; text-align: left; color: #fff; isolation: isolate;
  opacity: 0; transform: translateY(20px); animation: rise .8s var(--ease) forwards; -webkit-tap-highlight-color: transparent;
}
.tt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.tt-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.25), transparent 30%, transparent 55%, rgba(0,0,0,.72)); }
.tt-play {
  position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; margin: -29px 0 0 -29px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transform: scale(.9); opacity: .9; transition: transform .45s var(--ease), background .3s, opacity .3s;
}
.tt-play svg { width: 20px; height: 20px; fill: #fff; stroke: none; margin-left: 3px; }
.tt-views { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 500; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.tt-views svg { width: 12px; height: 12px; fill: #fff; stroke: none; }
.tt-cap {
  position: absolute; left: 12px; right: 12px; bottom: 12px; font-size: 12.5px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
@media (hover: hover) {
  .tt-card:hover img { transform: scale(1.06); }
  .tt-card:hover .tt-play { transform: scale(1.08); background: #fff; opacity: 1; }
  .tt-card:hover .tt-play svg { fill: var(--ink); }
}
#ttOverlay { align-items: center; justify-content: center; padding: 16px; }
.tt-modal {
  position: relative; width: min(400px, 100%); max-height: calc(100svh - 32px); display: flex; flex-direction: column; background: #000;
  border-radius: 16px; overflow: hidden; transform: translateY(24px) scale(.97); opacity: 0; transition: transform .5s var(--ease), opacity .35s;
}
.overlay.open .tt-modal { transform: none; opacity: 1; }
.tt-player { position: relative; aspect-ratio: 9 / 16; max-height: calc(100svh - 110px); background: #000; }
.tt-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tt-close { position: absolute; top: 10px; right: 10px; float: none; margin: 0; z-index: 3; }
.tt-modal-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; }
.tt-modal-foot p { margin: 0; font-size: 12.5px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.tt-modal-foot a { font-size: 12px; text-transform: uppercase; white-space: nowrap; }

/* ---------- Checkout (cart → shipping) ---------- */
.drawer { width: min(480px, 100%); }
.bag-steps { display: flex; align-items: center; gap: 10px; padding: 0 20px 14px; border-bottom: 1px solid var(--line); }
.bag-steps button { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0; padding: 0; font-size: 12px; text-transform: uppercase; color: var(--muted); }
.bag-steps button span { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 11px; transition: background .3s, color .3s, border-color .3s; }
.bag-steps button[aria-current] { color: var(--ink); }
.bag-steps button[aria-current] span, .bag-steps button.done span { background: var(--ink); border-color: var(--ink); color: #fff; }
.bag-steps i { flex: 1; height: 1px; background: var(--line); }
.drawer-body { padding-top: 8px; }
.ship-form { display: grid; gap: 22px; padding: 10px 0 24px; animation: rise .5s var(--ease) both; }
.ship-form fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 10px; min-width: 0; }
.ship-form legend { padding: 0; margin-bottom: 10px; color: var(--muted); float: left; width: 100%; }
.ship-form legend + * { clear: both; }
.sf { display: grid; gap: 5px; min-width: 0; }
.sf > span { font-size: 12px; color: var(--muted); }
.sf input, .sf select, .sf textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 12px 13px; font: inherit; font-size: 16px; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.sf select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%237a726b' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 13px center; padding-right: 34px; }
.sf select:disabled { background-color: var(--tile); color: var(--muted); }
.sf textarea { resize: vertical; line-height: 1.45; }
.sf input:focus, .sf select:focus, .sf textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(18,17,16,.06); }
.sf.bad input, .sf.bad select, .sf.bad textarea { border-color: #b3473c; box-shadow: 0 0 0 3px rgba(179,71,60,.1); }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 380px) { .sf-row { grid-template-columns: 1fr; } }
.sf-zip { max-width: 160px; }
.ship-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ship-mode label { position: relative; cursor: pointer; }
.ship-mode input { position: absolute; opacity: 0; }
.ship-mode span { display: grid; place-items: center; min-height: 44px; border: 1px solid var(--line); border-radius: 100px; font-size: 13px; text-transform: uppercase; transition: all .25s; }
.ship-mode input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.ship-mode input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.rates { display: grid; gap: 8px; }
.rates-meta { margin: 0; font-size: 12px; color: var(--muted); }
.rates-empty { margin: 0; padding: 14px; border-radius: 10px; background: var(--tile); font-size: 13px; color: var(--muted); }
.rates-empty.err { color: #8a3a31; background: #fbf1ef; }
.rate { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .25s, background .25s; }
.rate:hover { border-color: #cbc3ba; }
.rate input { accent-color: var(--ink); width: 18px; height: 18px; margin: 0; flex: none; }
.rate:has(input:checked) { border-color: var(--ink); background: #faf8f5; }
.rate-main { flex: 1; min-width: 0; display: grid; gap: 2px; }
.rate-main b { font-weight: 500; font-size: 14px; }
.rate-main em { font-style: normal; color: var(--accent); }
.rate-main small { font-size: 12px; color: var(--muted); }
.rate-cost { font-weight: 600; font-size: 14px; white-space: nowrap; }
.rate.sk { height: 58px; border: 0; background: linear-gradient(100deg, var(--tile) 30%, #f8f5f1 50%, var(--tile) 70%); background-size: 300% 100%; animation: shimmer 1.3s linear infinite; }
.ship-note { margin: 0; font-size: 12px; color: var(--muted); }
.ship-note:empty { display: none; }
.sum { display: grid; gap: 6px; }
.sum-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13px; color: var(--muted); }
.sum-row b { color: var(--ink); font-weight: 500; font-size: 14px; text-align: right; }
.sum-total { padding-top: 8px; margin-top: 2px; border-top: 1px solid var(--line); color: var(--ink); }
.sum-total b { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
#bagNext svg { width: 16px; height: 16px; }
