/* ═══════════════════════════════════════════════
   No Adulthood — Shared Design System
   ═══════════════════════════════════════════════ */

/* Local fonts — all loaded from file, no network requests */
@font-face {
  font-family: 'Inter';
  src: url('Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: 'Inter Tight';
  src: url('InterTight-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --white:    #ffffff;
  --off-white:#fafaf8;
  --light:    #f2efe9;
  --border:   #e4e1db;
  --muted:    #9c978f;
  --text:     #1a1714;
  --accent:   #FFD60A;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}

.nav-inner {
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: 'Inter Display', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: none;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links > li > a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  background: none;
}
.nav-links > li > a:hover { color: var(--muted); background: none; }
.nav-links > li.active > a { color: var(--text); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-chevron { font-size: 10px; transition: transform 0.2s; display: inline-block; }
.has-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  transition: background 0.15s;
  letter-spacing: 0;
}
.dropdown a:hover { background: var(--light); }
.dropdown-icon { display: none; }

/* Nav right */
.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-left: auto; }

.nav-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  border: none; background: transparent;
  transition: color 0.2s;
  color: var(--text);
}
.nav-icon-btn:hover { color: var(--muted); background: none; }

.nav-cart-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 0;
  background: none;
  color: var(--text);
  font-size: 13px; font-weight: 400;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s;
  border: none;
}
.nav-cart-btn:hover { color: var(--muted); transform: none; opacity: 1; }
.nav-cart-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 28px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  padding-top: 64px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}
.page-hero-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; max-width: 480px;
}

/* ─── CATEGORY HERO ─── */
.cat-hero {
  padding-top: 64px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.cat-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.12) 65%);
}
.cat-hero-content {
  position: relative; z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 40px;
  color: var(--white);
  width: 100%;
}
.cat-hero-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 12px;
}
.cat-hero-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 16px;
}
.cat-hero-sub {
  font-size: 15px; opacity: 0.65;
  max-width: 420px; line-height: 1.7;
}

/* ─── FILTER BAR ─── */
.filter-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 64px;
  z-index: 50;
}
.filter-bar-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center;
  gap: 4px; height: 52px;
  overflow-x: auto;
}
.filter-btn {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  color: var(--muted);
  background: transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.filter-btn:hover { background: var(--light); color: var(--text); }
.filter-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }

/* ─── SECTION ─── */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 40px;
}
.section-sm { padding: 64px 40px; }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px; gap: 24px;
}
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.section-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.section-link {
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.section-link:hover { color: var(--text); }

/* ─── PRODUCT GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-3px); }
.product-card:hover .product-img { transform: scale(1.05); }

.product-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--light);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--text);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-info { padding: 14px 16px 16px; }
.product-name { font-size: 13px; font-weight: 600; margin-bottom: 3px; line-height: 1.3; }
.product-type {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 15px; font-weight: 800; letter-spacing: -0.02em;
}
.product-add {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  background: var(--white);
  transition: all 0.2s;
}
.product-add:hover { background: var(--text); color: var(--white); border-color: var(--text); }
.product-add.is-disabled {
  width: auto;
  min-width: 78px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--light);
  border-color: var(--border);
  cursor: not-allowed;
}
.product-add.is-disabled:hover {
  background: var(--light);
  color: var(--muted);
  border-color: var(--border);
}

/* ─── WHY US — numbered 3-col ─── */
.why-us {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 48px;
}
.why-us-col {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.why-us-col:last-child { border-right: none; }
.why-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Inter Display', sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── ARRIVALS ─── */
.arrivals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.arrival-card { position: relative; overflow: hidden; cursor: pointer; }
.arrival-card:hover .arrival-img { transform: scale(1.05); }
.arrival-img {
  width: 100%; height: 540px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.arrival-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 100%);
  color: var(--white);
}
.arrival-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 8px;
}
.arrival-name {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: 6px;
}
.arrival-price { font-size: 14px; opacity: 0.72; }
.arrival-cta {
  position: absolute; top: 20px; right: 20px;
  background: var(--white); color: var(--text);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--radius-pill);
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.arrival-card:hover .arrival-cta { opacity: 1; transform: translateY(0); }

/* ─── BRAND SPLIT ─── */
.brand-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.brand-visual { position: relative; overflow: hidden; }
.brand-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-tag {
  position: absolute; top: 28px; left: 28px;
  background: var(--accent); border-radius: var(--radius-pill);
  padding: 9px 18px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.brand-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
  background: var(--light);
}
.brand-quote {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.05; text-transform: uppercase; margin-bottom: 28px;
}
.brand-quote .faded { color: var(--muted); }
.brand-body {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; max-width: 380px; margin-bottom: 36px;
}
.brand-list { border-top: 1px solid var(--border); margin-bottom: 40px; }
.brand-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 500;
}
.brand-list-num { font-size: 11px; color: var(--muted); font-weight: 700; }

/* ─── SCROLL ZOOM ─── */
.sz-wrap {
  height: 280vh;
  position: relative;
}
.sz-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.sz-frame {
  position: absolute;
  inset: 160px;
  border-radius: 24px;
  overflow: hidden;
  will-change: inset, border-radius;
}
.sz-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sz-caption {
  position: absolute;
  bottom: 56px;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-family: 'Inter Display', sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  opacity: 0;
  pointer-events: none;
}

/* ─── SCROLLING REVIEWS MARQUEE ─── */
.reviews-marquee-wrap {
  overflow: hidden;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-reviews 48s linear infinite;
}
.reviews-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rm-stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text);
}
.rm-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.rm-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.rm-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rm-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.rm-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .reviews-marquee-wrap {
    padding: 40px 0;
  }
  .rm-card {
    width: 280px;
    padding: 20px;
    border-radius: 12px;
  }
  .rm-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .rm-avatar {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .rm-card {
    width: 240px;
    padding: 16px;
  }
  .rm-stars {
    font-size: 12px;
  }
}

/* ─── REVIEWS ─── */
.reviews-section { background: var(--text); color: var(--white); }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-label { color: rgba(255,255,255,0.35); }
.reviews-section .section-link { color: rgba(255,255,255,0.35); }
.reviews-section .section-link:hover { color: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--accent); font-size: 14px; }
.review-text {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.68); margin-bottom: 22px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: rgba(255,255,255,0.1); }
.review-name { font-size: 13px; font-weight: 600; }
.review-handle { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { cursor: pointer; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-img-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.blog-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.blog-cat {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.blog-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px;
}
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 72px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.newsletter-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.05; color: var(--text);
}
.newsletter-sub {
  font-size: 14px; color: var(--muted);
  margin-top: 14px; line-height: 1.7;
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.nl-input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: var(--muted); }
.nl-input:focus { border-color: var(--text); }
.nl-btn {
  padding: 14px 28px;
  background: var(--text); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.nl-btn:hover { opacity: 0.75; }
.nl-note { font-size: 11px; color: var(--muted); }

/* ─── COLLECTIONS HERO GRID ─── */
.coll-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 46vh);
  gap: 3px;
  margin-top: 56px; /* offset below sticky nav */
}
.coll-hero-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.coll-hero-title {
  font-family: 'Inter Display', sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 16px;
}
.coll-hero-sublabel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.coll-hero-img {
  overflow: hidden;
  background: var(--light);
  display: block;
  text-decoration: none;
  position: relative;
}
.coll-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.coll-hero-img:hover img { transform: scale(1.04); }
.coll-hero-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,0.38);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}
.coll-hero-img:hover .coll-hero-label {
  opacity: 1;
}
.coll-hero-label span:first-child {
  font-family: 'Inter Display', sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.2,0,0,1);
}
.coll-hero-img:hover .coll-hero-label span:first-child {
  transform: translateY(0);
}
.coll-hero-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.2,0,0,1) 0.05s;
}
.coll-hero-img:hover .coll-hero-arrow {
  transform: translateY(0);
}
.coll-hero-empty { background: var(--white); }

@media (max-width: 1200px) {
  .coll-hero { 
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto repeat(3, 40vh);
  }
}

@media (max-width: 768px) {
  .coll-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto repeat(2, 30vh);
    gap: 12px;
    margin: 48px 16px !important;
  }
  .coll-hero-img {
    height: auto;
  }
}

@media (max-width: 480px) {
  .coll-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    margin: 32px 16px !important;
  }
  .coll-hero-img {
    height: 180px;
  }
  .coll-hero-title {
    font-size: clamp(32px, 6vw, 60px);
  }
}

/* ─── COLLECTIONS ─── */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
}
.collection-card:hover .collection-img { transform: scale(1.05); }
.collection-img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.collection-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: var(--white);
}
.collection-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 6px;
}
.collection-name {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: 4px;
}
.collection-count { font-size: 13px; opacity: 0.6; }

/* ─── ABOUT ─── */
.about-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 2px; }
.about-img-cell { aspect-ratio: 1; overflow: hidden; }
.about-img-cell img { width: 100%; height: 100%; object-fit: cover; }
.about-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.about-value-item { background: var(--white); padding: 40px 28px; text-align: center; }
.about-value-icon { font-size: 28px; margin-bottom: 14px; }
.about-value-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 17px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px;
}
.about-value-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 14px; }
.team-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--muted); }

/* ─── SUPPORT / FAQ ─── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.faq-list { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 600;
  cursor: pointer; gap: 16px;
}
.faq-chevron { font-size: 20px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; padding-bottom: 20px; display: none;
}
.faq-item.open .faq-answer { display: block; }

.contact-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
}
.contact-card-icon { font-size: 28px; margin-bottom: 14px; }
.contact-card-title { font-family: 'Inter Display', sans-serif; font-optical-sizing: auto; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* ─── BTNS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text); background: var(--text); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--text); }
.btn-accent:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer { background: var(--text); color: var(--white); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 32px 40px 24px; }
.footer-main {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}
.footer-logo {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 14px; font-weight: 500;
  color: var(--white); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.footer-nav {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 6px 20px;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--white); }
.footer-social { display: flex; gap: 8px; flex-shrink: 0; }
.social-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; cursor: pointer;
  transition: border-color 0.2s; color: rgba(255,255,255,0.5);
}
.social-btn:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.2);
}

/* ─── SHOP BY ROOM ─── */
.room-section { padding: 72px 48px 64px; }
.room-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.room-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 10px;
}
.room-tile {
  position: relative; overflow: hidden;
  border-radius: 12px; display: block;
  text-decoration: none; background: var(--light);
}
.room-tile-lg {
  grid-row: 1 / 3; /* spans both rows */
}
.room-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.room-tile:hover img { transform: scale(1.05); }
.room-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
}
.room-tile-name {
  font-size: 14px; font-weight: 500;
  color: #fff; letter-spacing: -0.01em;
}
.room-tile-arrow {
  font-size: 14px; color: rgba(255,255,255,0.7);
}

/* ─── PRODUCT DETAIL ─── */
.pd-wrap {
  max-width: 1320px; margin: 0 auto;
  padding: 100px 48px 80px;
}
.pd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  margin-bottom: 40px;
}
.pd-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.pd-breadcrumb a:hover { color: var(--text); }
.pd-breadcrumb span { color: var(--border); }

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

/* Gallery */
.pd-gallery { display: flex; flex-direction: column; gap: 12px; }
.pd-main-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
}
.pd-main-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity 0.15s ease;
}
.pd-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--text); color: var(--white);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
}
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumb {
  flex: 1; aspect-ratio: 1;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; background: var(--light);
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pd-thumb.active { border-color: var(--text); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Product Info */
.pd-info { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.pd-category {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.pd-title {
  font-family: 'Inter Display', sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}
.pd-price-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pd-price {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--text);
}
.pd-reviews-badge { display: flex; align-items: center; gap: 6px; }
.pd-stars { font-size: 13px; color: var(--text); letter-spacing: 1px; }
.pd-review-count { font-size: 12px; color: var(--muted); }
.pd-short-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-bottom: 28px;
}

/* Options */
.pd-option { margin-bottom: 22px; }
.pd-option-label {
  font-size: 12px; font-weight: 500;
  color: var(--text); margin-bottom: 10px;
}
.pd-option-selected { font-weight: 400; color: var(--muted); }

.pd-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-swatch {
  width: 28px; height: 28px;
  border-radius: 50%; border: 2px solid transparent;
  cursor: pointer; outline: 3px solid transparent;
  outline-offset: 2px; transition: outline-color 0.2s;
}
.pd-swatch.active { outline-color: var(--text); }

.pd-size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-size-btn {
  padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 12px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--white);
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.pd-size-btn:hover { border-color: var(--text); }
.pd-size-btn.active { border-color: var(--text); background: var(--text); color: var(--white); }

.pd-qty-row { display: flex; align-items: center; gap: 16px; }
.pd-qty-ctrl {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: 100px;
  overflow: hidden;
}
.pd-qty-btn {
  width: 38px; height: 38px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--text); transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.pd-qty-btn:hover { background: var(--light); }
.pd-qty-val {
  width: 36px; text-align: center;
  font-size: 14px; font-weight: 500;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  line-height: 38px;
}
.pd-stock { font-size: 12px; color: var(--muted); }

/* Actions */
.pd-actions {
  display: flex; gap: 10px;
  margin-bottom: 20px; margin-top: 8px;
}
.pd-atc-btn {
  flex: 1; padding: 17px 28px;
  background: var(--text); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: opacity 0.2s, background 0.3s;
}
.pd-atc-btn:hover { opacity: 0.82; }
.pd-wishlist-btn {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: border-color 0.2s;
  flex-shrink: 0;
}
.pd-wishlist-btn:hover { border-color: var(--text); }

/* Trust bar */
.pd-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.pd-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--muted);
}

/* Accordion */
.pd-accordion { display: flex; flex-direction: column; }
.pd-acc-item { border-bottom: 1px solid var(--border); }
.pd-acc-trigger {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 13px; font-weight: 500;
  color: var(--text); cursor: pointer; font-family: 'Inter', sans-serif;
  text-align: left;
}
.pd-acc-icon { font-size: 18px; color: var(--muted); font-weight: 300; }
.pd-acc-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 13px; color: var(--muted); line-height: 1.7;
}
.pd-acc-item.open .pd-acc-body {
  max-height: 400px; padding-bottom: 20px;
}
.pd-acc-body p + p { margin-top: 10px; }
.pd-acc-body ul { padding-left: 16px; display: flex; flex-direction: column; gap: 6px; }
.pd-acc-body a { color: var(--text); }

@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-wrap { padding: 90px 24px 60px; }
}

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-close {
  position: absolute; top: 24px; right: 32px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: border-color 0.2s;
}
.search-close:hover { border-color: var(--text); }
.search-inner { width: 100%; max-width: 640px; padding: 0 24px; }
.search-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.search-input {
  width: 100%; border: none; border-bottom: 2px solid var(--text);
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: clamp(28px, 4vw, 48px); font-weight: 500;
  letter-spacing: -0.02em; color: var(--text);
  background: transparent; outline: none; padding: 12px 0;
}
.search-input::placeholder { color: var(--border); }
.search-results {
  margin-top: 32px; display: flex; flex-direction: column; gap: 4px;
}
.search-result-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; border-radius: 10px;
  cursor: pointer; transition: background 0.15s;
  text-decoration: none; color: var(--text);
}
.search-result-item:hover { background: var(--light); }
.search-result-img {
  width: 48px; height: 48px; border-radius: 8px;
  object-fit: cover; background: var(--light); flex-shrink: 0;
}
.search-result-name { font-size: 14px; font-weight: 500; }
.search-result-type { font-size: 12px; color: var(--muted); margin-top: 2px; }
.search-result-price { font-size: 13px; color: var(--muted); margin-left: auto; }
.search-empty { font-size: 14px; color: var(--muted); padding: 12px 16px; }

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1900;
  background: rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  z-index: 1950; background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
}
.cart-drawer-title {
  font-family: 'Inter Display', sans-serif; font-optical-sizing: auto;
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em;
}
.cart-drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border); background: none;
  font-size: 18px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--text); transition: border-color 0.2s;
}
.cart-drawer-close:hover { border-color: var(--text); }
.cart-items-list {
  flex: 1; overflow-y: auto; padding: 20px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.cart-empty-msg {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--muted); font-size: 14px;
}
.cart-empty-icon { font-size: 40px; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.cart-item-img {
  width: 72px; height: 72px; border-radius: 10px;
  object-fit: cover; background: var(--light); flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.cart-item-type { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.cart-qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border); background: none;
  font-size: 14px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: var(--text);
  transition: border-color 0.2s;
}
.cart-qty-btn:hover { border-color: var(--text); }
.cart-qty { font-size: 13px; font-weight: 500; min-width: 16px; text-align: center; }
.cart-item-remove {
  font-size: 11px; color: var(--muted); background: none;
  border: none; cursor: pointer; padding: 0; transition: color 0.2s;
  text-decoration: underline;
}
.cart-item-remove:hover { color: var(--text); }
.cart-item-price { font-size: 13px; font-weight: 500; white-space: nowrap; }
.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 500;
}
.cart-subtotal-amount { font-size: 16px; }
.cart-checkout-btn {
  width: 100%; padding: 16px;
  background: var(--text); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: opacity 0.2s;
}
.cart-checkout-btn:hover { opacity: 0.8; }
.cart-note { font-size: 11px; color: var(--muted); text-align: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us { grid-template-columns: repeat(2, 1fr); }
  .brand-split { grid-template-columns: 1fr; }
  .brand-visual { height: 400px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-hero { grid-template-columns: 1fr 1fr; grid-template-rows: auto repeat(3, 40vh); }
  .coll-hero-text { grid-column: 1 / -1; }
  .coll-hero-empty { display: none; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 18px; }
  .section { padding: 56px 20px; }
  .section { padding: 56px 20px; }
  .section-sm { padding: 48px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 56px 20px 32px; }
  .newsletter-inner { padding: 48px 20px; }
  .collections-grid { grid-template-columns: 1fr; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us { grid-template-columns: 1fr; margin: 0 20px; }
  .why-us-col { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .why-us-col:last-child { border-bottom: none; }
  .brand-content { padding: 48px 24px; }
  .cat-hero-title { font-size: clamp(42px, 12vw, 80px); }
  .page-hero-title { font-size: clamp(40px, 10vw, 72px); }
  .filter-bar-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  nav { height: 64px; }
  .nav-cart-btn { font-size: 12px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-3 { grid-template-columns: 1fr; }
}

/* ─── FEATURE 1: Free Shipping Progress Bar ─── */
.cart-shipping-bar { padding: 16px 20px 12px; border-bottom: 1px solid var(--border); }
.csb-text { font-size: 12px; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.csb-track { height: 3px; background: var(--light); border-radius: 100px; overflow: hidden; }
.csb-fill { height: 100%; background: var(--text); border-radius: 100px; transition: width 0.4s ease; }

/* ─── FEATURE 2: Estimated Delivery Date ─── */
.cart-delivery-est { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); padding: 12px 20px; border-bottom: 1px solid var(--border); }
.cart-delivery-est strong { color: var(--text); }

/* ─── FEATURE 3: Promo Code Field ─── */
.cart-promo { padding: 0 20px 4px; }
.cart-promo-toggle { background: none; border: none; font-size: 12px; color: var(--muted); cursor: pointer; padding: 8px 0; font-family: 'Inter', sans-serif; transition: color 0.2s; }
.cart-promo-toggle:hover { color: var(--text); }
.cart-promo-field { padding-bottom: 8px; }
.cart-promo-row { display: flex; gap: 8px; }
.cart-promo-input { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: 13px; font-family: 'Inter', sans-serif; background: var(--off-white); outline: none; }
.cart-promo-input:focus { border-color: var(--text); }
.cart-promo-apply { background: var(--text); color: #fff; border: none; border-radius: 8px; padding: 9px 16px; font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif; white-space: nowrap; }
.cart-promo-msg { font-size: 11px; margin-top: 6px; }
.cart-promo-msg.success { color: #1e7d47; }
.cart-promo-msg.error { color: #c0392b; }

/* ─── FEATURE 4: Cart Upsell ─── */
.cart-upsell { padding: 16px 20px; border-top: 1px solid var(--border); }
.cart-upsell-title { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cart-upsell-list { display: flex; flex-direction: column; gap: 10px; }
.cu-card { display: flex; align-items: center; gap: 10px; }
.cu-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; background: var(--light); flex-shrink: 0; }
.cu-info { flex: 1; min-width: 0; }
.cu-name { font-size: 12px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cu-price { font-size: 11px; color: var(--muted); margin-top: 1px; }
.cu-add { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.cu-add:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* ─── FEATURE 5: Cookie Consent Banner ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--text); color: var(--white);
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; z-index: 9999;
  transform: translateY(0); transition: transform 0.4s ease;
  font-size: 13px;
}
.cookie-banner.hide { transform: translateY(110%); }
.cookie-text { line-height: 1.5; }
.cookie-text strong { font-weight: 500; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); padding: 8px 18px; border-radius: 100px; font-size: 12px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.cookie-accept { background: var(--white); color: var(--text); border: none; padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity 0.2s; }
.cookie-accept:hover { opacity: 0.88; }

/* ─── FEATURE 6: Exit-Intent Popup ─── */
.exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.exit-overlay.open { opacity: 1; pointer-events: auto; }
.exit-popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--white); border-radius: 20px;
  padding: 48px 44px; max-width: 440px; width: 90%;
  z-index: 10001; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
}
.exit-popup.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.exit-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 16px; color: var(--muted); cursor: pointer; }
.exit-badge { display: inline-block; background: var(--accent); color: var(--text); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.exit-title { font-family: 'Inter Display', sans-serif; font-optical-sizing: auto; font-size: 48px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; color: var(--text); margin-bottom: 12px; }
.exit-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.exit-form { display: flex; gap: 8px; margin-bottom: 12px; }
.exit-input { flex: 1; border: 1px solid var(--border); border-radius: 100px; padding: 13px 18px; font-size: 13px; font-family: 'Inter', sans-serif; outline: none; }
.exit-input:focus { border-color: var(--text); }
.exit-btn { background: var(--text); color: #fff; border: none; border-radius: 100px; padding: 13px 20px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; white-space: nowrap; }
.exit-note { font-size: 10px; color: var(--muted); }


/* ═══════════════════════════════════════════════
   MOBILE OVERHAUL — Complete responsive polish
   ═══════════════════════════════════════════════ */

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  margin-left: 2px;
  flex-shrink: 0;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 998;
  padding: 8px 20px 32px;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav-cat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 20px 0 10px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-nav-cat-link {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
}
.mobile-nav-cat-link:nth-child(odd) { padding-right: 12px; border-right: 1px solid var(--border); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter Display', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.mobile-nav-link:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ═══ 768px ═══ */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; gap: 8px; }
  .nav-logo { font-size: 18px; }

  /* Hero — taller and cleaner */
  .hero {
    height: auto;
    min-height: 58vw;
    margin: 84px 12px 0;
    border-radius: 12px;
  }
  .hero-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 24px;
  }
  .hero-text { text-align: left; max-width: 100%; }
  .hero-headline { font-size: clamp(24px, 6.5vw, 44px); margin-bottom: 4px; }
  .hero-sub { font-size: 12px; max-width: 280px; }

  /* New Arrivals — keep 2 columns */
  .na-section { padding: 48px 0; }
  .na-header { padding: 0 16px; margin-bottom: 20px; }
  .na-title { font-size: clamp(24px, 6vw, 40px); }
  .na-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }
  .na-img-wrap { aspect-ratio: 3/4; }

  /* Collections home grid — uniform vw-based heights */
  .coll-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 44vw 44vw;
    gap: 8px;
    margin: 40px 12px !important;
  }
  .coll-hero-text { padding: 16px 0 4px; }
  .coll-hero-title { font-size: clamp(28px, 7vw, 52px); }
  .coll-hero-sublabel { font-size: 12px; }

  /* Shop by room */
  .room-section { padding: 48px 12px 56px; }
  .room-header { margin-bottom: 20px; }
  .room-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50vw 28vw 28vw;
    gap: 8px;
  }
  .room-tile-lg { grid-row: 1; grid-column: 1 / -1; }

  /* Scroll zoom — less inset on mobile */
  .sz-wrap { height: 180vh; }
  .sz-frame { inset: 16px; border-radius: 16px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .section { padding: 52px 16px; }
  .section-sm { padding: 40px 16px; }
  .section-header { margin-bottom: 32px; }

  /* Why us */
  .why-us { grid-template-columns: 1fr; margin: 0 12px; }
  .why-us-col { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .why-us-col:last-child { border-bottom: none; }

  /* Filter bar */
  .filter-bar-inner { padding: 0 12px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-marquee-wrap { padding: 40px 0; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 52px 16px 32px; }

  /* Cat/page hero */
  .cat-hero-title { font-size: clamp(38px, 10vw, 72px); }
  .page-hero-title { font-size: clamp(36px, 9vw, 64px); }
  .page-hero-inner { padding: 60px 20px; }
  .cat-hero-content { padding: 48px 20px; }

  /* Collections page grid */
  .collections-grid { grid-template-columns: 1fr; }

  /* About */
  .about-img-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }

  /* Cart drawer full-width */
  .cart-drawer { width: 100vw; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; padding: 16px 20px; gap: 12px; text-align: center; }
  .cookie-actions { justify-content: center; }
}

/* ═══ 480px ═══ */
@media (max-width: 480px) {
  /* Nav */
  nav { height: 60px; }
  .nav-inner { padding: 0 14px; }
  .nav-logo { font-size: 17px; }
  .mobile-nav { top: 60px; }

  /* Cart button — icon only, no text */
  .nav-cart-btn { font-size: 0; gap: 3px; }
  .nav-cart-btn svg { width: 18px; height: 18px; display: block; }
  .nav-cart-btn .cart-count {
    font-size: 11px;
    background: var(--text);
    color: var(--white);
    min-width: 16px; height: 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
  }

  /* Hero */
  .hero {
    min-height: 74vw;
    margin: 60px 10px 0;
    border-radius: 10px;
  }
  .hero-bar { padding: 14px 14px 18px; gap: 10px; }
  .hero-headline { font-size: clamp(20px, 7.5vw, 34px); }
  .hero-sub { display: none; }
  .hero-shop-btn { font-size: 12px; padding: 10px 16px; }
  .hero-arrow { width: 24px; height: 24px; font-size: 11px; }

  /* New Arrivals — 2 col */
  .na-grid { grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 10px; }
  .na-img-wrap { aspect-ratio: 1/1; }
  .na-name { font-size: 9px; letter-spacing: 0.04em; }
  .na-card-tag { font-size: 9px; padding: 2px 7px; top: 8px; right: 8px; }
  .na-title { font-size: clamp(20px, 6vw, 32px); }
  .na-header { gap: 8px; }
  .na-view-more { font-size: 11px; padding: 8px 14px; }

  /* Products — keep 2 col */
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-grid-3 { grid-template-columns: 1fr 1fr; }
  .product-info { padding: 10px 10px 12px; }
  .product-name { font-size: 12px; }
  .product-price { font-size: 13px; }
  .product-add { width: 26px; height: 26px; font-size: 16px; }

  /* Collections home grid */
  .coll-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 48vw 48vw;
    margin: 24px 10px !important;
    gap: 6px;
  }
  .coll-hero-title { font-size: clamp(24px, 7vw, 44px); }
  .coll-hero-label { padding: 10px 12px; font-size: 11px; }

  /* Scroll zoom */
  .sz-wrap { height: 140vh; }
  .sz-frame { inset: 8px; border-radius: 10px; }

  /* Sections */
  .section { padding: 40px 12px; }
  .section-sm { padding: 32px 12px; }
  .section-header { flex-wrap: wrap; gap: 10px; }

  /* Why us */
  .why-us-col { padding: 22px 16px; }
  .why-title { font-size: 17px; }
  .why-us { margin: 0 10px; }

  /* Shop by room */
  .room-section { padding: 40px 10px 48px; }
  .room-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 54vw 30vw 30vw;
    gap: 6px;
  }
  .room-tile-lg { grid-column: 1 / -1; }
  .room-tile { border-radius: 8px; }

  /* Cat hero */
  .cat-hero { min-height: 260px; }
  .cat-hero-content { padding: 36px 14px; }
  .cat-hero-sub { font-size: 13px; max-width: 100%; }
  .cat-hero-title { font-size: clamp(30px, 10vw, 56px); }

  /* Page hero */
  .page-hero-inner { padding: 48px 14px; }
  .page-hero-title { font-size: clamp(30px, 9vw, 52px); }

  /* Blog */
  .blog-img { height: 200px; }
  .blog-title { font-size: 16px; }

  /* Newsletter */
  .newsletter-inner { padding: 40px 14px; }
  .newsletter-title { font-size: clamp(24px, 7vw, 40px); }

  /* Filter bar */
  .filter-bar-inner { padding: 0 10px; gap: 4px; height: 48px; }
  .filter-btn { padding: 5px 10px; font-size: 11px; }

  /* Cart */
  .cart-drawer-header { padding: 18px 14px; }
  .cart-items-list { padding: 14px; }
  .cart-footer { padding: 14px 14px 20px; }

  /* Search */
  .search-inner { padding: 0 14px; }
  .search-close { top: 16px; right: 14px; }

  /* Cookie banner */
  .cookie-banner { padding: 14px 16px; }

  /* Exit popup */
  .exit-popup { padding: 36px 24px; }
  .exit-title { font-size: 36px; }
  .exit-form { flex-direction: column; }
}

/* ─── FOOTER MOBILE FIX ─── */
@media (max-width: 768px) {
  .footer-inner { padding: 40px 16px 24px; }
  .footer-main { flex-wrap: wrap; gap: 20px; }
  .footer-nav { gap: 4px 16px; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .footer-inner { padding: 36px 14px 24px; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .footer-nav a {
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
  }
  .footer-social { margin-top: 4px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
