/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-border: #e5e5e5;
  --gray-muted: #6b6b6b;
  --gray-placeholder: #e5e5e5;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 64px;
  --max-w: 1440px;
  --pad: clamp(16px, 4vw, 64px);
}

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

html {
  font-family: var(--font);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body { min-height: 100vh; }

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

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Focus ring - visible for keyboard nav, invisible on click */
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 11px;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-black {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-black:hover { background: transparent; color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ============================================================
   PLACEHOLDER BLOCKS - shared style for all gray image blocks
   ============================================================ */
[class$="-placeholder"], [class*="-placeholder "] {
  background: var(--gray-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
}

[class$="-placeholder"] span,
[class*="-placeholder "] span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-muted);
  text-transform: uppercase;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

/* solid state - triggered on hover or scroll past hero midpoint */
.site-header.solid {
  background: var(--white);
  border-bottom-color: var(--gray-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-wordmark {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
  transition: color 0.28s ease;
}
.site-header.solid .logo-wordmark { color: var(--black); }

/* Nav */
.site-nav { flex: 1; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.28s ease;
}
.site-header.solid .site-nav a { color: var(--black); }

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--white);
  transition: width 0.2s ease, background 0.28s ease;
}
.site-header.solid .site-nav a::after { background: var(--black); }
.site-nav a:hover::after { width: 100%; }

/* Header icon buttons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: var(--white);
  transition: background 0.15s, color 0.28s ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.18); }
.site-header.solid .icon-btn { color: var(--black); }
.site-header.solid .icon-btn:hover { background: var(--gray-border); }

.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  transition: background 0.28s ease, color 0.28s ease;
}
.site-header.solid .cart-count { background: var(--black); color: var(--white); }

.wishlist-icon-btn { position: relative; }

.wishlist-count {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  transition: background 0.28s ease, color 0.28s ease;
}
.site-header.solid .wishlist-count { background: var(--black); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hamburger:hover { background: var(--gray-border); }

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.28s ease;
  transform-origin: center;
}
.site-header.solid .hamburger span { background: var(--black); }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO - single full-bleed image
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(600px + var(--header-h));
  margin-top: calc(-1 * var(--header-h));
  overflow: hidden;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: #aaaaaa;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.0) 35%),
    linear-gradient(to top,    rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.0) 55%);
}

.hero-content {
  position: absolute;
  bottom: 56px;
  left: clamp(24px, 6vw, 64px);
  z-index: 2;
  max-width: 440px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  line-height: 1.5;
}
.hero-sub-2 {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-sub {
  font-size: 14px;
  color: var(--gray-muted);
  margin-top: 6px;
  font-weight: 400;
}

.shop-all-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
  padding-bottom: 2px;
  transition: text-decoration-thickness 0.15s;
}
.shop-all-link:hover { text-decoration-thickness: 2px; }

/* ============================================================
   SHOP OUR LATEST DROP - horizontal scroll rail
   ============================================================ */
.drop-rail {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.drop-rail-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.drop-rail-track::-webkit-scrollbar { display: none; }

.drop-rail-track .product-card {
  flex: 0 0 calc(25% - 9px);
  min-width: 180px;
  scroll-snap-align: start;
}

.drop-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.drop-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.drop-img-wrap:hover .quick-add-btn,
.drop-img-wrap:focus-within .quick-add-btn {
  opacity: 1;
  transform: translateY(0);
}

.drop-item-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
}

/* ============================================================
   NEW ARRIVALS - product card grid
   ============================================================ */
.new-releases {
  padding: 72px 0 64px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card { display: flex; flex-direction: column; }

.product-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  pointer-events: none;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--black);
  transition: background 0.15s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}
.wishlist-btn:hover { background: var(--white); }
.wishlist-btn svg { transition: fill 0.2s ease; }
.wishlist-btn[data-active="true"] svg { fill: var(--black); }

@keyframes wishlistPulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.4); }
  65%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}
.wishlist-btn.pulse svg { animation: wishlistPulse 0.28s ease-out; }

.quick-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.92);
  color: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.product-img-wrap:hover .quick-add-btn,
.product-img-wrap:focus-within .quick-add-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-info { padding: 12px 0 0; }

.product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.product-colorway {
  font-size: 12px;
  color: var(--gray-muted);
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  font-weight: 600;
}

/* ============================================================
   EDITORIAL / BRAND MOMENTS
   ============================================================ */
.editorial-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.editorial-intro { margin-bottom: 24px; }

.editorial-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 16px;
}

.editorial-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.editorial-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  margin-bottom: 14px;
}

.editorial-caption {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--black);
}

.editorial-pullquote {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  padding: 16px 24px;
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--black);
}

@media (max-width: 768px) {
  .editorial-pullquote {
    grid-column: 1;
    padding: 24px 0 0;
    font-size: clamp(18px, 4.5vw, 22px);
  }
}

/* ============================================================
   VITALITY MODE - full-width editorial banner
   ============================================================ */
.vitality-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-border);
  height: 640px;
}

.vitality-banner-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets-photos/newbanner2.PNG');
  background-size: cover;
  background-position: 50% 33%;
  background-repeat: no-repeat;
}

.vitality-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.04) 100%);
}

.vitality-banner-content {
  position: absolute;
  top: 50%;
  left: clamp(24px, 6vw, 96px);
  transform: translateY(-50%);
  z-index: 2;
  max-width: 480px;
}

.vitality-banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.vitality-banner-title {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.vitality-banner-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 32px;
}

/* ============================================================
   UGC / SOCIAL STRIP
   ============================================================ */
.ugc-strip {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.ugc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.ugc-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ugc-grid::-webkit-scrollbar { display: none; }

.ugc-item {
  flex: 0 0 calc(20% - 7px);
  min-width: 150px;
  scroll-snap-align: start;
}

.ugc-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

.ugc-handle {
  font-size: 11px;
  color: var(--gray-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.contact-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 14px;
}

.contact-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 15px;
  color: var(--gray-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-field select:focus { border-color: var(--black); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-muted); }

.form-field input:focus,
.form-field textarea:focus { border-color: var(--black); }

.label-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-muted);
}

.contact-form .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--gray-border);
}

.footer-newsletter-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-newsletter-sub {
  font-size: 13px;
  color: var(--gray-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.newsletter-form:focus-within { border-color: var(--black); }

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  font-family: var(--font);
  font-size: 13px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--black);
}
.newsletter-form input::placeholder { color: var(--gray-muted); }

.newsletter-form button {
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #333; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--black);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  font-size: 13px;
  color: var(--gray-muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--black); }

/* Footer mid - social + payment */
.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-border);
}

.social-icons { display: flex; gap: 8px; }

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray-border);
  border-radius: 50%;
  color: var(--black);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.social-icons a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.payment-icons span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-muted);
  padding: 5px 9px;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
}

/* Footer bottom - copyright */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  font-size: 12px;
  color: var(--gray-muted);
}

.footer-legal-links { display: flex; gap: 0; }

.footer-legal-links a {
  color: var(--gray-muted);
  padding-left: 20px;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: var(--black); }

/* ============================================================
   RESPONSIVE - TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE - MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav overlay */
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px var(--pad);
    z-index: 99;
    overflow-y: auto;
  }

  .site-nav.open ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav.open a {
    display: block;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    border-bottom: 1px solid var(--gray-border);
  }

  .site-nav.open a::after { display: none; }

  /* Hero: shorter on mobile */
  .hero { height: calc(460px + var(--header-h)); }
  .hero-content { bottom: 36px; }

  .drop-rail { padding: 48px 0; }
  .drop-rail-track .product-card { min-width: 155px; }

  .new-releases { padding: 48px 0 40px; }

  .editorial-section { padding: 56px 0; }
  .editorial-grid { grid-template-columns: 1fr; gap: 24px; }

  .vitality-banner { height: 400px; }
  .vitality-banner-img { background-size: 150% auto; background-position: 50% 33%; }

  .ugc-strip { padding: 48px 0; }
  .ugc-item { min-width: 140px; }

  .footer-top { padding: 48px 0 36px; }
  .footer-mid { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links a:first-child { padding-left: 0; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .product-grid { gap: 8px; }
  .contact-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  /* Hide search and account on very small screens; keep wishlist and cart */
  .header-icons .icon-btn[aria-label="Search"],
  .header-icons .icon-btn[aria-label="My account"] { display: none; }

  /* Keep vitality banner content from overflowing at 375px */
  .vitality-banner-content { max-width: calc(100% - 48px); }
  .vitality-banner-title { font-size: 36px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PANEL OVERLAY (shared backdrop for QA + Cart)
   ============================================================ */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.panel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   QUICK ADD PANEL
   ============================================================ */
.qa-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: var(--white);
  z-index: 310;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.qa-panel.open { transform: translateX(0); }

.qa-panel-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.qa-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.qa-full-details {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.qa-full-details:hover { color: var(--black); }

.qa-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: background 0.15s;
  color: var(--black);
  flex-shrink: 0;
}
.qa-close:hover { background: var(--gray-border); }

.qa-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.qa-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--gray-placeholder);
  transition: background 0.25s ease;
}

.qa-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.qa-info {
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qa-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.qa-color-label {
  font-size: 13px;
  color: var(--gray-muted);
  font-weight: 500;
  margin-top: -6px;
}

.qa-color-value {
  color: var(--black);
  font-weight: 600;
}

.qa-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qa-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 3px;
  cursor: pointer;
  transition: outline-color 0.15s;
  flex-shrink: 0;
}
.qa-swatch.active { outline-color: var(--black); }
.qa-swatch:hover:not(.active) { outline-color: var(--gray-muted); }

.qa-size-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: -8px;
}

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

.qa-size-btn {
  min-width: 48px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
}
.qa-size-btn:hover { border-color: var(--black); }
.qa-size-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.qa-price {
  font-size: 16px;
  font-weight: 700;
  margin-top: -4px;
}

/* Quantity stepper - shared by QA panel and PDP */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gray-border);
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
}
.qty-minus,
.qty-plus {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  background: none;
  color: var(--black);
  transition: background 0.15s;
  flex-shrink: 0;
}
.qty-minus:hover,
.qty-plus:hover { background: var(--gray-border); }
.qty-value {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-left: 1.5px solid var(--gray-border);
  border-right: 1.5px solid var(--gray-border);
}

/* QA panel quantity row */
.qa-panel .qty-stepper { margin-bottom: 12px; margin-top: 8px; }

/* PDP quantity row */
.pdp-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pdp-qty-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qa-add-btn {
  width: 100%;
  border-radius: 4px;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-3px); }
  80%       { transform: translateX(3px); }
}
.qa-sizes.shake { animation: shake 0.38s ease; }

/* Card inline swatches (hover reveal on product/drop cards) */
.card-swatches {
  position: absolute;
  bottom: 46px;
  left: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 3;
}

.product-img-wrap:hover .card-swatches,
.product-img-wrap:focus-within .card-swatches,
.drop-img-wrap:hover .card-swatches,
.drop-img-wrap:focus-within .card-swatches {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.card-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, transform 0.15s;
}
.card-swatch:hover { border-color: var(--white); transform: scale(1.18); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-border);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: background 0.15s;
  color: var(--black);
}
.cart-drawer-close:hover { background: var(--gray-border); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
}

/* Empty state */
.cart-empty-msg {
  font-size: 14px;
  color: var(--gray-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.cart-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 20px;
}

.cart-tab {
  flex: 1;
  padding: 10px 0;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.cart-tab.active { color: var(--black); border-bottom-color: var(--black); }
.cart-tab:hover:not(.active) { color: var(--black); }

.cart-recs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.cart-recs::-webkit-scrollbar { display: none; }

.cart-rec-item { flex: 0 0 120px; text-decoration: none; color: inherit; display: block; }

.cart-rec-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--gray-placeholder);
  border-radius: 6px;
  margin-bottom: 8px;
}

.cart-rec-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-muted);
}

/* Cart items (non-empty) */
.cart-items {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border);
}

.cart-item-img {
  width: 72px;
  height: 96px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--gray-placeholder);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--gray-muted);
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
}

.cart-item-qty {
  font-size: 12px;
  color: var(--gray-muted);
}

.cart-item-remove {
  font-size: 11px;
  color: var(--gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: auto;
  transition: color 0.15s;
  cursor: pointer;
}
.cart-item-remove:hover { color: var(--black); }

.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--gray-border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
}

.cart-checkout-btn {
  width: 100%;
  border-radius: 4px;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.cart-shipping-note {
  font-size: 11px;
  color: var(--gray-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   SHOP PAGE (PLP)
   ============================================================ */
.shop-page-hero {
  padding: 64px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--gray-border);
  background: var(--white);
}

.shop-page-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.shop-page-sub {
  font-size: 15px;
  color: var(--gray-muted);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

.shop-toolbar {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  background: var(--white);
}

.shop-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-count {
  font-size: 13px;
  color: var(--gray-muted);
  font-weight: 500;
}

.shop-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-sort-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.shop-sort-select {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 8px 32px 8px 12px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.shop-sort-select:focus { border-color: var(--black); }

.shop-grid-section {
  padding: 48px 0 96px;
  background: var(--white);
}

/* ============================================================
   PRODUCT CARD ENHANCEMENTS
   ============================================================ */
.product-img-placeholder,
.drop-img-placeholder {
  transition: background 0.35s ease;
}

/* Crossfade hover overlay - sits on top of placeholder, fades in on hover */
.product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

/* Product name link - inherit styles, no underline */
.product-name-link {
  color: inherit;
  text-decoration: none;
}
.product-name-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   QUICK ADD PANEL - multi-image gallery
   ============================================================ */
.qa-gallery {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qa-img {
  width: 100%;
  background: var(--gray-placeholder);
  transition: background 0.25s ease;
}

.qa-img-main { aspect-ratio: 4 / 3; }
.qa-img-alt  { aspect-ratio: 16 / 9; }

/* OOS size button */
.qa-size-btn.oos {
  opacity: 0.38;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

/* ============================================================
   CART DRAWER - wishlist tab content
   ============================================================ */
.wishlist-empty-msg {
  font-size: 13px;
  color: var(--gray-muted);
  padding: 8px 0;
}

.wishlist-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wishlist-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
}

.wishlist-item-img {
  width: 60px;
  height: 80px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--gray-placeholder);
}

.wishlist-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wishlist-item-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.wishlist-item-price {
  font-size: 13px;
  font-weight: 700;
}

.wishlist-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.wishlist-remove {
  font-size: 11px;
  color: var(--gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.15s;
}
.wishlist-remove:hover { color: var(--black); }

/* ============================================================
   WISHLIST PANEL
   ============================================================ */
.wishlist-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
}
.wishlist-panel.open { transform: translateX(0); }

.wishlist-panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.wishlist-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-border);
  flex-shrink: 0;
}

.wishlist-panel-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.wishlist-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: background 0.15s;
  color: var(--black);
}
.wishlist-panel-close:hover { background: var(--gray-border); }

.wishlist-panel-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: calc(var(--header-h) + 28px) 0 36px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-overlay.open { transform: translateY(0); }

.search-overlay-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  background: transparent;
  color: var(--black);
  min-width: 0;
}
.search-input::placeholder { color: var(--gray-muted); font-weight: 400; }

.search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  color: var(--black);
  transition: background 0.15s;
}
.search-close:hover { background: var(--gray-border); }

.search-suggestions-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 12px;
}

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

.search-suggestions li a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  transition: background 0.15s, border-color 0.15s;
}
.search-suggestions li a:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ============================================================
   ACCOUNT PANEL
   ============================================================ */
.account-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--gray-border);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.account-panel.open { transform: translateX(0); }

.account-panel-inner { padding: 0; }

.account-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.account-panel-title {
  font-size: 15px;
  font-weight: 700;
}

.account-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--black);
  transition: background 0.15s;
}
.account-panel-close:hover { background: var(--gray-border); }

.account-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-border);
  padding: 0 20px;
}

.account-tab {
  flex: 1;
  padding: 12px 0;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.account-tab.active { color: var(--black); border-bottom-color: var(--black); }
.account-tab:hover:not(.active) { color: var(--black); }

.account-tab-content { padding: 24px 20px 32px; }

.account-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-form .btn { width: 100%; border-radius: 4px; padding: 15px; font-size: 13px; letter-spacing: 0.08em; }

.account-forgot {
  font-size: 12px;
  color: var(--gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
  margin-top: -4px;
}
.account-forgot:hover { color: var(--black); }

.account-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-muted);
  text-align: center;
}

.account-switch-link {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   PDP - Product Detail Page
   ============================================================ */
.pdp-breadcrumb-bar {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  background: var(--white);
}

.pdp-breadcrumb {
  font-size: 12px;
  color: var(--gray-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pdp-breadcrumb a { color: var(--gray-muted); transition: color 0.15s; }
.pdp-breadcrumb a:hover { color: var(--black); }

.pdp-crumb-sep { opacity: 0.45; }

.pdp-main {
  padding: 48px 0 80px;
  background: var(--white);
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.pdp-gallery { }

.pdp-main-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: var(--gray-placeholder);
  transition: background 0.3s ease;
  margin-bottom: 8px;
}

.pdp-thumbs {
  display: flex;
  gap: 8px;
}

.pdp-thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 4px;
  background: var(--gray-placeholder);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, opacity 0.15s, background 0.25s;
  opacity: 0.6;
}
.pdp-thumb.active { border-color: var(--black); opacity: 1; }
.pdp-thumb:hover:not(.active) { opacity: 0.85; }

/* Info column */
.pdp-info {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-badge {
  position: relative;
  top: auto;
  left: auto;
  align-self: flex-start;
}

.pdp-name {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pdp-price {
  font-size: 20px;
  font-weight: 700;
  margin-top: -4px;
}

.pdp-color-row { display: flex; flex-direction: column; gap: 10px; }

.pdp-color-label {
  font-size: 13px;
  color: var(--gray-muted);
  font-weight: 500;
}
.pdp-color-label strong { color: var(--black); font-weight: 600; }

.pdp-swatches { display: flex; gap: 10px; flex-wrap: wrap; }

.pdp-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 3px;
  cursor: pointer;
  transition: outline-color 0.15s;
  flex-shrink: 0;
}
.pdp-swatch.active { outline-color: var(--black); }
.pdp-swatch:hover:not(.active) { outline-color: var(--gray-muted); }

.pdp-size-row { display: flex; flex-direction: column; gap: 10px; }

.pdp-size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdp-size-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-size-guide {
  font-size: 12px;
  color: var(--gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-size-guide:hover { color: var(--black); }

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

.pdp-size-btn {
  min-width: 52px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.pdp-size-btn:hover:not(.oos) { border-color: var(--black); }
.pdp-size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.pdp-size-btn.oos {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
  border-style: dashed;
}

.pdp-sizes.shake { animation: shake 0.38s ease; }

.pdp-add-btn {
  width: 100%;
  border-radius: 4px;
  padding: 17px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.pdp-wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border: 1.5px solid var(--gray-border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.pdp-wishlist-btn:hover { border-color: var(--black); }
.pdp-wishlist-btn[data-active="true"] { border-color: var(--black); }
.pdp-wishlist-btn svg { transition: fill 0.2s ease; }
.pdp-wishlist-btn[data-active="true"] svg { fill: var(--black); }
.pdp-wishlist-btn.pulse svg { animation: wishlistPulse 0.28s ease-out; }

.pdp-description {
  font-size: 14px;
  color: var(--gray-muted);
  line-height: 1.65;
}

/* Accordions */
.pdp-accordions { border-top: 1px solid var(--gray-border); }

.pdp-accordion { border-bottom: 1px solid var(--gray-border); }

.pdp-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.pdp-accordion-trigger::-webkit-details-marker { display: none; }
.pdp-accordion-trigger::after { content: '+'; font-size: 20px; font-weight: 300; line-height: 1; }
details[open] > .pdp-accordion-trigger::after { content: '−'; }

.pdp-accordion-body {
  padding: 0 0 18px;
  font-size: 13px;
  color: var(--gray-muted);
  line-height: 1.65;
}
.pdp-accordion-body p + p { margin-top: 14px; }
.pdp-accordion-body ul { margin-top: 8px; padding-left: 16px; list-style: disc; }
.pdp-accordion-body li { margin-bottom: 4px; }

.pdp-size-onesize {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-muted);
  letter-spacing: 0.04em;
}

/* PDP recs section */
.pdp-recs-section {
  padding: 56px 0 80px;
  border-top: 1px solid var(--gray-border);
  background: var(--white);
}
.pdp-recs-section .section-title { margin-bottom: 32px; }

/* ============================================================
   SHOP PAGE - filter sidebar layout
   ============================================================ */
.shop-body {
  background: var(--white);
}

/* Context-specific grid column counts (override the default 4-col rule).
   Inline styles were removed from the HTML; these own the column count. */
.shop-body .product-grid { grid-template-columns: repeat(3, 1fr); }
.pdp-recs-section .product-grid { grid-template-columns: repeat(4, 1fr); }

/* Mobile filter toggle button - hidden on desktop, shown via media query */
.shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1.5px solid var(--black);
  border-radius: 4px;
  cursor: pointer;
  background: none;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.shop-filter-toggle:hover,
.shop-filter-toggle.active { background: var(--black); color: var(--white); }

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 36px;
  padding-bottom: 80px;
}

.shop-filters {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.filter-group {
  border-bottom: 1px solid var(--gray-border);
}

.filter-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.filter-group-title::-webkit-details-marker { display: none; }
.filter-group-title::after { content: '+'; font-size: 18px; font-weight: 300; line-height: 1; }
details[open] > .filter-group-title::after { content: '−'; }

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-muted);
  cursor: pointer;
  transition: color 0.15s;
}
.filter-option:hover { color: var(--black); }
.filter-option input { cursor: pointer; accent-color: var(--black); }

.filter-options-sizes {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-size-btn {
  height: 36px;
  min-width: 42px;
  padding: 0 10px;
  border: 1.5px solid var(--gray-border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.15s;
}
.filter-size-btn:hover { border-color: var(--black); }

.filter-options-colors {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-color-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: outline-color 0.15s;
  outline: 2px solid transparent;
  outline-offset: 3px;
}
.filter-color-btn:hover { outline-color: var(--gray-muted); }

/* ============================================================
   RESPONSIVE - new elements
   ============================================================ */
@media (max-width: 1024px) {
  .pdp-layout { grid-template-columns: 1fr 380px; gap: 40px; }
  /* PDP recs drop to 2-col on tablet (overrides the 4-col context rule above) */
  .pdp-recs-section .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pdp-layout { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
  .pdp-main { padding: 32px 0 56px; }
  .shop-layout { grid-template-columns: 1fr; }
  /* Filter sidebar hidden by default on mobile; shown when toggle fires */
  .shop-filters { display: none; }
  .shop-filters.mobile-open {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 20px;
  }
  /* Reveal the filter toggle button on mobile */
  .shop-filter-toggle { display: flex; }
  /* Shop grid drops to 2 columns (overrides the 3-col context rule) */
  .shop-body .product-grid { grid-template-columns: repeat(2, 1fr); }
  /* Quick Add and swatches are hover-only on desktop; always show on touch */
  .quick-add-btn { opacity: 1; transform: translateY(0); font-size: 10px; padding: 11px; }
  .card-swatches { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .search-overlay { padding: calc(var(--header-h) + 20px) 0 28px; }
}

/* ============================================================
   FILTER ACTIVE STATES + CLEAR BUTTON
   ============================================================ */
.filter-size-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.filter-color-btn.active {
  outline-color: var(--black);
}

.filter-clear-btn {
  display: block;
  margin-top: 20px;
  font-family: var(--font);
  font-size: 11px;
  color: var(--gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.filter-clear-btn:hover { color: var(--black); }

/* ============================================================
   FILTERS HIDDEN — toggled by SHOW_FILTERS in script.js
   ============================================================ */
.filters-hidden .shop-filters,
.filters-hidden .shop-filter-toggle,
.filters-hidden .shop-count { display: none; }

/* Collapse the sidebar column so the grid gets full container width */
.filters-hidden .shop-layout { grid-template-columns: 1fr; }

/* 4 columns across on desktop now that the sidebar is gone */
.filters-hidden .shop-body .product-grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  /* Keep 2 columns on mobile — same as before */
  .filters-hidden .shop-body .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   NEW ARRIVALS HIDDEN — toggled by SHOW_NEW_ARRIVALS in script.js
   ============================================================ */
.new-arrivals-hidden .new-releases { display: none; }

/* ============================================================
   SIZE GUIDE TABLE (PDP accordion)
   ============================================================ */
button.pdp-size-guide {
  font-family: var(--font);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 12px;
}
.size-guide-table th,
.size-guide-table td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--gray-border);
  text-align: left;
}
.size-guide-table th {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
}
.size-guide-table td { color: var(--gray-muted); }
.size-guide-table tbody tr:last-child td { border-bottom: none; }

.size-guide-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--gray-muted);
  font-style: italic;
}

/* ============================================================
   PLACEHOLDER LAUNCH MESSAGES
   ============================================================ */
.account-launch-msg {
  margin-top: 24px;
  padding: 20px 16px;
  font-size: 14px;
  color: var(--gray-muted);
  text-align: center;
  background: #f7f7f7;
  border-radius: 6px;
  line-height: 1.6;
}

.checkout-launch-msg {
  font-size: 12px;
  color: var(--gray-muted);
  text-align: center;
  padding: 10px 14px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CONTACT FORM - result state
   ============================================================ */
.contact-result {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  background: #f5f5f5;
  color: var(--gray-muted);
  line-height: 1.5;
}
.contact-result--ok {
  background: #f4faf4;
  border-color: #b8d8b8;
  color: #2e6e2e;
}
.contact-result--err {
  background: #fdf3f3;
  border-color: #ddb8b8;
  color: #7a2020;
}

/* ============================================================
   PRODUCT LOADING SKELETON
   ============================================================ */
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-line {
  height: 13px;
  border-radius: 2px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-line.short { width: 55%; }

.products-load-error {
  grid-column: 1 / -1;
  padding: 48px 0;
  font-size: 14px;
  color: var(--gray-muted);
  text-align: center;
}

/* ── Legal / Policy / Content pages ── */
.lp-section { padding: 60px 0 100px; }
.lp-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 40px;
}
.lp-body {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--black);
}
.lp-body h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 32px 0 8px;
  letter-spacing: .01em;
}
.lp-body h2:first-child { margin-top: 0; }
.lp-body p { margin-bottom: 14px; }
.lp-body p:last-child { margin-bottom: 0; }
.lp-body a { color: var(--black); }
.lp-placeholder {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: 3px;
  padding: 1px 6px;
  font-style: italic;
  font-size: 13px;
}
.lp-faq { list-style: none; padding: 0; margin: 0; }
.lp-faq-item { border-top: 1px solid var(--gray-border); padding: 24px 0; }
.lp-faq-item:last-child { border-bottom: 1px solid var(--gray-border); }
.lp-faq-q { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.lp-faq-a { font-size: 15px; line-height: 1.7; }
