:root {
  --bg: #000000;
  --bg-2: #000000;
  --ink: #ffffff;
  --muted: #8a8a92;
  --line: rgba(255,255,255,0.12);
  --line-2: rgba(255,255,255,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== NAV ===== */
body { padding-top: 62px; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 8px 14px;
  background: transparent;
  transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 14px;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  transition:
    max-width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-radius 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
}

.nav.is-scrolled { padding: 12px 14px; }

/* Liquid glass pill on scroll */
.nav.is-scrolled .nav-inner {
  max-width: 1050px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-top-color: rgba(255, 255, 255, 0.55);
  border-left-color: rgba(255, 255, 255, 0.35);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.10);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.7),
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

/* Specular top highlight arc */
.nav-inner::before {
  content: '';
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 50%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  transition: background 0.35s ease;
}
.nav.is-scrolled .nav-inner::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.04) 65%,
    rgba(255, 255, 255, 0) 100%
  );
}

.nav-inner > * { position: relative; z-index: 1; }

.menu-btn {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 6px 0;
}

.menu-btn span {
  display: block;
  height: 1.8px;
  background: var(--ink);
  border-radius: 0;
}

.wordmark {
  grid-column: 2;
  justify-self: center;
  font-family: 'Archivo Black', 'Archivo', 'Arial Black', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  white-space: nowrap;
  color: var(--ink);
}

.desk-nav {
  display: none;
  gap: 34px;
  align-items: center;
}

.desk-nav a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.desk-nav a:hover, .desk-nav a.is-current {
  color: var(--ink);
}

.desk-nav a.is-current { border-bottom-color: var(--ink); }

.bag {
  grid-column: 3;
  justify-self: end;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px;
}

.bag svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.8;
}

.bag .count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--bg);
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ===== CATEGORY STRIP ===== */
.cats {
  display: flex;
  gap: 48px;
  padding: 28px 18px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line-2);
}
.cats::-webkit-scrollbar { display: none; }

.cats a, .cats button {
  flex-shrink: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.cats a.is-active, .cats button.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.cats a:hover, .cats button:hover { color: var(--ink); }

/* ===== HERO: KINETIC WORDMARK + PRODUCT MARQUEE ===== */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.hero-marq-row {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.hero-marq-row.top { top: 16%; }
.hero-marq-row.bottom { bottom: 16%; }
.hero-marq-track {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
  animation: heroScrollLeft 60s linear infinite;
  will-change: transform;
}
.hero-marq-row.bottom .hero-marq-track {
  animation: heroScrollRight 65s linear infinite;
}
.hero-marq-track span {
  flex-shrink: 0;
  padding: 30px 26px;
  min-width: 190px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}
@keyframes heroScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes heroScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.hero-glow { display: none; }
@keyframes heroGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(4%, -5%); }
}

.hero-word {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 20px;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(88px, 22vw, 260px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  text-align: center;
  color: #ffffff;
}

.hero-tape {
  position: absolute;
  left: -20%;
  right: -20%;
  z-index: 4;
  overflow: hidden;
  padding: 12px 0;
  pointer-events: none;
}
.hero-tape.top {
  top: 13%;
  background: #fff;
  color: #000;
  transform: rotate(-4deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.hero-tape.bottom {
  bottom: 13%;
  background: #ff3838;
  color: #fff;
  transform: rotate(3deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.hero-tape-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: heroTape 30s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(13px, 1.8vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-tape.bottom .hero-tape-track { animation-direction: reverse; }
.hero-tape-track span::after {
  content: '✱';
  margin-left: 40px;
  font-size: 0.7em;
  vertical-align: middle;
}
@keyframes heroTape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-cta {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 14px 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 999px;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: translateX(-50%) translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-marq-track, .hero-tape-track, .hero-glow { animation: none; }
}

/* ===== PRODUCT GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
  padding: 22px 18px 40px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
}

.card-media {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background: var(--bg-2);
  overflow: hidden;
  margin-bottom: 16px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card-media img { transform: scale(1.04); }

.card-title {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 22ch;
  margin-bottom: 0;
}

.card-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.card-price .cur { margin-right: 6px; }

/* ===== ABOUT ===== */
.about {
  border-top: 1px solid var(--line-2);
  padding: 80px 22px 80px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-body { display: flex; flex-direction: column; align-items: center; }
.about-body p { margin-left: auto; margin-right: auto; }
.about-body h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }

.about-media {
  position: relative;
  padding: 40px 10px;
  display: grid;
  place-items: center;
}
.about-polaroid {
  background: #f4efe4;
  color: #111;
  padding: 14px 14px 30px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.3);
  transform: rotate(-4deg);
  max-width: 260px;
  width: 80%;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.about-polaroid:hover { transform: rotate(-2deg) scale(1.03); }
.about-polaroid-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #333, #111);
  margin-bottom: 10px;
}
.about-polaroid-caption {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.about-tape {
  position: absolute;
  top: 10px;
  right: 12%;
  background: #ff3838;
  color: #fff;
  padding: 6px 22px;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(6deg);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.about-body .tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-block;
}
.about-body h2 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  margin-bottom: 24px;
  text-wrap: balance;
}
.about-body p {
  color: #c8c8ce;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 16px;
  max-width: 52ch;
}
.about-signature {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  margin-top: 16px;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
  .about-polaroid { max-width: 300px; }
}

/* ===== FOOTER ===== */
.foot {
  border-top: 1px solid var(--line-2);
  padding: 34px 18px 28px;
  margin-top: 40px;
}

.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.foot-wordmark {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--ink);
}

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.foot-links a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.foot-links a:hover { color: var(--ink); }

.foot-socials {
  display: flex;
  gap: 14px;
}

.foot-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.foot-socials a:hover { color: var(--ink); border-color: var(--ink); }

.foot-socials svg { width: 16px; height: 16px; fill: currentColor; }

.foot-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #55555c;
  text-align: center;
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 90px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu-overlay.is-open { transform: translateY(0); }

.menu-overlay .close {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-overlay .close svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
}

.menu-overlay a {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 8vw, 42px);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--ink);
}

/* Hide the link for the current page */
.menu-overlay[data-page="home"] a[data-link="home"],
.menu-overlay[data-page="shop"] a[data-link="shop"],
.menu-overlay[data-page="about"] a[data-link="about"],
.menu-overlay[data-page="contact"] a[data-link="contact"] {
  display: none;
}

.menu-overlay .wa-btn {
  margin-top: 18px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-overlay .wa-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== PRODUCT DETAIL ===== */
.product {
  padding: 20px 18px 40px;
  display: grid;
  gap: 24px;
}

.product-media {
  aspect-ratio: 1;
  background: var(--bg-2);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info { display: flex; flex-direction: column; gap: 18px; }

.product-cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-name {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.product-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.product-price .cur { margin-right: 6px; }

.product-desc {
  color: #c8c8ce;
  line-height: 1.7;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 20px 0;
}

.field-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

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

.sizes button {
  border: 1px solid var(--line);
  padding: 12px 16px;
  min-width: 60px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sizes button:hover { border-color: var(--ink); }

.sizes button.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.wa-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wa-order svg { width: 20px; height: 20px; }

.wa-order:hover { background: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (min-width: 700px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 22px;
    padding: 30px 24px 60px;
  }
  .cats { padding: 36px 24px 20px; gap: 68px; }
  .cats a, .cats button { font-size: 16px; }
  .hero { padding: 40px 24px 20px; }
  .about { padding: 80px 24px 60px; }
  .foot { padding: 44px 24px 32px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 20px 24px; }
  .wordmark { font-size: 24px; }
}

@media (min-width: 1000px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 26px;
    padding: 36px 32px 80px;
  }
  .menu-btn { display: none; }
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    padding: 14px 32px;
  }
  .wordmark {
    grid-column: 1;
    justify-self: start;
    font-size: 22px;
  }
  .desk-nav {
    grid-column: 2;
    justify-self: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: flex;
  }
  .nav.is-scrolled .desk-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .cats { padding: 44px 32px 22px; gap: 40px; }
  .cats a, .cats button { font-size: 17px; }
  .hero { padding: 60px 32px 30px; }
  .hero h1 { font-size: 56px; }
  .about { padding: 100px 32px 80px; }
  .foot { padding: 56px 32px 40px; }
  .foot-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: center; }
  .foot-wordmark { font-size: 30px; }
  .product {
    grid-template-columns: 1.15fr 1fr;
    gap: 44px;
    padding: 32px 32px 80px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .card-title { font-size: 16px; }
  .card-price { font-size: 18px; }
}

/* ===== ABOUT + CONTACT PAGES ===== */
.page { max-width: 780px; margin: 0 auto; padding: 20px 24px 60px; }

.page-hero { text-align: center; padding: 40px 0 20px; border-bottom: 1px solid var(--line-2); margin-bottom: 40px; }

.page-hero .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.page-title {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(38px, 10vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.page-body { display: flex; flex-direction: column; gap: 20px; }

.page-body p { color: #d0d0d6; line-height: 1.75; font-size: 15px; }

.page-body .signature {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 10px;
}

.page-body .wa-order { margin-top: 20px; width: 100%; padding: 18px 20px; }

.contact-body { align-items: center; text-align: center; }
.contact-body p { max-width: 44ch; }

.wa-big {
  font-size: 15px;
  padding: 22px 24px;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}
.wa-big svg { width: 22px; height: 22px; }

.contact-socials { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 420px; margin-top: 12px; }

.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s;
}
.social-row:hover { border-color: var(--ink); }
.social-row svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (min-width: 700px) {
  .page { padding: 40px 32px 80px; }
  .page-hero { padding: 60px 0 30px; margin-bottom: 60px; }
}

/* ===== CART DRAWER ===== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer.is-open ~ .cart-backdrop,
.cart-drawer.is-open + .cart-backdrop { pointer-events: auto; opacity: 1; }
body:has(.cart-drawer.is-open) .cart-backdrop {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100dvh;
  z-index: 210;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-left: 1px solid rgba(255,255,255,0.14);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-head h2 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}
.cart-close {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none; stroke-width: 2;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 22px;
  text-align: center;
}
.cart-empty[hidden], .cart-foot[hidden] { display: none !important; }
.cart-empty p {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.cart-empty-link {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: #111;
  border-radius: 4px;
}
.cart-item-name {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cart-item-size {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cart-item-remove {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #fff; }
.cart-item-remove svg { width: 16px; height: 16px; }

.cart-foot {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.cart-note {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: #25D366;
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s;
}
.cart-checkout:hover { background: #1fbc57; }
.cart-checkout svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.7,0,0.2,1), opacity 0.35s ease;
}
.cookie-banner.is-open {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner[hidden] { display: none !important; }

.cookie-copy {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
}
.cookie-copy strong {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin-right: 4px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: 'Archivo Black','Archivo',sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie-btn.accept {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.cookie-btn.accept:hover { background: #e8e8e8; }
.cookie-btn.decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.cookie-btn.decline:hover { border-color: #fff; }

@media (min-width: 720px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: 20px;
    bottom: 20px;
    max-width: 560px;
    padding: 18px 22px;
  }
  .cookie-actions { flex-shrink: 0; }
  .cookie-btn { flex: none; padding: 12px 22px; }
}
