/* ============================================================
   BELARUSIAN SWAG — streetwear store MVP
   Dark base + white-red national accent + ornament motifs
   ============================================================ */

:root {
  --bg: #0c0c0c;
  --bg-elevated: #161616;
  --bg-card: #1a1a1a;
  --fg: #f2f0eb;
  --fg-dim: #a8a6a0;
  --red: #c8243c;
  --red-hover: #e02e48;
  --white-accent: #f0ece4;
  --green: #3d6b4f;
  --ornament: rgba(200, 36, 60, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --space: clamp(1rem, 3vw, 2rem);
  --max: 1200px;
  --radius: 4px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

/* ————— Gate screen ————— */

.gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.7s;
}

.gate.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.gate.is-gone { display: none; }

.gate__logo-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s, filter 0.3s;
}

.gate__logo-btn:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(200, 36, 60, 0.35));
}

.gate__logo-btn:active {
  transform: scale(0.97);
}

.gate__logo {
  width: clamp(200px, 45vw, 380px);
  height: auto;
  display: block;
}

.gate__bar-wrap {
  width: clamp(180px, 40vw, 320px);
  height: 3px;
  background: var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.gate__bar-wrap.is-active {
  opacity: 1;
}

.gate__bar {
  width: 0%;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

button { font-family: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 0.75rem 1rem; background: var(--red); color: #fff; font-weight: 600;
}
.skip-link:focus { left: var(--space); top: var(--space); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ————— Announcement bar ————— */

.announcement {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem var(--space);
  line-height: 1.3;
}

.announcement p { margin: 0; }

/* ————— Header ————— */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem var(--space);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: center;
  text-decoration: none;
  transition: opacity 0.15s;
}
.logo:hover { text-decoration: none; opacity: 0.85; }

.logo__img {
  height: clamp(32px, 5vw, 44px);
  width: auto;
  display: block;
}

/* Nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0; border: none;
  background: transparent; cursor: pointer;
  justify-self: start;
}

.nav-toggle__bar {
  display: block; width: 20px; height: 2px; background: var(--fg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav { justify-self: start; }

.nav__list {
  display: flex; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav__list a:hover { color: var(--red); }

.header__actions {
  display: flex; gap: 0.75rem;
  justify-self: end; align-items: center;
}

.icon-btn {
  background: none; border: none; color: var(--fg);
  cursor: pointer; padding: 6px; display: flex; align-items: center;
  transition: color 0.15s;
}
.icon-btn:hover { color: var(--red); }

/* Language switcher */

.lang-switch {
  display: flex;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.45rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.lang-btn:not(:last-child) {
  border-right: 1px solid var(--border);
}

.lang-btn:hover {
  color: var(--fg);
}

.lang-btn.is-active {
  background: var(--fg);
  color: var(--bg);
}

.cart-btn { position: relative; }

.cart-count {
  position: absolute; top: -2px; right: -6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}

.cart-btn.has-items .cart-count {
  opacity: 1; transform: scale(1);
}

/* ————— Hero ————— */

@keyframes hero-bg-breathe {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.92; filter: brightness(1.06); }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes hero-logo-glow {
  0%, 100% {
    filter: drop-shadow(0 6px 36px rgba(200, 36, 60, 0.28)) drop-shadow(0 0 52px rgba(200, 36, 60, 0.14));
  }
  50% {
    filter: drop-shadow(0 8px 48px rgba(200, 36, 60, 0.42)) drop-shadow(0 0 80px rgba(200, 36, 60, 0.22));
  }
}

@keyframes hero-shine-sweep {
  0% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
  15% { opacity: 0.45; }
  40% { opacity: 0.35; }
  100% { transform: translateX(220%) skewX(-12deg); opacity: 0; }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--space) 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 85% 60% at 50% 42%, rgba(200, 36, 60, 0.2), transparent 62%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(200, 36, 60, 0.08), transparent 35%),
    linear-gradient(180deg, #080808 0%, #121212 55%, #0a0a0a 100%);
  animation: hero-bg-breathe 6s ease-in-out infinite;
}

.hero__ornament {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, var(--fg) 40px, var(--fg) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, var(--fg) 40px, var(--fg) 41px);
  background-size: 42px 42px;
}

.hero__grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__vignette {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 72% at 50% 48%, transparent 32%, rgba(0, 0, 0, 0.42) 100%);
}

.hero__shine {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero__shine::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0;
  width: 42%;
  height: 76%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 100%
  );
  animation: hero-shine-sweep 2.4s ease-in-out 0.4s forwards;
}

.hero__content {
  position: relative; z-index: 5;
  text-align: center;
  max-width: 48rem;
  animation: hero-content-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fg-dim);
  margin: 0 0 1.5rem;
}

.hero__title {
  margin: 0 0 1.5rem;
  line-height: 1;
}

.hero__logo {
  display: block;
  width: clamp(300px, 60vw, 620px);
  height: auto;
  margin: 0 auto;
  animation: hero-logo-glow 3.5s ease-in-out 0.85s infinite;
}

.hero__sub {
  color: var(--fg-dim);
  font-size: 0.95rem;
  margin: 0 0 2rem;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; filter: none; opacity: 1; }
  .hero__content { animation: none; opacity: 1; transform: none; }
  .hero__logo { animation: none; filter: drop-shadow(0 6px 40px rgba(200, 36, 60, 0.2)); }
  .hero__shine::before { animation: none; opacity: 0; }
}


/* ————— Buttons ————— */

.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn--primary:hover { background: var(--red-hover); border-color: var(--red-hover); }

.btn--ghost {
  background: transparent; color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--fg); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.6rem; }

/* ————— Marquee ————— */

.marquee {
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.65rem 0;
  color: var(--fg-dim);
}

.marquee__track span { white-space: nowrap; }

@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; justify-content: center; width: 100%; }
  .marquee__track span:last-child { display: none; }
}

/* ————— Sections ————— */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--space);
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin: 0 0 0.25rem;
}

.section__link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  transition: color 0.15s;
}
.section__link:hover { color: var(--red); text-decoration: none; }

/* ————— Drop Showcase ————— */

.drop-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .drop-showcase {
    grid-template-columns: 1.2fr 1fr;
  }
}

.drop-showcase__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.drop-card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}

.drop-card--big { min-height: 400px; }

.drop-card__media {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.drop-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-card__tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  z-index: 2;
}

/* Decorative patterns for placeholders (instead of real photos) */

.drop-card__pattern {
  position: absolute; inset: 0;
}

.drop-card__pattern--vyshyvanka {
  background:
    repeating-linear-gradient(0deg,
      transparent 0px, transparent 8px,
      rgba(200, 36, 60, 0.2) 8px, rgba(200, 36, 60, 0.2) 10px,
      transparent 10px, transparent 16px
    ),
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 8px,
      rgba(200, 36, 60, 0.12) 8px, rgba(200, 36, 60, 0.12) 10px,
      transparent 10px, transparent 16px
    ),
    linear-gradient(160deg, #222 0%, #111 100%);
}

.drop-card__pattern--vasil {
  background:
    radial-gradient(circle at 50% 50%, rgba(70, 130, 180, 0.25) 0%, transparent 60%),
    linear-gradient(145deg, #1e1e22, #111);
}

.drop-card__pattern--zubr {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(61, 107, 79, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, #1c1f1c, #0e0f0e);
}

.drop-card__info {
  padding: 1rem 1.25rem 1.25rem;
}

.drop-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.drop-card__desc {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin: 0 0 0.75rem;
}

.drop-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drop-card__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
}

/* ————— Catalog Filters ————— */

.catalog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-btn:hover {
  border-color: var(--fg);
  color: var(--fg);
}

.filter-btn.is-active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* ————— Product Grid ————— */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  list-style: none;
  margin: 0; padding: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 600px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-grid__item { background: var(--bg); }

.product-grid__item.is-hidden {
  display: none;
}

.card { position: relative; }

.card__link {
  display: block;
  text-decoration: none;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.card__color {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  transition: transform 0.4s ease, filter 0.3s ease;
}

.card__link:hover .card__color {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.card__meta { padding: 0.75rem 0.75rem 1rem; }

.card__name {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 0.2rem;
}

.card__price {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
  margin: 0;
}

.card__cart {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  width: 28px; height: 28px;
  padding: 0;
  font-size: 0.85rem;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.card:hover .card__cart {
  opacity: 1;
  transform: translateY(0);
}

/* ————— Split (About) ————— */

.section--split {
  max-width: none;
  padding-inline: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(65vh, 580px);
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 1fr; }
}

.split__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split__content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 30rem;
}

@media (min-width: 900px) {
  .split__content { padding: clamp(2rem, 5vw, 4rem); }
}

.split__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin: 0 0 0.5rem;
}

.split__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.split__text {
  color: var(--fg-dim);
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.split__text:last-of-type { margin-bottom: 1.5rem; }

/* ————— Lookbook ————— */

.section--lookbook { padding-top: 2rem; }

.lookbook__masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

@media (min-width: 768px) {
  .lookbook__masonry {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.lookbook__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 768px) {
  .lookbook__col { gap: 8px; }
}

.lookbook__masonry img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.4s ease;
  cursor: pointer;
  background: var(--bg-elevated);
}

.lookbook__masonry img:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* ————— Shipping & Payment ————— */

.section--shipping {
  border-top: 1px solid var(--border);
}

.shipping-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 600px) {
  .shipping-grid { grid-template-columns: 1fr 1fr; }
}

.shipping-card {
  background: var(--bg);
  padding: 1.5rem 1.5rem 1.75rem;
}

.shipping-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.shipping-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.shipping-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shipping-card__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.shipping-card__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--red);
}

/* ————— Returns ————— */

.section--returns {
  border-top: 1px solid var(--border);
}

.returns {
  max-width: 40rem;
}

.returns__intro {
  color: var(--fg-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0.75rem 0 2rem;
  max-width: 34rem;
}

.returns__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 600px) {
  .returns__cards { grid-template-columns: 1fr 1fr; }
}

.returns__card {
  background: var(--bg);
  padding: 1.5rem;
}

.returns__card-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.returns__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.returns__card-text {
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 0;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}

/* ————— TikTok CTA ————— */

.section--tiktok {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  max-width: none;
}

.tiktok-cta {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1rem 0;
}

.tiktok-cta__icon {
  color: var(--fg);
  margin-bottom: 1rem;
}

.tiktok-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.tiktok-cta__text {
  color: var(--fg-dim);
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

/* ————— Newsletter ————— */

.section--newsletter { border-top: 1px solid var(--border); }

.newsletter {
  text-align: center;
  max-width: 26rem;
  margin: 0 auto;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.newsletter__hint {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin: 0 0 1.5rem;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .newsletter__form { flex-direction: row; }
}

.newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--fg);
}

.newsletter__input::placeholder { color: var(--fg-dim); }
.newsletter__input:focus { outline: 2px solid var(--red); outline-offset: 2px; }

/* ————— Footer ————— */

.footer {
  padding: 3rem var(--space) 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer__brand {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.footer__brand span:first-child {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--fg-dim);
  font-weight: 400;
}

.footer__note {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin: 0 0 1rem;
  max-width: 18rem;
}

.footer__socials {
  display: flex; gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__socials a { color: var(--fg-dim); }
.footer__socials a:hover { color: var(--red); }

.footer__nav {
  display: flex; flex-direction: column; gap: 0.5rem;
}

.footer__nav-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg);
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.footer__nav a {
  font-size: 0.8rem;
  color: var(--fg-dim);
  transition: color 0.15s;
}

.footer__nav a:hover { color: var(--red); text-decoration: none; }

.footer__bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0;
}

.footer__pay {
  display: flex; gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.footer__pay span {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

/* ————— Toast ————— */

.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 100;
  white-space: nowrap;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ————— Product page ————— */

.section--product {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.gallery__main {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #181818;
  margin-bottom: 0.75rem;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery__thumbs {
  display: flex;
  gap: 0.5rem;
}

.gallery__thumb {
  width: 72px;
  height: 96px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background: #181818;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}

.gallery__thumb.is-active {
  border-color: var(--fg);
}

.gallery__thumb:hover {
  border-color: var(--fg-dim);
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--red);
  color: #fff;
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin: 0 0 1rem;
  width: fit-content;
}

.product__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.product__price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--fg);
}

.product__desc {
  color: var(--fg-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  max-width: 30rem;
}

.product__sizes {
  margin-bottom: 1.75rem;
}

.product__sizes-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  margin: 0 0 0.5rem;
}

.size-picker {
  display: flex;
  gap: 0.5rem;
}

.size-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--fg-dim);
  cursor: pointer;
  transition: all 0.15s;
}

.size-btn:hover {
  border-color: var(--fg);
  color: var(--fg);
}

.size-btn.is-active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.size-btn.is-soldout {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.75rem;
  width: 100%;
  max-width: 22rem;
  margin-bottom: 2rem;
}

.product__details {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.detail-row__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
}

.detail-row__value {
  font-size: 0.85rem;
  color: var(--fg);
}

/* ————— Cart Drawer ————— */

.cart-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  z-index: 160;
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.cart-drawer__close {
  background: none; border: none; color: var(--fg);
  font-size: 1.5rem; cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  transition: color 0.15s;
}
.cart-drawer__close:hover { color: var(--red); }

.cart-drawer__body {
  flex: 1; overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 3rem 0;
  color: var(--fg-dim);
  text-align: center;
}

.cart-empty p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.cart-items {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.cart-item__img {
  width: 64px; height: 85px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #181818;
}

.cart-item__img img {
  width: 100%; height: 100%; object-fit: cover;
}

.cart-item__info {
  display: flex; flex-direction: column; gap: 0.25rem;
  min-width: 0;
}

.cart-item__name {
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.cart-item__size {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

.cart-item__qty {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.35rem;
}

.cart-item__qty-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s;
  font-family: var(--font-mono);
  padding: 0;
}
.cart-item__qty-btn:hover { border-color: var(--fg); }

.cart-item__qty-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 1.2rem;
  text-align: center;
}

.cart-item__price {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-item__remove {
  background: none; border: none;
  color: var(--fg-dim);
  cursor: pointer; padding: 2px;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  transition: color 0.15s;
}
.cart-item__remove:hover { color: var(--red); }

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-total__value {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-checkout-btn { width: 100%; max-width: none; margin-bottom: 0; }

/* Checkout form inside drawer */

.cart-drawer__checkout {
  flex: 1; overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-back-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: none; border: none;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-bottom: 1.25rem;
  padding: 0;
  transition: color 0.15s;
}
.cart-back-btn:hover { color: var(--fg); }

.cart-checkout__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}

.cart-checkout__hint {
  color: var(--fg-dim);
  font-size: 0.82rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.checkout-form {
  display: flex; flex-direction: column;
  gap: 1rem;
}

.checkout-field { display: flex; flex-direction: column; gap: 0.35rem; }

.checkout-field label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
}

.checkout-field input {
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--fg);
  transition: border-color 0.15s, outline 0.15s;
}

.checkout-field input::placeholder { color: var(--fg-dim); opacity: 0.6; }
.checkout-field input:focus { outline: 2px solid var(--red); outline-offset: 2px; border-color: var(--red); }
.checkout-field input:invalid:not(:placeholder-shown) { border-color: var(--red); }

.checkout-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin: 0.5rem 0;
}

.checkout-summary__row {
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
  color: var(--fg-dim);
  padding: 0.25rem 0;
}

.checkout-summary__row span:last-child { color: var(--fg); font-weight: 500; }

.checkout-summary__total {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.checkout-form .btn--lg { max-width: none; margin-bottom: 0; margin-top: 0.5rem; }

/* Success screen */

.cart-drawer__success {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.cart-success-icon { margin-bottom: 0.5rem; }

.cart-success__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.cart-success__text {
  color: var(--fg-dim);
  font-size: 0.85rem;
  margin: 0;
  max-width: 22rem;
  line-height: 1.55;
}

/* ————— Mobile nav ————— */

@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .header__inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: center; }

  .nav {
    position: fixed;
    inset: 0;
    top: calc(1.3rem + 2 * 0.75rem + 0.5rem + 40px);
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1.5rem var(--space);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    z-index: 40;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.25rem;
    font-size: 0.8rem;
  }
}
