/* ============================================================
   VANSON LEATHERS — dark premium scroll-cinematic
   palette: warm near-black / bone / vanson yellow
   ============================================================ */
:root {
  --ink: #0a0908;
  --coal: #14110d;
  --bone: #ece5d8;
  --dim: rgba(236, 229, 216, 0.45);
  --faint: rgba(236, 229, 216, 0.14);
  --yellow: #ffd21e;
  --font-display: "Anton", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--yellow); color: var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2c2620; border-radius: 5px; }

a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.dim { color: var(--dim); }

/* film grain */
body::after {
  content: ""; position: fixed; inset: -50%; pointer-events: none; z-index: 200;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.05; animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); } 20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); } 60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

/* ============ LOADER ============ */
#loader {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; transition: opacity 0.7s ease, visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-brand {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 110px);
  letter-spacing: 0.04em; color: var(--bone); line-height: 1;
}
.loader-pct {
  font-family: var(--font-mono); font-size: 40px; color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
.loader-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--dim); }

/* ============ NAV — light bar, ink type ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 22px;
  padding: 13px 28px;
  background: rgba(236, 229, 216, 0.96); backdrop-filter: blur(12px);
  color: var(--ink); border-bottom: 1px solid rgba(10, 9, 8, 0.18);
}
.nav-brand { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.05em; color: var(--ink); }
.nav-brand .dim { color: rgba(10, 9, 8, 0.4); }
.nav-links { display: flex; gap: 22px; margin-left: 8px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink); opacity: 0.72; transition: opacity 0.25s; font-weight: 500;
}
.nav-links a:hover { opacity: 1; }
.nav-shop { opacity: 1 !important; font-weight: 700 !important; }
.nav-search {
  margin-left: auto; display: flex; align-items: center;
}
.nav-search input {
  background: transparent; border: 1px solid rgba(10, 9, 8, 0.35); border-radius: 999px;
  color: var(--ink); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 8px 16px; width: 190px; outline: none; transition: border-color 0.25s, width 0.3s;
}
.nav-search input:focus { border-color: var(--ink); width: 230px; }
.nav-search input::placeholder { color: rgba(10, 9, 8, 0.45); }
.nav-cart {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; font-weight: 700;
  color: var(--bone); background: var(--ink); padding: 9px 14px; border-radius: 999px;
  cursor: pointer; transition: transform 0.2s;
}
.nav-cart:hover { transform: translateY(-1px); }
.nav-cart #cart-count { color: var(--yellow); }
@media (max-width: 1000px) { .nav-links { display: none; } }
@media (max-width: 640px) {
  .nav { padding: 12px 16px; gap: 10px; }
  .nav-search input { width: 110px; }
}

/* ============ CINEMATIC SCRUB SECTIONS ============ */
.cinematic { height: 520vh; position: relative; }
.cinematic .sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--ink);
}
.cinematic canvas { width: 100%; height: 100%; display: block; }
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10, 9, 8, 0.75) 100%),
    linear-gradient(to bottom, rgba(10,9,8,0.5) 0%, transparent 18%, transparent 82%, rgba(10,9,8,0.7) 100%);
}

.hero-title {
  position: absolute; top: 14vh; left: 0; right: 0; text-align: center; pointer-events: none;
}
.hero-title h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 17vw, 260px);
  line-height: 0.95; letter-spacing: 0.02em; color: var(--bone);
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}
.hero-sub { margin-top: 10px; color: var(--yellow); font-size: 11px; letter-spacing: 0.28em; }

.overlay {
  position: absolute; inset: 0;
  pointer-events: none; text-align: center;
}
.overlay h2 {
  position: absolute; bottom: 16vh; left: 0; right: 0; margin: 0 auto;
  width: min(90vw, 1100px);
  font-family: var(--font-display);
  font-size: clamp(30px, 5.2vw, 76px);
  line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--bone); opacity: 0;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.overlay h2.quote {
  font-family: var(--font-body); font-weight: 500; font-style: italic;
  font-size: clamp(20px, 3vw, 40px); color: var(--yellow); text-transform: none;
}
.reveal-line { will-change: opacity, transform; }

.telemetry {
  position: absolute; color: var(--dim); z-index: 5;
}
.telemetry.tl { top: 74px; left: 28px; }
.telemetry.tr { top: 74px; right: 28px; }
.telemetry.bl { bottom: 24px; left: 28px; color: var(--yellow); }
.telemetry.br { bottom: 24px; right: 28px; }
@media (max-width: 700px) { .telemetry.tr, .telemetry.br { display: none; } }

.progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--faint);
}
.progress-fill { height: 100%; width: 0%; background: var(--yellow); }

.scroll-hint {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  color: var(--bone); letter-spacing: 0.2em; transition: opacity 0.5s;
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.scroll-hint.hide { animation: none; opacity: 0; }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden; border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint);
  padding: 18px 0; background: var(--ink); position: relative; z-index: 10;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 0.04em; color: var(--bone); padding-right: 24px;
}
.marquee-track span i { font-style: normal; color: var(--yellow); padding-left: 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 14vh 5vw; position: relative; z-index: 10; background: var(--ink); }
.sec-head { margin-bottom: 7vh; }
.sec-num { color: var(--yellow); display: block; margin-bottom: 22px; }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 120px);
  line-height: 0.98; letter-spacing: 0.02em; text-transform: uppercase;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ PRODUCT GRID (icons + shop) ============ */
.grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--coal); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  content-visibility: auto; contain-intrinsic-size: auto 460px;
}
.card-img {
  aspect-ratio: 1 / 1; overflow: hidden; position: relative;
  background:
    radial-gradient(ellipse 78% 62% at 50% 38%, rgba(236, 224, 200, 0.30), rgba(236, 224, 200, 0.07) 55%, transparent 72%),
    radial-gradient(ellipse 60% 45% at 50% 36%, rgba(255, 210, 30, 0.10), transparent 70%),
    radial-gradient(ellipse 95% 85% at 50% 50%, #37301f 0%, #1a150f 78%);
}
.card-img::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 8%; height: 8%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(4px); pointer-events: none;
}
.card-img img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain; display: block;
  padding: 8%;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.55)) brightness(1.14) contrast(1.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform-style: preserve-3d;
}
.card-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
  background: var(--yellow); color: var(--ink); padding: 4px 8px; font-weight: 500;
}
.card-info {
  padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.card-name {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.35;
}
.card-price {
  font-family: var(--font-mono); font-size: 12px; color: var(--yellow); margin-top: auto;
}
.card-cat { font-family: var(--font-mono); font-size: 9px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; }

.cta-line {
  display: inline-block; margin-top: 7vh;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em;
  color: var(--yellow); border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.cta-line:hover { border-color: var(--yellow); }

/* ============ CATEGORIES ============ */
.cat-list { border-top: 1px solid var(--faint); position: relative; z-index: 2; }
.cat-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 22px 6px; border-bottom: 1px solid var(--faint);
  cursor: pointer; transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s;
}
.cat-row:hover { padding-left: 26px; background: rgba(255, 210, 30, 0.03); }
.cat-row h3 {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 56px);
  letter-spacing: 0.03em; text-transform: uppercase; font-weight: 400;
  transition: color 0.3s;
}
.cat-row:hover h3 { color: var(--yellow); }
.cat-count { font-family: var(--font-mono); font-size: 14px; color: var(--dim); }
.cat-preview {
  position: fixed; width: 280px; height: 280px; pointer-events: none; z-index: 50;
  opacity: 0; transition: opacity 0.25s; transform: translate(-50%, -50%);
  background: #fff; border: 1px solid var(--faint);
}
.cat-preview.on { opacity: 1; }
.cat-preview img { width: 100%; height: 100%; object-fit: contain; }
@media (hover: none) { .cat-preview { display: none; } }

/* ============ PRESS ============ */
.press-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
@media (max-width: 860px) { .press-list { grid-template-columns: 1fr; } }
.press-item {
  background: var(--coal); padding: 44px 36px; border: 1px solid transparent;
  transition: border-color 0.3s;
}
.press-item:hover { border-color: rgba(255, 210, 30, 0.25); }
.press-when { color: var(--yellow); display: block; margin-bottom: 18px; }
.press-item h3 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 0.03em; margin-bottom: 14px; font-weight: 400;
}
.press-item p { color: var(--dim); font-size: 14px; max-width: 46ch; }

/* ============ HERITAGE ============ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 10vh;
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--coal); padding: 36px 30px; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(50px, 6vw, 90px);
  color: var(--yellow); display: block; line-height: 1;
}
.stat-label { color: var(--dim); display: block; margin-top: 12px; }

.timeline { border-left: 1px solid var(--faint); margin-left: 6px; padding-left: 40px; max-width: 760px; }
.tl-item { margin-bottom: 52px; position: relative; }
.tl-item::before {
  content: ""; position: absolute; left: -45px; top: 7px; width: 9px; height: 9px;
  background: var(--yellow); border-radius: 50%;
}
.tl-item .mono { color: var(--yellow); font-size: 13px; display: block; margin-bottom: 8px; }
.tl-item p { color: var(--dim); max-width: 60ch; }

/* ============ CTA / FOOTER ============ */
.cta-block { text-align: center; padding: 8vh 0 12vh; }
.cta-block h2 {
  font-family: var(--font-display); font-size: clamp(60px, 11vw, 180px);
  letter-spacing: 0.02em; line-height: 1;
}
.cta-copy { color: var(--dim); max-width: 52ch; margin: 26px auto 0; }

.footer {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border-top: 1px solid var(--faint); padding-top: 7vh;
}
@media (max-width: 760px) { .footer { grid-template-columns: 1fr; } }
.foot-head { color: var(--yellow); display: block; margin-bottom: 14px; }
.foot-col p { color: var(--dim); font-size: 14px; }
.foot-col a:hover { color: var(--bone); }
.foot-legal {
  grid-column: 1 / -1; color: var(--dim); font-size: 10px;
  padding: 30px 0 10px; border-top: 1px solid var(--faint); margin-top: 6vh;
  display: flex; flex-direction: column; gap: 8px;
}
.foot-legal p { font-size: 10px; }
.prop65 { opacity: 0.55; max-width: 90ch; }
.prop65 a { text-decoration: underline; }

/* ============ PRODUCT PAGE ============ */
.pd { padding: 14vh 5vw 6vh; }
.pd-crumb { color: var(--dim); margin-bottom: 5vh; letter-spacing: 0.1em; }
.pd-crumb a:hover, .pd-crumb b { color: var(--bone); }
.pd-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .pd-grid { grid-template-columns: 1fr; } }
.pd-gallery { position: sticky; top: 90px; }
@media (max-width: 960px) { .pd-gallery { position: static; } }
.pd-stage {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(255, 210, 30, 0.08), transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 50%, #241e16 0%, #12100c 78%);
  border: 1px solid var(--faint); overflow: hidden;
}
.pd-stage img {
  max-width: 86%; max-height: 86%; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.6)) brightness(1.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 76px; height: 76px; cursor: pointer; padding: 6px;
  background: var(--coal); border: 1px solid var(--faint);
  transition: border-color 0.25s;
}
.pd-thumb.on, .pd-thumb:hover { border-color: var(--yellow); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-cat { color: var(--yellow); display: block; margin-bottom: 18px; }
.pd-info h1 {
  font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.02; letter-spacing: 0.02em; text-transform: uppercase;
}
.pd-price { font-size: 22px; color: var(--yellow); margin: 22px 0 26px; }
.pd-desc { color: var(--dim); font-size: 15px; line-height: 1.75; }
.pd-desc p { margin-bottom: 12px; }
.pd-desc ul, .pd-desc ol { margin: 0 0 12px 20px; }
.pd-desc li { margin-bottom: 5px; }
.pd-desc strong, .pd-desc b { color: var(--bone); font-weight: 600; }
.pd-desc h3, .pd-desc h4 {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--bone); font-size: 14px; margin: 18px 0 8px;
}
.pd-cta {
  display: inline-block; margin: 30px 0 26px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em;
  background: var(--yellow); color: var(--ink); padding: 15px 24px; font-weight: 500;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pd-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 210, 30, 0.25); }
.pd-notes { display: flex; flex-direction: column; gap: 8px; color: var(--dim); font-size: 10px; border-top: 1px solid var(--faint); padding-top: 20px; }
.pd-long { max-width: 820px; margin-top: 10vh; }
.pd-long .sec-num, .pd-related .sec-num { margin-bottom: 24px; }
.pd-related { margin-top: 10vh; }

/* ============ SIZE PICKER ============ */
.pd-sizes { margin: 4px 0 8px; }
.pd-sizes-label { color: var(--dim); display: block; margin-bottom: 10px; }
.pd-sizes-label b { color: var(--yellow); font-weight: 500; }
.pd-size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
  min-width: 46px; text-align: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  padding: 9px 12px; cursor: pointer; border-radius: 4px;
  border: 1px solid var(--faint); background: transparent; color: var(--bone);
  transition: all 0.2s;
}
.size-chip:hover { border-color: var(--yellow); color: var(--yellow); }
.size-chip.on { background: var(--yellow); color: var(--ink); border-color: var(--yellow); font-weight: 700; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 26px 0 6px; }
.pd-actions .pd-cta { margin: 0; }
.pd-cta.ghost { background: transparent; color: var(--yellow); border: 1px solid var(--yellow); }
.pd-cta.ghost:hover { box-shadow: 0 10px 30px rgba(255, 210, 30, 0.15); }
.pd-cta.shake { animation: shake 0.35s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 94vw); z-index: 301;
  background: var(--coal); border-left: 1px solid var(--faint);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open .cart-drawer { transform: none; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; border-bottom: 1px solid var(--faint); color: var(--yellow);
}
.cart-close { background: none; border: none; color: var(--bone); cursor: pointer; letter-spacing: 0.1em; }
.cart-close:hover { color: var(--yellow); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 22px; }
.cart-empty { color: var(--dim); padding: 30px 0; }
.cart-row {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--faint);
}
.cart-thumb { width: 72px; height: 72px; flex: none; background:
  radial-gradient(ellipse 78% 62% at 50% 38%, rgba(236,224,200,0.25), transparent 72%), #1a150f;
  border: 1px solid var(--faint); }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-name { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.3; }
.cart-size { color: var(--dim); font-size: 10px; }
.cart-price { color: var(--yellow); font-size: 11px; }
.cart-qty { display: flex; gap: 6px; align-items: center; }
.cart-qty .chip { padding: 4px 9px; }
.cart-rm { opacity: 0.5; }
.cart-rm:hover { opacity: 1; }
.cart-foot { padding: 18px 22px 22px; border-top: 1px solid var(--faint); display: flex; flex-direction: column; gap: 12px; }
.cart-total { display: flex; justify-content: space-between; font-size: 13px; color: var(--dim); }
.cart-total b { color: var(--yellow); font-size: 16px; }
.cart-checkout { text-align: center; }
.cart-checkout.disabled { opacity: 0.35; pointer-events: none; }
.cart-note { color: var(--dim); font-size: 9px; line-height: 1.6; }

/* ============ SHOP PAGE ============ */
.shop-head { padding: 16vh 5vw 4vh; }
.shop-head h1 {
  font-family: var(--font-display); font-size: clamp(50px, 9vw, 140px);
  letter-spacing: 0.02em; line-height: 0.95;
}
.shop-sub { color: var(--yellow); display: block; margin-top: 16px; }
.shop-tools {
  position: sticky; top: 53px; z-index: 90; background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(12px); padding: 16px 5vw;
  border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.chip {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 8px 14px; cursor: pointer;
  border: 1px solid var(--faint); background: transparent; color: var(--bone);
  transition: all 0.25s; border-radius: 999px;
}
.chip:hover { border-color: var(--yellow); color: var(--yellow); }
.chip.on { background: var(--yellow); color: var(--ink); border-color: var(--yellow); font-weight: 500; }
.shop-search {
  margin-left: auto; background: transparent; border: 1px solid var(--faint);
  color: var(--bone); font-family: var(--font-mono); font-size: 12px;
  padding: 9px 16px; width: 220px; border-radius: 999px; outline: none;
}
.shop-search:focus { border-color: var(--yellow); }
.shop-search::placeholder { color: var(--dim); }
.shop-grid-wrap { padding: 5vh 5vw 10vh; }
.shop-count { font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.12em; margin-bottom: 24px; display: block; }
.shop-footer { padding: 6vh 5vw; border-top: 1px solid var(--faint); }
