/* ============================================================
   MONNCO — Bohemian Chic Design System
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --c-bg:        #faf7f2;
  --c-bg-warm:   #f5efe4;
  --c-dark:      #1a0e07;
  --c-dark-2:    #2d1b0e;
  --c-dark-3:    #3d2a18;
  --c-cream:     #f0e8d8;
  --c-cream-2:   #e8d8c0;
  --c-terra:     #c97b4a;
  --c-terra-dk:  #8b4513;
  --c-gold:      #c9a040;
  --c-gold-lt:   #f0d080;
  --c-blush:     #e8c4b8;
  --c-sage:      #87ceab;
  --c-text:      #3d2a18;
  --c-text-2:    #6b4f38;
  --c-text-3:    #9a7860;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-display:'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-pill:999px;

  --shadow-sm:  0 2px 8px rgba(45,27,14,.08);
  --shadow-md:  0 8px 32px rgba(45,27,14,.12);
  --shadow-lg:  0 20px 60px rgba(45,27,14,.18);
  --shadow-xl:  0 40px 80px rgba(45,27,14,.25);

  --ease-out-expo: cubic-bezier(.19,1,.22,1);
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);

  --nav-h: 76px;
  --announce-h: 44px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

body.cart-open { overflow: hidden; }

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

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography Utilities ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-terra);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--c-text-2);
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: all .3s var(--ease-out-expo);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
}
.btn-primary:hover {
  background: var(--c-terra);
  border-color: var(--c-terra);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--c-gold), #daa520);
  color: #fff;
  border-color: transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #daa520, var(--c-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,160,64,.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn-outline:hover {
  background: var(--c-dark);
  color: #fff;
}

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════════════════ */
.announcement-bar {
  position: relative;
  background: var(--c-dark);
  color: var(--c-cream);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .5px;
  padding: 12px 48px;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: max-height .3s ease, opacity .3s ease;
  overflow: hidden;
}

.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-cream);
  font-size: 22px;
  line-height: 1;
  opacity: .6;
  transition: opacity .2s;
}
.announce-close:hover { opacity: 1; }

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 123, 74, 0.12);
  transition: box-shadow .3s ease, background .3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 247, 242, 0.98);
}

.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding: 8px 16px;
  min-height: 48px;
  justify-content: center;
}
.brand-logo:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid var(--c-terra);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.logo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--c-dark);
  transition: color .3s;
  text-transform: uppercase;
}

.logo-amp {
  font-weight: 300;
  color: var(--c-terra);
  letter-spacing: 0;
  font-style: normal;
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-terra);
  font-weight: 500;
  margin-top: 2px;
}

.brand-logo:hover .logo-text { color: var(--c-dark-2); }
.brand-logo:hover .logo-amp  { color: var(--c-terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--c-dark);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  position: relative;
  transition: color .2s, background .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--c-terra);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out-expo);
}

.nav-link:hover { color: var(--c-terra); }
.nav-link:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--c-cream-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s var(--ease-out-expo);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14.5px;
  color: var(--c-text);
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
}
.dropdown-menu a:hover {
  background: var(--c-bg-warm);
  color: var(--c-terra);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--c-dark);
  transition: background .2s, color .2s;
  position: relative;
}
.icon-btn:hover { background: var(--c-bg-warm); color: var(--c-terra); }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--c-terra);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform .3s var(--ease-spring);
}
.cart-badge.visible { transform: scale(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--c-cream-2);
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }

.mob-link {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-dark);
  border-bottom: 1px solid var(--c-cream-2);
  transition: color .2s, padding-left .2s;
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: var(--c-terra); padding-left: 8px; }

/* ════════════════════════════════════════════
   SEARCH OVERLAY
   ════════════════════════════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26,14,7,0.85);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }

.search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
  position: relative;
}

.search-close {
  position: absolute;
  top: -60px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  opacity: .7;
  transition: opacity .2s;
}
.search-close:hover { opacity: 1; }

.search-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2rem;
  padding: 16px 0;
  outline: none;
  transition: border-color .3s;
}
.search-input::placeholder { color: rgba(255,255,255,0.4); }
.search-input:focus { border-bottom-color: var(--c-gold); }

.search-hints {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.search-hints a {
  color: rgba(255,255,255,0.75);
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  transition: all .2s;
}
.search-hints a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,.1);
}

/* ════════════════════════════════════════════
   HERO 3D SLIDER
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h) - var(--announce-h));
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  perspective: 1200px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06) rotateY(3deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  transition:
    opacity .9s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.exit {
  opacity: 0;
  transform: scale(.96) rotateY(-3deg);
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  will-change: transform;
}

.hero-slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 10, 5, 0.88) 0%,
    rgba(26, 14, 7, 0.55) 45%,
    rgba(26, 14, 7, 0.15) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 80px 100px;
  max-width: 680px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .8s .3s var(--ease-out-expo), opacity .8s .3s ease;
}

.hero-slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffd700;
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.slide-title em {
  font-style: italic;
  color: #ffd700;
}

.slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.slide-price {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: .5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.slide-price strong { color: #ffd700; font-size: 18px; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s, border-color .3s;
}
.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 32px; }
.slider-next { right: 32px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background .3s, transform .3s, width .4s var(--ease-spring);
  border: none;
}
.dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  bottom: 40px;
  left: 80px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  z-index: 10;
}
#current-slide-num {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-right: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 10;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: .8; transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════
   MARQUEE STRIP
   ════════════════════════════════════════════ */
.marquee-strip {
  background: var(--c-terra);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

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

/* ════════════════════════════════════════════
   LAUNCHING SOON BANNER
   ════════════════════════════════════════════ */
.launching-soon {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(240, 213, 160, 0.15);
  border-bottom: 1px solid rgba(240, 213, 160, 0.15);
}

.launching-soon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 215, 0, 0.04) 50%,
    transparent 55%
  );
  transform: rotate(-15deg);
  animation: shimmer-flow 10s infinite linear;
  pointer-events: none;
}

.launching-soon-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.launching-soon-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 18px;
  display: inline-block;
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.launching-soon-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: #fcf9f5;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 1px;
}

.launching-soon-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #ffd700;
}

.launching-soon-desc {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #d8c3b3;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-style: italic;
}

.launching-soon-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s, color 0.3s;
}

.launching-soon-cta:hover {
  transform: scale(1.05);
}

@keyframes shimmer-flow {
  0% {
    transform: translate(-25%, -25%) rotate(-15deg);
  }
  100% {
    transform: translate(25%, 25%) rotate(-15deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.8;
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.2);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  }
}

/* ════════════════════════════════════════════
   CATEGORY PILLS
   ════════════════════════════════════════════ */
.category-pills {
  padding: 48px 0 0;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-cream-2);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-text-2);
  background: #fff;
  transition: all .25s;
}
.pill:hover, .pill.active {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════
   PRODUCT GRID
   ════════════════════════════════════════════ */
.products {
  padding: 80px 0 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out-expo), box-shadow .4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card.featured {
  grid-row: span 1;
}

/* Product Image */
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s var(--ease-out-expo);
  overflow: hidden;
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease-out-expo);
}

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

/* Stylized dress/product silhouettes for demo */
.product-model-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dress-silhouette {
  width: 65%;
  height: 88%;
  background: rgba(255,255,255,0.18);
  clip-path: polygon(35% 0%, 65% 0%, 80% 8%, 85% 100%, 15% 100%, 20% 8%);
  border-radius: 0 0 40% 40%;
}

.dress-silhouette.s1 { clip-path: polygon(30% 0%, 70% 0%, 88% 12%, 95% 100%, 5% 100%, 12% 12%); }
.dress-silhouette.s2 { clip-path: polygon(32% 0%, 68% 0%, 82% 10%, 88% 100%, 12% 100%, 18% 10%); }
.dress-silhouette.s3 { clip-path: polygon(28% 0%, 72% 0%, 90% 14%, 92% 100%, 8% 100%, 10% 14%); }
.dress-silhouette.s4 { width: 60%; height: 70%; clip-path: polygon(30% 0%, 70% 0%, 85% 10%, 90% 100%, 10% 100%, 15% 10%); }
.dress-silhouette.s5 { width: 60%; height: 65%; clip-path: polygon(30% 0%, 70% 0%, 85% 10%, 88% 100%, 12% 100%, 15% 10%); }

.bag-silhouette {
  width: 55%;
  height: 52%;
  bottom: 20%;
  background: rgba(255,255,255,0.22);
  clip-path: polygon(10% 30%, 90% 30%, 100% 100%, 0% 100%);
  border-radius: 4px 4px 16px 16px;
}

.bracelet-silhouette {
  width: 45%;
  height: 45%;
  bottom: 25%;
  border-radius: 50%;
  border: 12px solid rgba(255,255,255,0.35);
  background: transparent;
}

.wicker-silhouette {
  width: 60%;
  height: 55%;
  bottom: 15%;
  background: rgba(255,255,255,0.18);
  clip-path: ellipse(50% 60% at 50% 50%);
  border-radius: 50%;
}

.trinket-silhouette {
  width: 35%;
  height: 50%;
  bottom: 18%;
  background: rgba(255,255,255,0.2);
  clip-path: polygon(50% 0%, 52% 40%, 100% 100%, 0% 100%, 48% 40%);
}

.crossbody-silhouette {
  width: 50%;
  height: 44%;
  bottom: 20%;
  background: rgba(255,255,255,0.2);
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
  border-radius: 6px;
}

/* Product Badge */
.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 5;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.badge-new  { background: var(--c-dark); color: #fff; }
.badge-best { background: var(--c-terra); color: #fff; }
.badge-sale { background: #e53e3e; color: #fff; }

/* Product Overlay */
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(26,14,7,0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s var(--ease-out-expo);
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.quick-add {
  flex: 1;
  background: #fff;
  color: var(--c-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s, transform .2s;
}
.quick-add:hover {
  background: var(--c-terra);
  color: #fff;
  transform: scale(1.03);
}

.wishlist-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.wishlist-icon:hover { background: #fff; color: var(--c-terra); }

/* Product Info */
.product-info {
  padding: 20px 22px 24px;
}

.product-category {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-terra);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: #d4a017; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--c-text-3); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-dark);
}

.product-price-original {
  font-size: 1rem;
  color: var(--c-text-3);
  text-decoration: line-through;
}

.color-swatches {
  display: flex;
  gap: 6px;
}
.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid rgba(0,0,0,.1);
  transition: outline-color .2s, transform .2s;
}
.swatch:hover {
  outline-color: var(--c-terra);
  transform: scale(1.2);
}

/* Load More */
.load-more-wrap {
  text-align: center;
  margin-top: 64px;
}

/* ════════════════════════════════════════════
   LOOKBOOK BANNER
   ════════════════════════════════════════════ */
.lookbook {
  background: var(--c-dark);
  overflow: hidden;
  min-height: 600px;
}

.lookbook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.lookbook-text {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.lookbook-text::after {
  content: '"';
  position: absolute;
  top: 40px;
  left: 60px;
  font-family: var(--font-serif);
  font-size: 200px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.lookbook-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.lookbook-title em { color: var(--c-gold-lt); font-style: italic; }

.lookbook-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 40px;
}

/* Lookbook Gallery */
.lookbook-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.lb-img {
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  overflow: hidden;
}
.lb-img:hover { transform: scale(1.03); }

.lb-img-1 { grid-column: 1; grid-row: 1 / 3; }
.lb-img-2 { grid-column: 2; grid-row: 1; }
.lb-img-3 { grid-column: 2; grid-row: 2; }

/* ════════════════════════════════════════════
   FEATURES / USPs
   ════════════════════════════════════════════ */
.features {
  padding: 80px 0;
  background: var(--c-bg-warm);
}

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

.feature-item {
  text-align: center;
  padding: 32px 20px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terra);
}

.feature-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 13.5px;
  color: var(--c-text-2);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--c-bg);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--c-cream-2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--c-cream-2);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #d4a017;
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-dark);
}
.reviewer-loc {
  font-size: 12.5px;
  color: var(--c-text-3);
  margin-top: 2px;
}

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--c-bg-warm);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-col { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--c-terra), var(--c-gold), var(--c-terra));
  z-index: -1;
}

.about-img-main {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform 6s ease;
}
.about-img-frame:hover .about-img-main { transform: scale(1.04); }

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.15;
  margin-bottom: 28px;
}
.about-title em { color: var(--c-terra); font-style: italic; }

.about-desc {
  font-size: 15px;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid var(--c-cream-2);
  border-bottom: 1px solid var(--c-cream-2);
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--c-terra);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-3);
}

/* ════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-3) 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,123,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(201,160,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner { position: relative; z-index: 1; }

.newsletter-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--c-gold);
  opacity: .7;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.newsletter-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: #e8dcd0;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 16px;
  gap: 0;
  border-radius: var(--r-pill);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-btn { flex-shrink: 0; }

.newsletter-fine {
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: #0f0804;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 8px;
  display: block;
}

.logo-amp-footer {
  font-weight: 300;
  color: var(--c-terra);
  letter-spacing: 0;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-terra);
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13.5px;
  color: rgba(240,232,216,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,232,216,0.6);
  transition: background .3s, color .3s, border-color .3s;
}
.social-link:hover {
  background: var(--c-terra);
  border-color: var(--c-terra);
  color: #fff;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 15px;
  color: rgba(240,232,216,0.65);
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--c-terra); padding-left: 4px; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(240,232,216,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(240,232,216,0.35);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--c-terra); }

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-icon {
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(240,232,216,0.4);
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════
   CART SIDEBAR
   ════════════════════════════════════════════ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 100vw;
  background: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out-expo);
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--c-cream-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.cart-close {
  font-size: 28px;
  color: var(--c-text-2);
  transition: color .2s;
}
.cart-close:hover { color: var(--c-terra); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--c-text-2);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty p { font-size: 15px; margin-bottom: 24px; }

/* Cart Line Items */
.cart-line {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-cream-2);
  align-items: center;
}

.cart-line-img {
  width: 72px;
  height: 90px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.cart-line-info { flex: 1; }
.cart-line-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-line-price { font-family: var(--font-serif); font-size: 1rem; color: var(--c-terra); }

.cart-line-remove {
  font-size: 18px;
  color: var(--c-text-3);
  transition: color .2s;
  padding: 4px;
}
.cart-line-remove:hover { color: #e53e3e; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--c-cream-2);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-note {
  font-size: 12px;
  color: var(--c-text-3);
  margin-bottom: 20px;
}

.cart-checkout {
  width: 100%;
  font-size: 14px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,14,7,0.6);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  backdrop-filter: blur(4px);
}
.cart-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease-spring);
  z-index: 5000;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-terra);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s var(--ease-spring);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--c-dark);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   SCROLL-DRIVEN ANIMATIONS
   ════════════════════════════════════════════ */
@supports (animation-timeline: view()) {
  .product-card {
    animation: cardReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  @keyframes cardReveal {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .review-card {
    animation: cardReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }

  .feature-item {
    animation: fadeSlide linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }

  @keyframes fadeSlide {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .about-img-frame {
    animation: slideInLeft linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }

  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .about-text-col {
    animation: slideInRight linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }

  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: view()) {
  .product-card, .review-card, .feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s var(--ease-out-expo);
  }
  .product-card.in-view, .review-card.in-view, .feature-item.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-slider { grid-template-columns: 1fr; }

  .lookbook-inner { grid-template-columns: 1fr; }
  .lookbook-gallery {
    height: 350px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .lb-img-1, .lb-img-2, .lb-img-3 {
    grid-column: auto;
    grid-row: auto;
  }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { max-width: 480px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; --announce-h: 36px; }

  .announcement-bar { font-size: 11px; padding: 8px 40px; min-height: var(--announce-h); }

  .hero {
    height: calc(100svh - var(--nav-h) - var(--announce-h));
    min-height: 500px;
  }

  .slide-content { padding: 40px 24px 80px; }
  .slide-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .slide-actions { gap: 10px; }
  .slide-actions .btn { padding: 14px 24px; font-size: 12px; }
  .slider-btn { width: 44px; height: 44px; }
  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }
  .slide-counter { left: 24px; bottom: 24px; }
  .slider-dots { bottom: 28px; right: 24px; }
  .scroll-indicator { display: none; }

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

  .features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .lookbook-text { padding: 48px 24px; }
  .lookbook-gallery { height: 250px; }

  .about-stats { gap: 20px; justify-content: center; }

  .newsletter-form { flex-direction: column; border-radius: var(--r-lg); }
  .newsletter-input { padding: 16px 20px; }
  .newsletter-btn { border-radius: var(--r-pill); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }

  .cart-sidebar { width: 100%; }

  .about-img-frame { aspect-ratio: 4/5; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 14px 14px 16px; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .lookbook-gallery { grid-template-columns: 1fr; height: 400px; }
  .about-stats { flex-wrap: wrap; gap: 28px; }
  .pill-row { gap: 8px; }
  .pill { padding: 8px 18px; font-size: 11px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .scroll-indicator { display: none; }
  .marquee-track { animation: none; }
}

/* Screen Reader Only class for SEO Heading Compliance */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
