/* ==========================================================================
   ONHIZM — Redesigned Storefront Preview
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --bg: #ffffff;
  --bg-card: #f5f5f5;
  --bg-elevated: #eeeeee;
  --text: #0a0a0a;
  --text-muted: #6a6a64;
  --accent: #0a0a0a;
  --accent-hover: #333333;
  --border: #e0e0e0;
  --radius: 2px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
}

.inline-link:hover {
  color: var(--accent-hover);
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ---------- Container ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ---------- Utilities ---------- */
.label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 0.8rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--accent);
  overflow: hidden;
  padding: 0.55rem 0;
  position: relative;
}

.announcement-bar .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.announcement-bar .marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.announcement-bar span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 600;
  padding: 0 1rem;
  white-space: nowrap;
}

.announcement-bar .sep {
  font-size: 0.5rem;
  opacity: 0.4;
  padding: 0 0.5rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
  padding-top: 32px; /* space for announcement */
}

.header--scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav {
  display: flex;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-img {
  height: 42px;
  width: auto;
  transition: opacity 0.3s;
}

.logo-img:hover {
  opacity: 0.8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}

.mobile-nav__link:hover {
  color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.55) 0%,
    transparent 35%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero__label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
  margin-left: auto;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}

.trust-bar__item svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  opacity: 0.85;
}

.trust-bar__item h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.trust-bar__item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- Featured Product ---------- */
.featured-product {
  padding: 6rem 0;
}

.featured-product__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.featured-product__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.featured-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.4s ease;
}

.featured-product__media:hover .featured-product__img {
  transform: scale(1.03);
}

.featured-product__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-product__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.featured-product__subtitle {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.featured-product__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
}

.featured-product__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.featured-product__content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ---------- Collection / Product Grid ---------- */
.collection {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.collection .shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__info {
  padding: 1rem 0;
}

.product-card__info h3 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.3rem;
  transition: color 0.3s var(--ease);
}

.product-card:hover .product-card__info h3 {
  color: var(--accent);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.collection__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Marquee Divider ---------- */
.marquee-divider {
  overflow: hidden;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track--slow {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-divider .marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-divider span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text);
  padding: 0 1.5rem;
  white-space: nowrap;
  opacity: 0.15;
}

.marquee-divider .sep {
  font-size: 0.8rem;
  opacity: 0.08;
}

.marquee-divider:hover .marquee-track--slow {
  animation-play-state: paused;
}

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

/* ---------- Brand Story ---------- */
.brand-story {
  padding: 6rem 0;
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-story__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.brand-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.brand-story__media:hover img {
  transform: scale(1.03);
}

.brand-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 480px;
}

.brand-story__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-story__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

.brand-story__content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ---------- Lookbook ---------- */
.lookbook {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.lookbook__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lookbook__item {
  border-radius: var(--radius);
  overflow: hidden;
}

.lookbook__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.5s ease;
  display: block;
}

.lookbook__item:hover img {
  transform: scale(1.04);
}

.lookbook__item--tall {
  min-height: 500px;
  aspect-ratio: 3 / 4;
}

/* ---------- Newsletter ---------- */
.newsletter {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.newsletter__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.newsletter__inner p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter__form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.newsletter__form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter__form input[type="email"]:focus {
  border-color: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.8rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 0.6rem;
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger product cards */
.product-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.product-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.product-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.product-card.reveal:nth-child(5) { transition-delay: 0.4s; }
.product-card.reveal:nth-child(6) { transition-delay: 0.5s; }

/* Stagger trust bar items */
.trust-bar__item.reveal:nth-child(2) { transition-delay: 0.08s; }
.trust-bar__item.reveal:nth-child(3) { transition-delay: 0.16s; }
.trust-bar__item.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Color Swatches ---------- */
.color-swatches {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  outline: none;
  padding: 0;
  position: relative;
}

.color-swatch::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.color-swatch--active::after {
  border-color: var(--accent);
}

.color-swatch:hover {
  transform: scale(1.15);
}

.color-swatch--soldout {
  opacity: 0.5;
  position: relative;
}

.color-swatch--soldout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 0.5px),
    #e00 calc(50% - 0.5px),
    #e00 calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  border-radius: inherit;
  z-index: 1;
}

/* ---------- Variant Picker (shop cards) ---------- */
.variant-picker {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.variant-btn {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.variant-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.variant-btn--active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---------- Responsive ---------- */

/* Tablet */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .header__inner {
    padding: 1rem 2rem;
  }

  .featured-product__grid {
    gap: 3rem;
  }

  .brand-story__grid {
    gap: 3rem;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  /* Prevent horizontal overflow on mobile */
  html, body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Header */
  .header {
    padding-top: 28px; /* smaller announcement bar */
  }

  .header__nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }

  .header__inner {
    padding: 0.7rem 1.25rem;
  }

  .header__logo {
    position: relative;
    left: auto;
    transform: none;
  }

  .logo-img {
    height: 34px;
  }

  /* Announcement bar */
  .announcement-bar {
    padding: 0.4rem 0;
  }

  .announcement-bar span {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
  }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 550px;
  }

  .hero__content {
    padding: 2.5rem 1.25rem;
  }

  .hero__heading {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    margin-bottom: 1rem;
  }

  .hero__text {
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
  }

  .hero__label {
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
  }

  /* Bigger touch targets for buttons */
  .btn {
    padding: 1.1rem 2.2rem;
    font-size: 0.7rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar {
    padding: 2rem 0;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-bar__item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .trust-bar__item svg {
    width: 22px;
    height: 22px;
  }

  .trust-bar__item h4 {
    font-size: 0.65rem;
  }

  .trust-bar__item p {
    font-size: 0.7rem;
  }

  /* Featured product */
  .featured-product {
    padding: 3.5rem 0;
  }

  .featured-product__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-product__media {
    aspect-ratio: 4 / 5;
    margin: 0 -1.25rem;
    border-radius: 0;
  }

  .featured-product__content {
    gap: 0.8rem;
  }

  .featured-product__price {
    font-size: 1.3rem;
  }

  .featured-product__content .btn {
    width: 100%;
  }

  /* Product grid */
  .collection {
    padding: 3rem 0;
  }

  .collection .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card__info {
    padding: 0.7rem 0;
  }

  .product-card__info h3 {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .product-card__price {
    font-size: 0.78rem;
  }

  .collection__cta {
    margin-top: 2rem;
  }

  .collection__cta .btn {
    width: 100%;
  }

  /* Marquee */
  .marquee-divider {
    padding: 1.2rem 0;
  }

  .marquee-divider span {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Brand story */
  .brand-story {
    padding: 3.5rem 0;
  }

  .brand-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-story__media {
    aspect-ratio: 4 / 5;
    margin: 0 -1.25rem;
    border-radius: 0;
  }

  .brand-story__content {
    max-width: 100%;
    gap: 1rem;
  }

  .brand-story__content p {
    font-size: 0.9rem;
  }

  .brand-story__content .btn {
    width: 100%;
  }

  /* Lookbook */
  .lookbook {
    padding: 3rem 0;
  }

  .lookbook__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.75rem;
  }

  .lookbook__item--tall {
    grid-row: auto;
    min-height: 280px;
    aspect-ratio: 3 / 4;
  }

  /* Newsletter */
  .newsletter {
    padding: 3.5rem 0;
  }

  .newsletter__inner p {
    font-size: 0.88rem;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__form input[type="email"] {
    min-height: 48px;
    font-size: 16px; /* prevent iOS zoom */
  }

  .newsletter__form .btn {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__logo {
    height: 30px;
  }

  .footer__col a {
    padding: 0.2rem 0; /* better touch targets */
    font-size: 0.82rem;
  }

  /* Mobile nav — bigger tap targets */
  .mobile-nav {
    gap: 1rem;
  }

  .mobile-nav__link {
    font-size: 1.3rem;
    padding: 0.6rem 1.5rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  /* Color swatches — bigger for touch */
  .color-swatch {
    width: 24px;
    height: 24px;
  }

  .color-swatch::after {
    inset: -4px;
  }

  .color-swatch:hover {
    transform: none; /* no hover on touch */
  }

  /* Variant buttons — bigger tap targets */
  .variant-btn {
    font-size: 0.58rem;
    padding: 0.5rem 0.8rem;
    min-height: 34px;
  }

  /* Hide variant pickers inside small product cards — too cramped in 2-col grid */
  .product-card .variant-picker {
    display: none;
  }

  /* Keep variant pickers on featured cards and standalone featured product */
  .product-card--featured .variant-picker,
  .featured-product .variant-picker {
    display: flex;
  }

  /* Featured product variant buttons — full mobile treatment */
  .featured-product .variant-btn {
    padding: 0.6rem 1rem;
    min-height: 40px;
    font-size: 0.62rem;
  }

  /* Disable hover transforms on touch */
  .product-card:hover .product-card__media img {
    transform: none;
  }

  .brand-story__media:hover img,
  .lookbook__item:hover img,
  .featured-product__media:hover .featured-product__img {
    transform: none;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  /* Tap-friendly active states instead of hover */
  .btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }

  .product-card:active {
    opacity: 0.85;
  }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .hero__heading {
    font-size: 2.6rem;
  }

  .hero {
    min-height: 500px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Very small screens */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 1rem;
  }

  .hero__heading {
    font-size: 2.2rem;
  }

  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.65rem;
  }

  .product-grid {
    gap: 0.5rem;
  }
}

/* Safe area insets for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer__bottom {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .mobile-nav {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .marquee-track--slow {
    animation: none;
  }

  .product-card__media img,
  .brand-story__media img,
  .featured-product__img,
  .lookbook__item img {
    transition: none;
  }
}

/* ==========================================================================
   Cart Drawer
   ========================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

#cart-drawer.open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

#cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-panel__header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-panel__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  padding: 0.25rem;
}

.cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.875rem;
  align-items: start;
}

.cart-item__img {
  width: 72px;
  height: 90px;
  object-fit: cover;
}

.cart-item__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cart-item__variant {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cart-item__price {
  font-size: 0.85rem;
  margin-top: 0.375rem;
}

.cart-item__remove {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
  line-height: 1;
}

.cart-item__remove:hover {
  color: var(--text);
}

.cart-panel__footer {
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

#cartCheckoutBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.size-btn--sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Mute Button */
#muteBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#muteBtn:hover {
  background: rgba(30,30,30,0.9);
  transform: scale(1.08);
}
