/* ============================================
   SIMPLE LIFE SEATTLE — PREMIUM STYLES
   Quiet Luxury / Minimal Lifestyle Brand
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Neutrals — warmed to harmonize with logo green */
  --ivory:       #F7F5EF;
  --cream:       #EEE9DF;
  --sand:        #DDD6C8;
  --taupe:       #B8AD9C;
  --warm-gray:   #8E8880;
  --stone:       #5E5A52;
  --charcoal:    #272420;

  /* Greens — teal-green palette */
  --sage:        #8BBDB5;
  --sage-light:  #AECFCB;
  --olive:       #2E7D72;
  --olive-deep:  #1D5C55;
  --olive-muted: #4A9E96;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', Arial, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1280px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

button { cursor: pointer; font-family: var(--font-sans); }

ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(29, 92, 85, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 1px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 52px auto 0;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.nav-logo .car-carousel-image {
  height: 120px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

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

.nav-links li a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.nav-links li a:hover { color: #fff; }
.nav-links li a.active { color: #fff; }

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

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29, 92, 85, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  min-width: 160px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, top 0.2s ease;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 9px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-menu li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Mobile sub-links */
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 20px;
  margin-top: -6px;
}

.mobile-nav-sub a {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.6) !important;
  letter-spacing: 0.1em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search icon */
.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
  display: flex; align-items: center;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
.nav-search-btn:hover { color: #fff; }
.nav-search-btn svg { width: 18px; height: 18px; }

/* Cart icon */
.cart-icon-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  padding: 4px;
  position: relative;
  transition: color 0.2s ease;
  display: flex; align-items: center;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
.cart-icon-btn:hover { color: #fff; }
.cart-icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  width: 16px; height: 16px;
  font-size: 0.6rem;
  font-weight: 500;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hide dynamically injected cart icon — all pages have .cart-icon-btn already */
#cart-icon { display: none !important; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(29, 92, 85, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 40px;
  gap: 20px;
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.mobile-nav a:hover { color: #fff; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-olive {
  background: var(--olive);
  color: var(--ivory);
  border-color: var(--olive);
}
.btn-olive:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.btn-light {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}
.btn-light:hover {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}

/* Legacy btn classes for cart.js compatibility */
.btn.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn.btn-primary:hover { background: var(--olive-deep); border-color: var(--olive-deep); }

.btn.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn.btn-secondary:hover { background: var(--charcoal); color: var(--ivory); }

.btn.btn-disabled,
.btn[disabled] {
  background: var(--sand);
  color: var(--warm-gray);
  border-color: var(--sand);
  cursor: not-allowed;
  pointer-events: none;
}

/* Restock notification */
.restock-notify {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.restock-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b6450;
  font-weight: 600;
}
.restock-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.restock-email {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  font-size: 0.78rem;
  font-family: inherit;
  color: var(--charcoal);
  border-radius: 2px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.restock-email:focus {
  border-color: var(--charcoal);
}
.restock-actions {
  display: flex;
  gap: 6px;
}
.btn-restock-alert {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  background: var(--charcoal);
  color: var(--ivory);
  border: 1px solid var(--charcoal);
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.btn-restock-alert:hover {
  background: var(--ivory);
  color: var(--charcoal);
}
.btn-restock-request {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.btn-restock-request:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.restock-success {
  font-size: 0.78rem;
  color: #5a7a5a;
  line-height: 1.4;
  margin: 0;
}

.btn-large { padding: 16px 40px; font-size: 0.75rem; }
.btn-small { padding: 10px 20px; font-size: 0.65rem; }
.btn-text { background: none; border: none; text-decoration: underline; font-size: 0.8rem; cursor: pointer; color: var(--stone); }
.btn-text:hover { color: var(--olive); }

/* ============================================
   HERO — CINEMATIC FULL-SCREEN
   ============================================ */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  margin-top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
  animation: none;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Layered overlays for depth */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,  rgba(10, 8, 6, 0.40) 0%, rgba(10, 8, 6, 0.08) 50%, rgba(10, 8, 6, 0.30) 100%),
    linear-gradient(to top,    rgba(10, 8, 6, 0.65) 0%, rgba(10, 8, 6, 0.12) 45%, rgba(10, 8, 6, 0.05) 100%);
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5, 4, 3, 0.45) 100%);
}

/* Decorative vertical rules */
.hero-rule-left,
.hero-rule-right {
  position: absolute;
  top: 10%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.18) 70%, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-rule-left  { left: clamp(28px, 5vw, 80px); }
.hero-rule-right { right: clamp(28px, 5vw, 80px); }

/* Main content */
.hero-cinematic-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 0 clamp(24px, 6vw, 120px);
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Eyebrow with flanking lines */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.2s forwards;
  justify-content: flex-start;
}

.hero-eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* Headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
  line-height: 1;
}

.hero-headline-top,
.hero-headline-mid,
.hero-headline-bot {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.4);
}

.hero-headline-top {
  font-size: clamp(3.2rem, 7vw, 7rem);
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.4s forwards;
}

.hero-headline-mid {
  font-size: clamp(4rem, 9vw, 9.5rem);
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.55s forwards;
  margin-top: -0.06em;
}

.hero-headline-mid em {
  font-style: italic;
  color: var(--sage-light);
  font-weight: 300;
}

.hero-headline-bot {
  font-size: clamp(3.2rem, 7vw, 7rem);
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.7s forwards;
  margin-top: -0.06em;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.08em;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.85s forwards;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 1s forwards;
}

.hero-btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 44px;
  background: var(--ivory);
  color: var(--charcoal);
  border: 1px solid var(--ivory);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: transparent;
  color: var(--ivory);
  transform: translateY(-1px);
}

.hero-btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 44px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.45);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.hero-btn-ghost:hover {
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-1px);
}

/* Bottom info bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 40px;
  background: rgba(10, 8, 6, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.2s forwards;
}

.hero-bottom-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 40px;
  flex: 1;
  max-width: 200px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-bottom-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  right: clamp(28px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.3s forwards;
}

.hero-dot-btn {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, transform 0.35s ease, height 0.35s ease;
}

.hero-dot-btn.active {
  background: rgba(255,255,255,0.9);
  height: 24px;
  border-radius: 2px;
  transform: none;
}



/* Entry animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-rule-left, .hero-rule-right { display: none; }
  .hero-scroll-cue { display: none; }
  .hero-bottom-stat { padding: 0 24px; }
}

@media (max-width: 768px) {
  .hero-cinematic {
    height: calc(100svh - 72px);
    min-height: 600px;
  }
  .hero-dots { display: none; }
  .hero-bottom-bar { padding: 16px 20px; }
  .hero-bottom-stat { padding: 0 12px; }
  .hero-stat-num { font-size: 0.95rem; }
  .hero-stat-label { font-size: 0.48rem; letter-spacing: 0.14em; }
  .hero-cta-row { gap: 12px; }
  .hero-btn-primary, .hero-btn-ghost { padding: 14px 28px; font-size: 0.62rem; }
}

@media (max-width: 480px) {
  .hero-cinematic { min-height: 560px; }
  .hero-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 14px 16px;
  }
  .hero-bottom-divider { display: none; }
  .hero-bottom-stat {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-bottom-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-bottom-stat:last-child,
  .hero-bottom-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ============================================
   SECTION: COMING SOON BANNER
   ============================================ */
.coming-soon-banner {
  background: var(--olive-deep);
  padding: 10px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.coming-soon-banner p {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  margin: 0;
}

/* ============================================
   SECTION: BRAND STRIP
   ============================================ */
.brand-strip {
  background: var(--olive-deep);
  padding: 20px 40px;
  text-align: center;
}

.brand-strip p {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 400;
  opacity: 0.9;
}

/* ============================================
   SECTION: FEATURED COLLECTIONS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--olive);
  opacity: 1;
}

.section-sub {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Collections grid */
.collections-section {
  padding: 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 580px 360px;
  gap: 16px;
}

/* 5-category grid: 3 cards top row (large + 2 stacked), 2 wide cards bottom row */
.collections-grid-5 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px 320px;
}

.collections-grid-5 .collection-card-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.collections-grid-5 .collection-card-wide {
  grid-row: 3;
}

.collections-grid-5 .collection-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.collections-grid-5 .collection-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.collections-grid-5 .collection-card-wide:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 3;
}

.collections-grid-5 .collection-card-wide:nth-child(5) {
  grid-column: 3;
  grid-row: 1 / 4;
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-card:hover img { transform: scale(1.04); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,18,15,0.5) 0%,
    rgba(20,18,15,0.1) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.collection-card-content {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  z-index: 2;
}

.collection-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.collection-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 16px;
}

.collection-card-link {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  font-family: var(--font-sans);
  transition: color 0.2s, border-color 0.2s;
}
.collection-card:hover .collection-card-link {
  color: white;
  border-color: white;
}

.collection-card-main { grid-row: span 2; }

/* ============================================
   SECTION: COLLECTIONS REDESIGN
   ============================================ */

.collections-redesign {
  padding: 0;
  background: var(--ivory);
}

/* --- Header row --- */
.coll-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 80px 60px 48px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 40px;
}

.coll-header-inner {
  max-width: 560px;
}

.coll-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.coll-headline em {
  font-style: italic;
  color: var(--olive);
}

.coll-sub {
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 1.8;
  max-width: 420px;
}

.coll-view-all {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  border-bottom: 1px solid var(--olive);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: 6px;
}

.coll-view-all:hover {
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}

/* --- Marquee strip --- */
.coll-marquee {
  overflow: hidden;
  background: var(--olive-deep);
  padding: 14px 0;
  margin-bottom: 3px;
}

.coll-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: collMarquee 28s linear infinite;
  width: max-content;
}

.coll-marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.coll-marquee-dot {
  font-size: 0.3rem !important;
  color: var(--sage-light) !important;
  letter-spacing: 0 !important;
}

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

/* --- Mosaic grid --- */
.coll-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 380px 300px 220px;
  gap: 3px;
}

/* Tile base */
.coll-tile {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: var(--sand);
}

.coll-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coll-tile:hover img {
  transform: scale(1.06);
}

/* Gradient overlay */
.coll-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.0) 30%,
    rgba(10,8,6,0.55) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.coll-tile:hover .coll-tile-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.08) 20%,
    rgba(10,8,6,0.65) 100%
  );
}

/* Tile body / content */
.coll-tile-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  pointer-events: none;
}

.coll-tile-body--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

/* Number badge */
.coll-tile-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  line-height: 1;
  align-self: flex-start;
  transition: color 0.3s;
}

.coll-tile:hover .coll-tile-num {
  color: rgba(255,255,255,0.8);
}

/* Text block */
.coll-tile-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.coll-tile-cat {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  line-height: 1;
}

.coll-tile-name {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* CTA arrow link */
.coll-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s;
}

.coll-tile-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.coll-tile:hover .coll-tile-cta {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255,255,255,0.95);
}

.coll-tile:hover .coll-tile-cta svg {
  transform: translateX(4px);
}

/* --- Tile size variants --- */

/* Hero: col 1, spans rows 1-2 */
.coll-tile--hero {
  grid-column: 1;
  grid-row: 1 / 3;
}

.coll-tile--hero .coll-tile-name {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

/* Tall: col 2, spans rows 1-2 */
.coll-tile--tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.coll-tile--tall .coll-tile-name {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

/* Small tiles: col 3, row 1 and row 2 */
.coll-tile--small {
  grid-column: 3;
}

.coll-tile--small .coll-tile-name {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.coll-tile--small .coll-tile-body {
  padding: 20px 24px;
}

/* Wide: full width, row 3 */
.coll-tile--wide {
  grid-column: 1 / 4;
  grid-row: 3;
}

.coll-tile--wide .coll-tile-name {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.coll-tile--wide .coll-tile-body--row .coll-tile-num {
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .coll-header { padding: 64px 28px 40px; }
  .coll-mosaic {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 340px 280px 200px;
  }
  .coll-tile--hero { grid-column: 1; grid-row: 1 / 3; }
  .coll-tile--tall { grid-column: 2; grid-row: 1; }
  .coll-tile--small:nth-child(3) { grid-column: 2; grid-row: 2; }
  .coll-tile--small:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .coll-tile--wide { display: none; }
}

@media (max-width: 768px) {
  .coll-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 20px 32px;
    gap: 16px;
  }
  .coll-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 240px 240px;
  }
  .coll-tile--hero { grid-column: 1 / 3; grid-row: 1; }
  .coll-tile--tall { grid-column: 1; grid-row: 2; }
  .coll-tile--small:nth-child(3) { grid-column: 2; grid-row: 2; }
  .coll-tile--small:nth-child(4) { grid-column: 1; grid-row: 3; }
  .coll-tile--wide { grid-column: 2; grid-row: 3; height: auto; }
  .coll-tile--wide .coll-tile-body--row { flex-direction: column; justify-content: space-between; }
}

@media (max-width: 480px) {
  .coll-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 240px 240px 240px 240px;
  }
  .coll-tile--hero,
  .coll-tile--tall,
  .coll-tile--small:nth-child(3),
  .coll-tile--small:nth-child(4),
  .coll-tile--wide {
    grid-column: 1;
    grid-row: auto;
    height: auto;
  }
  .coll-tile-cta { opacity: 1; transform: none; }
}

/* ============================================
   SECTION: FEATURED PRODUCTS
   ============================================ */
.products-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.product-card {
  background: transparent;
  transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-4px); }

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
  cursor: pointer;
  margin-bottom: 20px;
}

.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-tag-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--olive);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-family: var(--font-sans);
  font-weight: 400;
}

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

.product-info .product-type {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 6px;
  font-weight: 500;
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-price {
  font-size: 0.9rem;
  color: var(--stone);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.product-price .price-current { color: var(--charcoal); font-weight: 400; }
.product-price .price-compare {
  color: var(--warm-gray);
  text-decoration: line-through;
  font-size: 0.8rem;
  margin-left: 8px;
}
.product-price .price-discount {
  background: var(--olive);
  color: white;
  padding: 2px 8px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  margin-left: 8px;
  display: inline-block;
}

.product-info .btn {
  width: 100%;
  padding: 12px 20px;
}

/* ============================================
   JUST IN CAROUSEL
   ============================================ */
.just-in-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.just-in-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.just-in-track {
  display: flex;
  will-change: transform;
  /* override any inline grid styles */
  grid-template-columns: unset !important;
  gap: unset !important;
}

.just-in-slide {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding: 0 16px;
  box-sizing: border-box;
}

.just-in-prev,
.just-in-next {
  background: none;
  border: 1px solid var(--sand);
  color: var(--stone);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 2;
}

.just-in-prev:hover,
.just-in-next:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: rgba(110,122,90,0.06);
}

.just-in-prev { margin-right: 16px; }
.just-in-next { margin-left: 16px; }

.just-in-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.just-in-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.just-in-dot.active {
  background: var(--olive);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .just-in-slide { flex: 0 0 50%; }
  .just-in-prev { margin-right: 10px; }
  .just-in-next { margin-left: 10px; }
}

@media (max-width: 480px) {
  .just-in-slide { flex: 0 0 100%; }
  .just-in-prev, .just-in-next { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ============================================
   SECTION: EDITORIAL STORY
   ============================================ */
.editorial-section {
  padding: var(--section-pad) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.editorial-image {
  position: relative;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.editorial-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* true 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.editorial-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.editorial-text { padding: 20px 0; }

.editorial-text .section-label { text-align: left; display: block; margin-bottom: 20px; }

.editorial-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.editorial-text h2 em {
  font-style: italic;
  color: var(--olive-deep);
  font-weight: 400;
}

.editorial-text p {
  font-size: 0.95rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.editorial-text .btn { margin-top: 16px; }

.editorial-address {
  font-size: 0.82rem !important;
  letter-spacing: 0.04em;
  color: var(--stone) !important;
  margin-top: 18px !important;
  margin-bottom: 4px !important;
}

.editorial-address a {
  color: var(--olive-deep);
  text-decoration: none;
  font-weight: 500;
}

.editorial-address a:hover {
  text-decoration: underline;
}

.editorial-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem !important;
  font-style: italic;
  color: var(--olive-deep) !important;
  letter-spacing: 0.06em;
  margin-bottom: 20px !important;
  margin-top: 8px !important;
}

/* ============================================
   SECTION: FABRIC STORY (Full-width sage bg)
   ============================================ */
.fabric-section {
  padding: var(--section-pad) 0;
  background: #C8DEDD;
}

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

.fabric-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--olive-deep);
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fabric-text p {
  font-size: 0.9rem;
  color: var(--olive);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 16px;
}

.fabric-emphasis {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: -8px;
  margin-bottom: 20px;
}

.fabric-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fabric-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--olive-deep);
  font-weight: 400;
}

.fabric-list-item::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--olive);
  flex-shrink: 0;
}

/* Mosaic photo grid */
.fabric-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 10px;
  align-self: stretch;
}

.fabric-mosaic-main {
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.fabric-mosaic-main img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fabric-mosaic-main:hover img {
  transform: scale(1.03);
}

.fabric-mosaic-grid {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.fabric-mosaic-cell {
  overflow: hidden;
  border-radius: 10px;
}

.fabric-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fabric-mosaic-cell:hover img {
  transform: scale(1.05);
}

.fabric-mosaic-wide {
  grid-column: 1 / 3;
}

/* ============================================
   SECTION: NEW ARRIVALS BANNER
   ============================================ */
.new-arrivals-banner {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}

.banner-text {
  max-width: 860px;
  padding: 0;
}

.banner-text .section-label { color: var(--sage-light); display: block; margin-bottom: 20px; }

.banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.banner-text h2 em {
  font-style: italic;
  color: var(--sage);
}

.banner-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 28px;
}

.banner-image {
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .banner-image img { height: 360px; }
  .banner-text { order: -1; }
}

/* ============================================
   SECTION: BANNER VIDEO CARDS (index.html social section)
   ============================================ */

.banner-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
  align-items: start;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.banner-video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 9/16;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.banner-video-card .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.banner-video-card iframe {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  .banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-videos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .banner-videos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .banner-videos {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
  }
}

/* ============================================
   SECTION: NEWSLETTER STRIP
   ============================================ */
.newsletter-section {
  padding: 80px 0;
  text-align: center;
  background: var(--charcoal);
}

.newsletter-section .section-label { color: var(--sage-light); }

.newsletter-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.newsletter-section p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--ivory);
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.3); }

.newsletter-btn {
  padding: 14px 24px;
  background: var(--olive);
  color: var(--ivory);
  border: 1px solid var(--olive);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-btn:hover { background: var(--olive-deep); border-color: var(--olive-deep); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--sand);
  padding: 80px 0 40px;
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-brand-tagline {
  font-size: 0.72rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  opacity: 0.75;
  margin-top: 10px !important;
  margin-bottom: 8px !important;
}

.footer-address {
  font-size: 0.82rem !important;
  color: var(--warm-gray) !important;
  line-height: 1.7;
  margin-top: 6px !important;
}

.footer-address a {
  color: var(--warm-gray);
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--ivory);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 1.75;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--olive-deep); font-weight: 400; }

.footer-bottom {
  border-top: 1px solid var(--sand);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--taupe);
  font-weight: 300;
}

/* Footer newsletter column */
.footer-newsletter-desc {
  font-size: 0.8rem !important;
  color: var(--warm-gray) !important;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px !important;
  max-width: 200px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 200px;
}

.footer-newsletter-input {
  padding: 10px 14px;
  border: 1px solid var(--sand);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-input::placeholder { color: var(--taupe); }
.footer-newsletter-input:focus { border-color: var(--olive); }

.footer-newsletter-btn {
  padding: 10px 14px;
  background: var(--olive);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-newsletter-btn:hover { background: var(--olive-deep); }

.footer-free-shipping {
  margin-top: 16px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-deep) !important;
}

/* ============================================
   RETURN POLICY PAGE
   ============================================ */
.policy-page-header {
  padding: 140px 0 60px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--sand);
}

.policy-page-header .section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}

.policy-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.policy-page-header p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.policy-content-section {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.policy-content-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.policy-intro {
  background: var(--cream);
  border-left: 3px solid var(--olive);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 48px;
}

.policy-intro p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.75;
}

.policy-block {
  scroll-margin-top: 140px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--sand);
}

.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.policy-block p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-block p:last-child { margin-bottom: 0; }

.policy-block strong {
  font-weight: 500;
  color: var(--charcoal);
}

.policy-list {
  margin: 20px 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-list li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  padding-left: 8px;
}

.policy-list--bullets {
  list-style: disc;
}

.policy-list--bullets li::marker {
  color: var(--olive);
}

.policy-note {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 20px;
}

.policy-note p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.policy-address {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 16px;
  display: inline-block;
}

.policy-address p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 0;
}

.policy-block--questions p a {
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-light);
  transition: color 0.2s, border-color 0.2s;
}

.policy-block--questions p a:hover {
  color: var(--olive-deep);
  border-color: var(--olive);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--sand);
}

.breadcrumb {
  font-size: 0.72rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 300;
}

.breadcrumb a {
  color: var(--warm-gray);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--olive); }
.breadcrumb span { color: var(--stone); }

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.page-header p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 12px;
  font-weight: 300;
}

.shop-section {
  background: var(--ivory);
}

.shop-main {
  min-width: 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}

/* Filters */
.filters-sidebar {
  position: sticky;
  top: 90px;
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand);
}

.filters-header h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sand);
}

.filter-group:last-child { border-bottom: none; }

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 1px solid transparent;
  color: var(--stone);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  padding: 7px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.filter-option-btn:hover {
  color: var(--olive);
  background: rgba(139,189,181,0.06);
}

.filter-option-btn.active {
  background: var(--olive-deep);
  color: white;
  border-color: var(--olive-deep);
  font-weight: 400;
}

.filter-option-btn .filter-count {
  font-size: 0.65rem;
  color: var(--taupe);
  font-weight: 300;
}

.filter-option-btn.active .filter-count {
  color: rgba(255,255,255,0.7);
}

.filter-group h4 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-weight: 500;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--stone);
  font-weight: 300;
}

.checkbox-label input[type="checkbox"] { accent-color: var(--olive); width: 14px; height: 14px; }

.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-input {
  width: 80px;
  padding: 8px 10px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--charcoal);
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.price-input:focus { border-color: var(--olive); }
.price-inputs span { color: var(--taupe); font-size: 0.8rem; }

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

#product-count {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 300;
}

.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 300;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

/* Product grid (shop) */
#product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Loading */
.loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  font-weight: 300;
}

.loading::after {
  content: '';
  display: block;
  width: 30px; height: 30px;
  border: 2px solid var(--sand);
  border-top-color: var(--olive);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 20px auto 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

.no-products, .error {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--warm-gray);
  font-size: 0.9rem;
}

/* Pagination */
#pagination { margin-top: 60px; }

.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-btn {
  padding: 10px 16px;
  border: 1px solid var(--sand);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.pagination-btn:hover { border-color: var(--olive); color: var(--olive); }
.pagination-btn.active { background: var(--olive); border-color: var(--olive); color: white; }
.pagination-ellipsis { color: var(--taupe); padding: 0 4px; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-section {
  padding: 120px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-images-wrap { position: sticky; top: 90px; }

#main-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 12px;
}

.thumbnail-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.thumbnail-gallery img {
  width: 72px; height: 88px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active { border-color: var(--olive); }

.product-detail-info { padding-top: 20px; }

.product-breadcrumb {
  font-size: 0.7rem;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-breadcrumb a { color: var(--warm-gray); }
.product-breadcrumb a:hover { color: var(--olive); }

.product-detail-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-detail-info .product-price {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 20px;
}

.product-inventory { margin-bottom: 24px; }

.inventory-status {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-sans);
}

.inventory-status.in-stock {
  background: rgba(110,122,90,0.1);
  color: var(--olive);
}

.inventory-status.out-of-stock {
  background: rgba(155,100,80,0.1);
  color: #9b6450;
}

.product-divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 28px 0;
}

.product-detail-info .description {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Variant selectors */
.variant-selector { margin-bottom: 24px; }

.variant-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 12px;
}

.variant-buttons { display: flex; flex-wrap: wrap; gap: 8px; }

.variant-button {
  padding: 10px 20px;
  border: 1px solid var(--sand);
  background: white;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 52px;
}

.variant-button:hover:not(:disabled) { border-color: var(--olive); }
.variant-button.selected { border-color: var(--charcoal); background: var(--charcoal); color: white; }
.variant-button:disabled, .variant-button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Add to cart button (product page) */
.add-to-cart-button {
  width: 100%;
  padding: 16px 32px;
  background: var(--charcoal);
  color: var(--ivory);
  border: 1px solid var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin-top: 8px;
}

.add-to-cart-button:hover:not(:disabled) {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.add-to-cart-button:disabled {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--warm-gray);
  cursor: not-allowed;
}

.product-meta {
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 2;
}

.product-meta strong {
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-section {
  padding: 120px 0 80px;
}

.search-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.search-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.search-bar {
  display: flex;
  border: 1px solid var(--sand);
  overflow: hidden;
}

#search-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: white;
  font-weight: 300;
  outline: none;
}

#search-input::placeholder { color: var(--taupe); }

.search-submit {
  padding: 14px 24px;
  background: var(--charcoal);
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center;
}

.search-submit:hover { background: var(--olive-deep); }
.search-submit svg { width: 18px; height: 18px; }

#search-info {
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-bottom: 40px;
  font-weight: 300;
}

#search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  color: var(--warm-gray);
}

.empty-state svg { width: 40px; height: 40px; margin: 0 auto 20px; stroke: var(--taupe); }
.empty-state p { font-size: 0.9rem; margin-bottom: 8px; }
.empty-state a { margin-top: 24px; display: inline-block; }

/* ============================================
   CART DRAWER
   ============================================ */
#cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

#cart-drawer.active {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 41, 38, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 1000;
  pointer-events: none;
}

#cart-drawer.active .cart-drawer-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-content {
  position: fixed;
  top: 0;
  right: -440px;
  width: 440px;
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  background: var(--ivory);
  box-shadow: -4px 0 40px rgba(0,0,0,0.08);
  transition: right 0.35s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  overflow: hidden;
}

#cart-drawer.active .cart-drawer-content { right: 0; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--sand);
}

.cart-drawer-header h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--warm-gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.close-cart:hover { color: var(--charcoal); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  gap: 20px;
}

.cart-empty p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 300;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 32px;
  display: none;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
  position: relative;
}

.cart-item img {
  width: 80px; height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sand);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.25;
}

.cart-item-details .variant-title {
  font-size: 0.75rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}

.cart-item-details .item-price {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 400;
  margin: 0;
}

.cart-item-status {
  font-size: 0.7rem;
  font-weight: 500;
  margin: 4px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-item-status.out-of-stock { color: #9b6450; }

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--sand);
}

.quantity-controls button {
  background: none;
  border: none;
  width: 30px; height: 30px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--stone);
  transition: background 0.15s, color 0.15s;
}

.quantity-controls button:hover { background: var(--sand); color: var(--charcoal); }
.quantity-controls button:disabled { opacity: 0.3; cursor: not-allowed; }

.quantity-controls span {
  width: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--charcoal);
}

.remove-btn {
  background: none;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.remove-btn:hover { color: var(--charcoal); }

.cart-item-unavailable { opacity: 0.65; }

#cart-footer {
  padding: 20px 24px;
  padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
  border-top: 1px solid var(--sand);
  display: none;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cart-subtotal span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

#cart-subtotal {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 400;
}

/* Cart notification */
.cart-notification {
  position: fixed;
  top: 80px; right: 24px;
  padding: 14px 24px;
  background: var(--olive);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(-12px);
  transition: all 0.3s ease;
  z-index: 2000;
}

.cart-notification.show { opacity: 1; transform: translateY(0); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

.product-category {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 6px;
  font-weight: 500;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }

  .collections-grid {
    grid-template-rows: 440px 280px;
  }

  .collections-grid-5 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }

  .collections-grid-5 .collection-card-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .collections-grid-5 .collection-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .collections-grid-5 .collection-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .collections-grid-5 .collection-card-wide:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .collections-grid-5 .collection-card-wide:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .shop-layout { grid-template-columns: 200px 1fr; gap: 32px; }
  #product-grid { grid-template-columns: repeat(2, 1fr); }
  #search-results { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .mobile-nav { padding: 20px; }

  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .collections-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 320px 280px;
  }

  .collection-card-main { grid-row: span 1; }

  .collections-grid-5 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 280px);
  }

  .collections-grid-5 .collection-card-main,
  .collections-grid-5 .collection-card:nth-child(2),
  .collections-grid-5 .collection-card:nth-child(3),
  .collections-grid-5 .collection-card-wide:nth-child(4),
  .collections-grid-5 .collection-card-wide:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }

  .featured-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .editorial-image img { height: 420px; }

  .fabric-inner { grid-template-columns: 1fr; gap: 36px; }
  .fabric-mosaic { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fabric-mosaic-main { min-height: 200px; }
  .fabric-mosaic-main img { min-height: 200px; }
  .fabric-mosaic-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

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

  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }

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

  .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-images-wrap { position: static; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }

  .cart-drawer-content { width: 100%; max-width: 100%; right: -100%; }
  #cart-footer { padding: 16px 20px; padding-bottom: max(16px, env(safe-area-inset-bottom, 16px)); gap: 10px; }
  #cart-footer .btn { width: 100%; min-height: 52px; font-size: 0.75rem; padding: 14px 20px; box-sizing: border-box; }
  .cart-drawer-header { padding: 20px 20px; }
  #cart-items { padding: 12px 20px; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .policy-page-header { padding: 100px 0 40px; }
  .policy-page-header h1 { font-size: clamp(2rem, 5vw, 2.5rem); }
  .policy-block { margin-bottom: 32px; padding-bottom: 32px; }
  .policy-content-wrap { padding: 0 4px; }

  #store-entrance .entrance-label { font-size: clamp(1.4rem, 3.5vw, 2rem); }
  #store-entrance #enter-store-btn { padding: 0.9rem 2.2rem; font-size: 0.8rem; }
  #store-entrance .entrance-cta { width: 80%; }
  #store-entrance .door-inner { background-size: cover; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-subtitle { font-size: 0.82rem; }

  .featured-grid { grid-template-columns: 1fr; }
  #product-grid { grid-template-columns: 1fr; }
  #search-results { grid-template-columns: 1fr; }

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

  .fabric-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
  }
  .fabric-mosaic-main {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 8px;
  }
  .fabric-mosaic-main img { min-height: 180px; height: 180px; }
  .fabric-mosaic-grid {
    grid-column: 1 / 3;
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }
  .fabric-mosaic-wide { grid-column: 1 / 3; }
}

/* ============================================
   PRINT STYLESHEET
   ============================================ */
@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  .site-nav, .site-footer, #cart-drawer, .newsletter-section,
  .mobile-toggle, .mobile-nav, .cart-icon-btn, .nav-search-btn,
  .btn, .add-to-cart-button, .variant-selector { display: none !important; }

  body { background: white; color: black; font-size: 11pt; }

  .container { max-width: 100%; padding: 0 16pt; }

  .hero { height: auto; min-height: unset; padding: 40pt 0 20pt; }
  .hero-bg { display: none; }
  .hero-overlay { display: none; }
  .hero-content { position: static; padding: 0; color: black; }
  .hero-title { color: black; font-size: 28pt; }
  .hero-subtitle { color: #555; }
  .hero-tag { color: #555; }

  .collections-section, .products-section,
  .editorial-section, .fabric-section { page-break-inside: avoid; }

  img { max-width: 100%; }
  a::after { content: none; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Page Header */
.contact-page-header {
  padding: 120px 0 60px;
  background: var(--ivory);
  text-align: center;
  border-bottom: 1px solid var(--sand);
}

.contact-page-header .section-label {
  display: block;
  margin-bottom: 14px;
}

.contact-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.contact-page-header p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* Main Section */
.contact-main-section {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* --- Left: Contact Info --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--olive);
}

.contact-info-text h3 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 6px;
}

.contact-info-text p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

.contact-info-text a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-text a:hover {
  color: var(--olive);
}

.contact-hours-time {
  font-family: var(--font-serif) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: var(--charcoal) !important;
  letter-spacing: 0.02em;
}

/* --- Right: Newsletter Box --- */
.contact-newsletter-col {
  position: sticky;
  top: 100px;
}

.contact-newsletter-box {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 48px 44px;
}

.contact-newsletter-box .section-label {
  display: block;
  margin-bottom: 12px;
}

.contact-newsletter-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.contact-newsletter-box > p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Form */
.contact-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.contact-form-group label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-form-group input {
  padding: 12px 16px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-group input:focus {
  border-color: var(--olive);
}

.contact-form-group input::placeholder {
  color: var(--taupe);
}

.contact-submit-btn {
  width: 100%;
  padding: 15px 24px;
  text-align: center;
  letter-spacing: 0.16em;
}

/* Store Image Strip */
.contact-image-strip {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.contact-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-newsletter-col {
    position: static;
  }

  .contact-newsletter-box {
    padding: 36px 28px;
  }

  .contact-image-strip {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .contact-page-header {
    padding: 100px 0 48px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-newsletter-box {
    padding: 28px 20px;
  }

  .contact-image-strip {
    height: 200px;
  }
}

/* ============================================
   DESIGNER SIZE CHARTS
   ============================================ */

.designer-size-chart {
  padding: 80px 0;
  background: var(--ivory);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.designer-size-chart .container {
  max-width: 780px;
}

.size-chart-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.size-chart-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0;
}

.size-chart-toggle {
  background: none;
  border: 1px solid var(--sand);
  color: var(--warm-gray);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.size-chart-toggle:hover {
  border-color: var(--olive);
  color: var(--olive);
}

.size-chart-note {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}

.size-chart-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 0;
}

.size-chart-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-chart-tab:hover {
  color: var(--olive);
}

.size-chart-tab.active {
  color: var(--olive-deep);
  border-bottom-color: var(--olive);
}

.size-chart-panel {
  display: none;
  overflow-x: auto;
  padding-top: 2px;
}

.size-chart-panel.active {
  display: block;
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  margin-top: 0;
}

.size-chart-table thead tr {
  background: var(--cream);
}

.size-chart-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  border-bottom: 1px solid var(--sand);
  white-space: nowrap;
}

.size-chart-table td {
  padding: 12px 16px;
  color: var(--stone);
  font-weight: 300;
  border-bottom: 1px solid rgba(var(--sand-rgb, 210,200,185), 0.5);
  white-space: nowrap;
}

.size-chart-table tbody tr:last-child td {
  border-bottom: none;
}

.size-chart-table tbody tr:hover td {
  background: rgba(139,163,130,0.06);
}

.size-chart-table td:first-child {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.88rem;
}

.size-chart-disclaimer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--taupe);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
}

.size-chart-disclaimer a {
  color: var(--olive);
  text-decoration: none;
}

.size-chart-disclaimer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .size-chart-table th,
  .size-chart-table td {
    padding: 10px 10px;
    font-size: 0.76rem;
  }
  .size-chart-tabs {
    flex-wrap: wrap;
  }
  .size-chart-tab {
    padding: 8px 14px;
    font-size: 0.62rem;
  }
}

/* ═══════════════════════════════════════════════════
   STORE ENTRANCE OVERLAY (barn-door animation)
   ═══════════════════════════════════════════════════ */
#store-entrance {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
}
#store-entrance .door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #f5f0e8;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
  display: flex;
  align-items: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
}
#store-entrance .door-left {
  left: 0;
  justify-content: flex-end;
  border-right: 1px solid #e0d8ca;
}
#store-entrance .door-right {
  right: 0;
  justify-content: flex-start;
  border-left: 1px solid #e0d8ca;
}
#store-entrance .door-inner {
  width: 100%;
  height: 100%;
  background-image: url('images/simple-life-retail-storefront.jpg');
  background-size: 200% 100%;
  background-repeat: no-repeat;
  position: relative;
}
#store-entrance .door-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.15);
  pointer-events: none;
}
#store-entrance .door-inner-left {
  background-position: left center;
}
#store-entrance .door-inner-right {
  background-position: right center;
}
#store-entrance .entrance-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
#store-entrance .entrance-label {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal, #2c2c2c);
  margin: 0 0 2rem;
  line-height: 1.2;
}
#store-entrance #enter-store-btn {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream, #faf8f4);
  background-color: var(--olive-deep, #3d4a2e);
  border: none;
  padding: 1rem 2.8rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#store-entrance #enter-store-btn:hover {
  background-color: var(--olive, #5a6b45);
  transform: translateY(-1px);
}
#store-entrance.doors-open .door-left {
  transform: translateX(-100%);
}
#store-entrance.doors-open .door-right {
  transform: translateX(100%);
}
#store-entrance.doors-open .entrance-cta {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#store-entrance.hidden {
  display: none;
}

/* ═══════════════════════════════════════════════════
   PROMO POPUP (10% off signup) — content-driven height
   ═══════════════════════════════════════════════════ */
#promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 1rem;
}
#promo-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
#promo-popup {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
#promo-popup img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.promo-popup-content {
  padding: 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#promo-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal, #2c2c2c);
  z-index: 2;
  border-radius: 50%;
  transition: background 0.2s ease;
}
#promo-popup-close:hover {
  background: rgba(255, 255, 255, 1);
}
.promo-popup-eyebrow {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray, #8a8178);
  margin: 0 0 0.25rem;
}
.promo-popup-headline {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal, #2c2c2c);
  margin: 0 0 0.5rem;
}
.promo-popup-sub {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-gray, #8a8178);
  margin: 0 0 1rem;
}
.promo-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  width: 100%;
}
.promo-popup-input {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid #d9d3ca;
  border-radius: 6px;
  background: #faf8f4;
  color: var(--charcoal, #2c2c2c);
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease;
}
.promo-popup-input:focus {
  border-color: var(--olive, #5a6b45);
}
.promo-popup-btn {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream, #faf8f4);
  background-color: var(--olive-deep, #3d4a2e);
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.promo-popup-btn:hover {
  background-color: var(--olive, #5a6b45);
}
.promo-popup-shipping {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray, #8a8178);
  margin: 0.25rem 0;
  padding-top: 0.75rem;
  border-top: 1px solid #ece7df;
  width: 100%;
}
.promo-popup-skip {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--warm-gray, #8a8178);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.25rem;
}
.promo-popup-skip:hover {
  color: var(--charcoal, #2c2c2c);
}

/* Sale alert signup (empty sale state) */
.sale-alert-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.sale-alert-section h2,
.sale-alert-section h3 {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--charcoal, #2c2c2c);
}
.sale-alert-section p {
  font-size: 0.95rem;
  color: var(--warm-gray, #8a8178);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.sale-alert-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sale-alert-form input {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d9d3ca;
  background: #faf8f4;
  text-align: center;
  outline: none;
}
.sale-alert-form input:focus {
  border-color: var(--olive, #5a6b45);
}
.sale-alert-form button {
  font-family: var(--font-sans, "Jost", sans-serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream, #faf8f4);
  background-color: var(--olive-deep, #3d4a2e);
  border: none;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.sale-alert-form button:hover {
  background-color: var(--olive, #5a6b45);
}

@media (max-width: 480px) {
  #promo-popup {
    max-width: 92%;
  }
  #promo-popup img {
    height: 140px;
  }
  .promo-popup-content {
    padding: 1.25rem 1.5rem;
  }
  #store-entrance .entrance-label {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  #store-entrance #enter-store-btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.75rem;
  }
  #store-entrance .entrance-cta {
    width: 85%;
  }
}

/* ═══════════════════════════════════════════════════
   GREEN ANNOUNCEMENT BANNER
   ═══════════════════════════════════════════════════ */
.site-announcement-banner {
  background: #8BBDB5;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 800;
}

/* ═══════════════════════════════════════════════════
   PRODUCT IMAGE ARROW NAVIGATION
   ═══════════════════════════════════════════════════ */
.product-images-wrap {
  position: relative;
}

.product-image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.product-image-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.product-image-arrow-left {
  left: 20px;
}

.product-image-arrow-right {
  right: 20px;
}

@media (max-width: 768px) {
  .product-image-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .product-image-arrow-left {
    left: 10px;
  }

  .product-image-arrow-right {
    right: 10px;
  }
}

/* Video sound toggle */
.yt-sound-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease;
}
.yt-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Converted from the legacy visual editor by Touch Up */
.vo-legacy-index-1 {
  color: rgb(29, 92, 85);
}
.vo-legacy-index-2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.vo-legacy-index-3 {
  font-size: 16.8px;
}
.vo-legacy-index-4 {
  font-style: italic;
}
.vo-legacy-index-5 {
  letter-spacing: 1.008px;
}
.vo-legacy-index-6:hover {
  color: rgb(29, 92, 85);
}
.vo-legacy-index-7:hover {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.vo-legacy-index-8:hover {
  font-size: 16.8px;
}
.vo-legacy-index-9:hover {
  font-style: italic;
}
.vo-legacy-index-10:hover {
  letter-spacing: 1.008px;
}
.vo-legacy-index-11 {
  display: flex;
}
.vo-legacy-index-12 {
  flex-wrap: wrap;
}
.vo-legacy-index-13 {
  gap: 20px;
}
.vo-legacy-index-14 {
  align-items: center;
}
.vo-legacy-index-15 {
  margin-top: 8px;
}
.vo-legacy-index-16:hover {
  display: flex;
}
.vo-legacy-index-17:hover {
  flex-wrap: wrap;
}
.vo-legacy-index-18:hover {
  gap: 20px;
}
.vo-legacy-index-19:hover {
  align-items: center;
}
.vo-legacy-index-20:hover {
  margin-top: 8px;
}
.vo-legacy-index-21 {
  color: #E1306C !important;
}
.vo-legacy-index-22 {
  font-size: 1rem;
}
.vo-legacy-index-23 {
  display: inline-flex;
}
.vo-legacy-index-24 {
  gap: 10px;
}
.vo-legacy-index-25 {
  font-weight: 500;
}
.vo-legacy-index-26 {
  border: none;
}
.vo-legacy-index-27 {
  background: none;
}
.vo-legacy-index-28 {
  transition: opacity 0.2s;
}
.vo-legacy-index-29:hover {
  color: #E1306C !important;
}
.vo-legacy-index-30:hover {
  font-size: 1rem;
}
.vo-legacy-index-31:hover {
  display: inline-flex;
}
.vo-legacy-index-32:hover {
  gap: 10px;
}
.vo-legacy-index-33:hover {
  font-weight: 500;
}
.vo-legacy-index-34:hover {
  border: none;
}
.vo-legacy-index-35:hover {
  background: none;
}
.vo-legacy-index-36:hover {
  transition: opacity 0.2s;
}
.vo-legacy-index-37:hover {
  opacity: 0.75;
}
.vo-legacy-index-38 {
  color: #1877F2 !important;
}
.vo-legacy-index-39:hover {
  color: #1877F2 !important;
}
.vo-touchup-28 {
  max-width: 129px;
}

@media (max-width: 768px) {
  .nav-logo .car-carousel-image {
    height: 84px !important;
    max-width: 90px !important;
  }
}
