/* ═══════════════════════════════════════════════════════════════════
   SNITCH — Premium Menswear · style.css
   Mobile-first, production-ready stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root,
[data-theme="dark"] {
  --font-display: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --bg:           #0d0d0d;
  --bg-soft:      #161618;
  --bg-muted:     #1f1f22;
  --text:         #f5f5f7;
  --text-muted:   #a3a3ad;
  --text-light:   #767680;
  --border:       #2a2a2e;
  --border-light: #1e1e20;
  --accent:       #0a0a0a;
  --accent-hover: #1f1f1f;
  --band-bg:      #ffffff;
  --band-text:    #0d0d0d;
  --sale-red:     #e01e37;
  --new-green:    #059669;
  --hot-orange:   #d97706;
}

:root {
  /* Layout */
  --mobile-max:   480px;
  --tablet-break: 768px;
  --desktop-max:  1500px;
  --header-h:     60px;
  --announce-h:   36px;
  --bottom-nav-h: 75px;
  --section-pad:  48px 16px;

  /* Spacing */
  --gap-xs:  4px;
  --gap-sm:  8px;
  --gap-md:  16px;
  --gap-lg:  24px;
  --gap-xl:  40px;
  --gap-2xl: 64px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadow */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-nav: 0 -2px 20px rgba(0,0,0,.08);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --t-fast: 150ms var(--ease);
  --t-base: 200ms var(--ease);
  --t-slow: 300ms var(--ease);
}

[data-theme="light"] {
  /* Colors */
  --bg:           #ffffff;
  --bg-soft:      #fafafa;
  --bg-muted:     #f3f4f6;
  --text:         #0a0a0a;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --border:       #e5e7eb;
  --border-light: #f3f4f6;
  --accent:       #0a0a0a;
  --accent-hover: #222222;
  --band-bg:      #0a0a0a;
  --band-text:    #ffffff;
  --sale-red:     #e01e37;
  --new-green:    #059669;
  --hot-orange:   #d97706;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.header__logo,
.mobile-menu__brand,
.footer__logo,
.hero__title,
.hero__eyebrow,
.section__title,
.promo-banner__title,
.newsletter__title,
.footer__col-title,
.bottom-nav__new-pill {
  font-family: var(--font-display);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 999px; }

/* ═══════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: #0a0a0a;
  color: #fff;
  height: var(--announce-h);
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.announcement-bar__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  height: 100%;
  padding: 0 24px;
  animation: marqueeAnnounce 30s linear infinite;
  will-change: transform;
}
.announcement-bar__track span { flex-shrink: 0; }

@keyframes marqueeAnnounce {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--t-base), background var(--t-base);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 16px;
  max-width: var(--desktop-max);
  margin: 0 auto;
  gap: var(--gap-md);
}

/* Logo */
.header__logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity var(--t-fast);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.header__logo:hover { opacity: .7; }

/* Left */
.header__left { display: flex; align-items: center; gap: var(--gap-sm); }

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.header__hamburger:hover { background: var(--bg-muted); }
.header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}
.header__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Desktop Nav */
.header__desktop-nav { display: none; }

/* Right */
.header__right {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Icon buttons */
.header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), transform var(--t-fast);
  color: var(--text);
}
.header__icon-btn:hover { background: var(--bg-muted); }
.header__icon-btn:active { transform: scale(.92); }
.header__profile { display: none; }

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 6px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #e01e37;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid #fff;
  animation: badgePop .3s var(--ease) both;
}
@keyframes badgePop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Search Bar */
.search-bar {
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--t-slow), opacity var(--t-base), padding var(--t-base);
}
.search-bar.open {
  max-height: 64px;
  opacity: 1;
  padding: 10px 16px;
}
.search-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 10px 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-bar__inner:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10,10,10,.06);
}
.search-bar__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text);
}
.search-bar__input::placeholder { color: var(--text-light); }
.search-bar__clear { color: var(--text-muted); padding: 0 2px; }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg);
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.menu-overlay.open .mobile-menu { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu__brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .18em;
}
.mobile-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mobile-menu__close:hover { background: var(--bg-muted); }

.mobile-menu__nav {
  flex: 1;
  padding: 16px 0;
}
.mobile-menu__link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-fast), padding-left var(--t-base);
}
.mobile-menu__link:hover { background: var(--bg-soft); padding-left: 32px; }
.mobile-menu__link.active { font-weight: 700; }

.mobile-menu__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.mobile-menu__footer-link {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.mobile-menu__footer-link:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════════
   MAIN + SECTION SHARED
   ═══════════════════════════════════════════════════════════════════ */
.main {
  padding-bottom: var(--bottom-nav-h);
}
.section {
  padding: var(--section-pad);
  max-width: var(--desktop-max);
  margin: 0 auto;
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.section__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast), gap var(--t-fast);
}
.section__link:hover { color: var(--text); gap: 8px; }

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.hero__slide.active { opacity: 1; }
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero__slide.active .hero__img {
  transform: scale(1);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.0) 30%,
    rgba(0,0,0,.4) 70%,
    rgba(0,0,0,.85) 100%
  );
}
.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px 110px;
  color: #fff;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: rgba(255,255,255,.7);
}
.hero__title {
  font-size: clamp(52px, 15vw, 96px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__sub {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

/* Hero indicators */
.hero__dots {
  position: absolute;
  bottom: 88px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.hero__dot {
  width: 4px;
  height: 20px;
  background: rgba(255,255,255,.4);
  border-radius: var(--r-full);
  transition: background var(--t-base), height var(--t-base);
}
.hero__dot.active {
  background: #fff;
  height: 32px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 3;
  animation: scrollHint 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: #fff;
  color: #0a0a0a;
}
.btn--primary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,.25);
}
.btn--primary:active { transform: scale(.96); }
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}
.btn--dark {
  background: var(--accent);
  color: #fff;
}
.btn--dark:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--sm { padding: 10px 20px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--band-bg);
  color: var(--band-text);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-strip__track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: marqueeRoll 20s linear infinite;
  will-change: transform;
}
.marquee-dot {
  opacity: .4;
  font-size: 16px;
}
@keyframes marqueeRoll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════
   CATEGORY TILES
   ═══════════════════════════════════════════════════════════════════ */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 10px;
  background: var(--bg: var(--bg-soft));
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg, #f3f4f6);
  opacity: .05;
  transition: opacity var(--t-base);
}
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.category-card:hover::before { opacity: .12; }
.category-card:active { transform: scale(.97); }
.category-card__emoji {
  font-size: 26px;
  margin-bottom: 2px;
  display: block;
}
.category-card__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}
.category-card__count {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}
.category-card--sale {
  background: #e01e37;
  border-color: #e01e37;
}
.category-card--sale .category-card__name,
.category-card--sale .category-card__count { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   FILTER CHIPS
   ═══════════════════════════════════════════════════════════════════ */
.filter-chips {
  display: flex;
  gap: var(--gap-sm);
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: 7px 16px;
  background: var(--bg-muted);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: all var(--t-base);
  cursor: pointer;
  border: 1.5px solid transparent;
  -webkit-tap-highlight-color: transparent;
}
.chip:hover { color: var(--text); background: var(--border); }
.chip.active {
  background: var(--band-bg);
  color: var(--band-text);
  border-color: var(--band-bg);
}
.chip:active { transform: scale(.93); }

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════════════════ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Product Card */
.product-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--t-base), transform var(--t-base);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Media */
.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.05); }

/* Badges */
.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--new  { background: #0a0a0a; color: #fff; }
.badge--hot  { background: #d97706; color: #fff; }
.badge--sale { background: #e01e37; color: #fff; }

/* Wishlist */
.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--t-base);
  backdrop-filter: blur(4px);
  color: var(--text-muted);
}
.product-card__wishlist:hover { background: #fff; color: #e01e37; transform: scale(1.1); }
.product-card__wishlist.wished { color: #e01e37; }
.product-card__wishlist.wished svg path { fill: #e01e37; stroke: #e01e37; }

/* Quick Add — full-width CTA at the bottom of the card */
.product-card__quick-add {
  margin-top: 12px;
}
.quick-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  background: var(--band-bg);
  color: var(--band-text);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-fast);
}
.quick-add-btn:hover {
  transform: translateY(-2px);
  border-color: var(--band-bg);
  box-shadow: var(--shadow-md);
}
.quick-add-btn:active { transform: translateY(0); }

/* Info */
.product-card__info {
  padding: 10px 12px 14px;
}
.product-card__colors {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}
.color-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--t-fast);
  position: relative;
}
.color-dot:hover { transform: scale(1.2); }
.color-dot.active::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--text);
}
.product-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.price { line-height: 1; }
.price--current {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.price--original {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
}
.price--discount {
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 1px 5px;
  border-radius: 4px;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars {
  font-size: 10px;
  color: #f59e0b;
  letter-spacing: .5px;
}
.rating-count {
  font-size: 10px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════════════════════════════════ */
.promo-banner {
  padding: 0 16px 48px;
}
.promo-banner__inner {
  background: #0a0a0a;
  border-radius: var(--r-xl);
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.promo-banner__inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 80px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.promo-banner__content { flex: 1; }
.promo-banner__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.promo-banner__title {
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.promo-banner__sub {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  line-height: 1.6;
}
.promo-banner__sub strong { color: #fff; }

/* Promo Visual */
.promo-banner__visual {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.promo-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  animation: promo-pulse 2s ease-in-out infinite;
}
.promo-number {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.promo-number span {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}
.promo-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@keyframes promo-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: .7; }
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-soft);
  padding: 36px 16px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--desktop-max);
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.trust-item__icon {
  width: 52px;
  height: 52px;
  background: var(--band-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--band-text);
  margin-bottom: 4px;
  transition: transform var(--t-base);
}
.trust-item:hover .trust-item__icon { transform: scale(1.08) rotate(-3deg); }
.trust-item__title {
  font-size: 13px;
  font-weight: 700;
}
.trust-item__desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   TRENDING LOOKS (horizontal scroll)
   ═══════════════════════════════════════════════════════════════════ */
.trending__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.trending__scroll::-webkit-scrollbar { display: none; }
.look-card {
  flex-shrink: 0;
  width: 160px;
}
.look-card__img-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
}
.look-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.look-card:hover .look-card__img { transform: scale(1.06); }
.look-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--t-base);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.look-card:hover .look-card__overlay { opacity: 1; }
.look-card__label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
}
.newsletter__inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.newsletter__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.newsletter__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.newsletter__form {}
.newsletter__input-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  background: var(--bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.newsletter__input-wrap:focus-within {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(10,10,10,.07);
}
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 13px;
  background: transparent;
  color: var(--text);
}
.newsletter__input::placeholder { color: var(--text-light); }
.newsletter__btn {
  padding: 12px 24px;
  background: var(--band-bg);
  color: var(--band-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 0 var(--r-full) var(--r-full) 0;
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.newsletter__btn:hover { background: #333; }
.newsletter__btn:active { transform: scale(.97); }
.newsletter__note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.8);
  padding: 48px 16px 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--desktop-max);
  margin: 0 auto;
}
.footer__logo {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #fff;
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  gap: var(--gap-sm);
}
.footer__social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--t-base);
}
.footer__social:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  transform: translateY(-2px);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.footer__link {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer__link:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  max-width: var(--desktop-max);
  margin: 24px auto 0;
}
.footer__copy { font-size: 11px; color: rgba(255,255,255,.3); }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal-link {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
}
.footer__legal-link:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════════════
   BOTTOM NAVIGATION (Mobile)
   ═══════════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--bottom-nav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-nav);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--text-light);
  transition: all var(--t-base);
  position: relative;
  border-radius: var(--r-sm);
  margin: 6px 4px;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav__item:hover,
.bottom-nav__item.active {
  color: var(--text);
  background: rgba(0,0,0,.05);
}
.bottom-nav__item.active::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 0 0 2px 2px;
}
.bottom-nav__item:active { transform: scale(.88); }
.bottom-nav__icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.bottom-nav__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* NEW pill */
.bottom-nav__item--new {
  align-items: center;
  justify-content: center;
}
.bottom-nav__new-pill {
  background: #0a0a0a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 10px 14px;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  box-shadow: 0 4px 12px rgba(10,10,10,.25);
}
.bottom-nav__item--new:hover .bottom-nav__new-pill,
.bottom-nav__item--new.active .bottom-nav__new-pill {
  background: #333;
  transform: scale(1.06);
}

/* Cart badge on bottom nav */
.bottom-nav__cart-wrap { position: relative; }
.bottom-nav__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 15px;
  height: 15px;
  background: #e01e37;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid #fff;
}

/* Touch feedback (no hover device) */
@media (hover: none) {
  .product-card:active { transform: translateY(-3px) scale(.98); }
  .product-card:active .product-card__media img { transform: scale(1.05); }
  .btn:active, .chip:active, .quick-add-btn:active { transform: scale(.97); }
}

/* ═══════════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0a0a0a;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE: TABLET (768px+)
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root {
    --section-pad: 64px 32px;
    --header-h: 68px;
  }

  .header__hamburger { display: none; }
  .header__desktop-nav { display: flex; align-items: center; gap: 4px; }
  .header__nav-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    color: var(--text-muted);
    transition: all var(--t-fast);
    white-space: nowrap;
  }
  .header__nav-link:hover { color: var(--text); background: var(--bg-muted); }
  .header__nav-link.active { color: var(--text); font-weight: 800; }
  .header__nav-link--sale { color: var(--sale-red) !important; font-weight: 800; }
  .header__nav-link--sale:hover { color: var(--sale-red) !important; background: rgba(224,30,55,.06); }
  .header__profile { display: flex; }

  .bottom-nav { display: none; }
  .main { padding-bottom: 0; }

  .categories__grid { grid-template-columns: repeat(6, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }

  .look-card { width: 200px; }
  .hero__content { padding-bottom: 80px; }
  .hero__dots { bottom: 60px; }
  .hero__scroll-hint { bottom: 60px; }

  .footer__inner { flex-direction: row; align-items: flex-start; gap: 64px; }
  .footer__brand { min-width: 200px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE: DESKTOP (1280px+)
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  :root {
    --section-pad: 80px 48px;
    --header-h: 72px;
  }

  .header__nav-link { padding: 8px 14px; font-size: 12px; }
  .products__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .section__title { font-size: 26px; }
  .hero__content { padding: 0 64px 120px; }
  .look-card { width: 240px; }
  .promo-banner__inner { padding: 52px 56px; }
  .promo-banner__visual { width: 140px; height: 140px; }
  .promo-number { font-size: 54px; }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY: REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ─── Focus visible (accessibility) ─── */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 3px;
}
