/* ============================================
   MABELISA — Premium Fashion E-commerce
   Design System: Cream / Gold / Charcoal
   ============================================ */

@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,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --cream:        #FAF7F2;
  --cream-deep:   #F0EBE3;
  --gold:         #C4963E;
  --gold-light:   #E8C77A;
  --gold-pale:    #F5E9D0;
  --charcoal:     #1C1C1C;
  --charcoal-mid: #3A3A3A;
  --charcoal-soft:#6B6B6B;
  --blush:        #EDD8CD;
  --white:        #FFFFFF;
  --border:       rgba(196, 150, 62, 0.25);
  --border-soft:  rgba(28, 28, 28, 0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --ease-silk:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.announcement-bar span { margin: 0 20px; }
.announcement-bar span::before {
  content: '✦';
  margin-right: 8px;
  font-size: 8px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s var(--ease-silk), background 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 40px rgba(28, 28, 28, 0.08);
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-mid);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-silk);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after { width: 100%; }

.nav-logo {
  text-align: center;
}
.nav-logo a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.25s;
}
.nav-logo a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.25s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
}
.nav-icon-btn:hover { color: var(--charcoal); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }
.cart-badge {
  background: var(--gold);
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease-silk);
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: right 0.4s var(--ease-silk);
  border-left: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: var(--charcoal-soft);
  cursor: pointer;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 16px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.75) 0%,
    rgba(28, 28, 28, 0.15) 50%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  color: white;
  max-width: 800px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 380px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-silk);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28,28,28,0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-silk);
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--charcoal);
  color: white;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-silk);
}
.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,150,62,0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-silk);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: white;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--cream-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal-mid);
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.trust-item-text span {
  font-size: 11px;
  color: var(--charcoal-soft);
}

/* ── Section Layout ── */
.section {
  padding: 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-sm { padding: 60px 40px; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: 16px;
  color: var(--charcoal-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.product-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover .quick-add { transform: translateY(0); opacity: 1; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-deep);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-silk);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.15);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  z-index: 2;
}
.badge-sale { background: var(--gold); color: white; }
.badge-new { background: var(--charcoal); color: white; }

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  opacity: 0;
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn:hover { background: var(--gold); color: white; }
.wishlist-btn svg { width: 16px; height: 16px; }

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: white;
  padding: 14px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.35s var(--ease-silk);
  z-index: 4;
  cursor: pointer;
}
.quick-add:hover { background: var(--gold); }

.product-info {
  padding: 20px 20px 24px;
  background: var(--white);
}
.product-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-current {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
}
.price-old {
  font-size: 14px;
  color: var(--charcoal-soft);
  text-decoration: line-through;
}
.price-save {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
}
.product-sizes {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.size-dot {
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid var(--border-soft);
  color: var(--charcoal-soft);
  transition: all 0.2s;
}
.size-dot:hover { border-color: var(--gold); color: var(--gold); }

/* ── Editorial Split ── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  overflow: hidden;
}
.editorial-split.reverse { direction: rtl; }
.editorial-split.reverse > * { direction: ltr; }

.editorial-img {
  position: relative;
  overflow: hidden;
}
.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-silk);
}
.editorial-split:hover .editorial-img img { transform: scale(1.03); }
.editorial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(28,28,28,0.3), transparent);
}

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--cream-deep);
}
.editorial-content.dark {
  background: var(--charcoal);
  color: white;
}
.editorial-content.dark .section-desc { color: rgba(255,255,255,0.65); }
.editorial-content.dark .section-title { color: white; }
.editorial-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.editorial-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 24px;
}
.editorial-title em { font-style: italic; color: var(--gold); }
.editorial-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 400px;
}
.editorial-content.dark .editorial-body { color: rgba(255,255,255,0.65); }

/* ── Lookbook Grid ── */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.lookbook-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-silk);
}
.lookbook-item:hover img { transform: scale(1.04); }
.lookbook-item-1 { grid-column: 1 / 6; grid-row: 1 / 3; min-height: 640px; }
.lookbook-item-2 { grid-column: 6 / 9; grid-row: 1 / 2; min-height: 310px; }
.lookbook-item-3 { grid-column: 9 / 13; grid-row: 1 / 2; min-height: 310px; }
.lookbook-item-4 { grid-column: 6 / 13; grid-row: 2 / 3; min-height: 326px; }

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 28px;
  background: linear-gradient(to top, rgba(28,28,28,0.75), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.4s;
}
.lookbook-item:hover .lookbook-caption { opacity: 1; }
.lookbook-caption h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.lookbook-caption span { font-size: 13px; color: var(--gold-light); }

/* ── Testimonials ── */
.testimonials-section {
  background: var(--charcoal);
  padding: 100px 40px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,150,62,0.15);
  padding: 40px;
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(196,150,62,0.1);
  line-height: 1;
}

/* ── Newsletter ── */
.newsletter-section {
  background: var(--gold-pale);
  padding: 80px 40px;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.newsletter-title em { font-style: italic; color: var(--gold); }
.newsletter-desc {
  font-size: 15px;
  color: var(--charcoal-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-right: none;
  background: white;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--charcoal-soft); }
.newsletter-btn {
  padding: 16px 28px;
  background: var(--charcoal);
  color: white;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold); }
.newsletter-privacy {
  font-size: 11px;
  color: var(--charcoal-soft);
  margin-top: 14px;
}

/* ── Instagram Grid ── */
.instagram-section {
  padding: 80px 0 0;
  overflow: hidden;
}
.insta-header {
  text-align: center;
  padding: 0 40px 48px;
}
.insta-handle {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-silk);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }
.insta-item-overlay span {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Brand Story ── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.brand-story-img {
  position: relative;
}
.brand-story-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.brand-story-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.brand-stat {
  position: absolute;
  top: 40px;
  right: -40px;
  background: var(--gold);
  color: white;
  padding: 24px 28px;
  text-align: center;
}
.brand-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.brand-stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.brand-story-content {}
.brand-story-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brand-story-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal-mid);
}
.brand-story-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 80px 40px 40px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,150,62,0.1);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-payment-badge {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

/* ── Product Detail Page ── */
.product-detail {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-gallery {}
.product-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 8px;
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 8px;
}
.product-thumb {
  width: 80px;
  height: 100px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info {}
.product-detail-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.product-detail-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.detail-price-current {
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
}
.detail-price-old {
  font-size: 20px;
  color: var(--charcoal-soft);
  text-decoration: line-through;
}
.detail-price-badge {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: white;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.product-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 28px 0;
}
.size-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}
.size-guide-link {
  color: var(--gold);
  font-size: 11px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.size-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.size-btn {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border-soft);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  font-family: var(--font-body);
  transition: all 0.2s;
  background: none;
  cursor: pointer;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.selected { border-color: var(--charcoal); background: var(--charcoal); color: white; }
.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  color: white;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease-silk);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.add-to-cart-btn:hover { background: var(--gold); }
.add-to-cart-btn svg { width: 18px; height: 18px; }
.wishlist-full-btn {
  width: 100%;
  padding: 17px;
  border: 1.5px solid var(--border-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
}
.wishlist-full-btn:hover { border-color: var(--gold); color: var(--gold); }
.product-desc-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-desc-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--charcoal-soft);
  font-weight: 300;
}
.product-details-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-details-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal-soft);
  font-weight: 300;
}
.product-details-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Shop Page ── */
.shop-hero {
  background: var(--charcoal);
  color: white;
  padding: 80px 80px 60px;
  text-align: center;
}
.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.shop-hero-title em { color: var(--gold-light); font-style: italic; }
.shop-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 20px;
  border: 1.5px solid var(--border-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  font-family: var(--font-body);
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: white;
}
.sort-select {
  padding: 8px 16px;
  border: 1.5px solid var(--border-soft);
  font-size: 12px;
  font-family: var(--font-body);
  background: transparent;
  cursor: pointer;
  color: var(--charcoal);
  outline: none;
}
.shop-grid-wrap {
  padding: 40px 80px;
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact-info {
  background: var(--charcoal);
  padding: 80px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
}
.contact-info-title em { color: var(--gold-light); font-style: italic; }
.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-detail svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.6; }
.contact-form-wrap {
  background: var(--cream);
  padding: 80px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 40px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-soft);
  background: white;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  font-family: var(--font-body);
}
.form-input:focus { border-color: var(--gold); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 16px 80px;
  font-size: 12px;
  color: var(--charcoal-soft);
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb a { color: var(--charcoal-soft); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border-soft); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s var(--ease-silk) both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-silk), transform 0.7s var(--ease-silk);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Cart Drawer ── */
.cart-drawer {
  position: fixed;
  right: -440px;
  top: 0;
  width: 440px;
  height: 100vh;
  background: var(--cream);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease-silk);
  box-shadow: -4px 0 40px rgba(28,28,28,0.12);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
}
.cart-drawer-close {
  font-size: 28px;
  color: var(--charcoal-soft);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 28px 36px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; color: var(--charcoal-soft); }
.cart-empty-text { font-family: var(--font-display); font-size: 24px; font-weight: 300; color: var(--charcoal-soft); }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.cart-item-img { aspect-ratio: 3/4; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-display); font-size: 17px; font-weight: 400; margin-bottom: 4px; }
.cart-item-size { font-size: 12px; color: var(--charcoal-soft); margin-bottom: 8px; }
.cart-item-price { font-size: 16px; font-weight: 500; }
.cart-item-remove { font-size: 20px; color: var(--charcoal-soft); cursor: pointer; background: none; border: none; line-height: 1; }
.cart-drawer-footer {
  padding: 28px 36px;
  border-top: 1px solid var(--border-soft);
  background: white;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}
.cart-total-label { font-weight: 400; color: var(--charcoal-soft); }
.cart-total-value { font-weight: 600; font-size: 20px; }
.checkout-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: white;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.25s;
  border: none;
}
.checkout-btn:hover { background: var(--charcoal); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  color: white;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 400;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s var(--ease-silk);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brand-story { padding: 80px 40px; gap: 48px; }
  .shop-grid-wrap { padding: 40px; }
  .shop-controls { padding: 24px 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split.reverse { direction: ltr; }
  .editorial-content { padding: 60px 40px; }
  .lookbook-item-1 { grid-column: 1 / 13; min-height: 400px; }
  .lookbook-item-2 { grid-column: 1 / 7; min-height: 280px; }
  .lookbook-item-3 { grid-column: 7 / 13; min-height: 280px; }
  .lookbook-item-4 { grid-column: 1 / 13; min-height: 280px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-story { grid-template-columns: 1fr; padding: 60px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 60px 32px; }
  .product-detail { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .breadcrumb { padding: 16px 40px; }
  .shop-hero { padding: 60px 40px; }
}

@media (max-width: 640px) {
  .hero-content { padding: 40px 28px; }
  .hero-title { font-size: 42px; }
  .section { padding: 64px 24px; }
  .trust-strip-inner { gap: 28px; flex-direction: column; }
  .testimonials-section { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1.5px solid var(--border); border-bottom: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .product-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 100%; right: -100%; }
  .size-grid { flex-wrap: wrap; }
  .nav-inner { padding: 0 20px; }
  .announcement-bar span { margin: 0 10px; font-size: 10px; }
}

/* ═══════════════════════════════════════════
   MABELISA — 40 VERBETERINGEN (v2)
   ═══════════════════════════════════════════ */

/* ── 1. Custom Cursor ── */
* { cursor: none !important; }
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-silk), height 0.35s var(--ease-silk), opacity 0.25s;
  opacity: 0.7;
}
.cursor.expanded { width: 60px; height: 60px; background: rgba(196,150,62,0.15); }
.cursor-ring.expanded { width: 80px; height: 80px; opacity: 0.3; }
@media (hover: none) { .cursor, .cursor-ring { display: none !important; } * { cursor: auto !important; } }

/* ── 2. Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9997;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── 3. Marquee Announcement Bar ── */
.announcement-bar {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 22s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 4. Word Reveal Animation ── */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-silk), transform 0.5s var(--ease-silk);
}
.word-reveal .word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 5. Liquid Fill Button ── */
.btn-liquid {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.35s;
  z-index: 0;
}
.btn-liquid::before {
  content: '';
  position: absolute;
  left: -4%;
  bottom: -4%;
  width: 0;
  height: 108%;
  background: var(--gold);
  transform: skewX(-8deg);
  transition: width 0.4s var(--ease-silk);
  z-index: -1;
}
.btn-liquid:hover::before { width: 115%; }
.btn-liquid:hover { color: white; border-color: var(--gold); }

/* ── 6. Golden Particles Canvas ── */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── 7. Page Transition ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99990;
  transform-origin: bottom;
  transform: scaleY(0);
  pointer-events: none;
}
.page-transition.enter { animation: ptEnter 0.45s var(--ease-silk) forwards; }
.page-transition.exit  { animation: ptExit  0.45s var(--ease-silk) forwards; }
@keyframes ptEnter { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
@keyframes ptExit  { from { transform: scaleY(1); transform-origin: top;    } to { transform: scaleY(0); transform-origin: top;    } }

/* ── 8. Badge Pulse Animation ── */
.badge-sale, .badge-new {
  animation: badgePulse 2.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,150,62,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(196,150,62,0); }
}

/* ── 9. Size Availability ── */
.size-btn.low    { border-color: #E8A250; color: #E8A250; }
.size-btn.sold   { opacity: 0.38; text-decoration: line-through; cursor: not-allowed; }
.size-btn.sold:hover { border-color: var(--border-soft); color: var(--charcoal-soft); }
.size-dot.low    { border-color: #E8A250; color: #E8A250; }
.size-dot.sold   { opacity: 0.35; text-decoration: line-through; }

/* ── 10. WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip {
  position: absolute;
  left: 60px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--charcoal);
  color: white;
  font-size: 12px;
  padding: 8px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── 11. Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250,247,242,0.97);
  z-index: 8500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-silk);
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay-inner {
  width: 100%;
  max-width: 640px;
}
.search-overlay-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 32px;
  text-align: center;
}
.search-overlay-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--charcoal);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  padding: 16px 0;
  outline: none;
  text-align: center;
  letter-spacing: 0.04em;
  transition: border-color 0.25s;
}
.search-overlay-input:focus { border-color: var(--gold); }
.search-overlay-input::placeholder { color: var(--charcoal-soft); opacity: 0.5; }
.search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 32px;
  color: var(--charcoal-soft);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.search-overlay-close:hover { color: var(--charcoal); }
.search-results {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--cream-deep);
  transition: background 0.2s;
  text-decoration: none;
  color: var(--charcoal);
}
.search-result-item:hover { background: var(--gold-pale); }
.search-result-img { width: 60px; height: 80px; object-fit: cover; }
.search-result-name { font-family: var(--font-display); font-size: 20px; font-weight: 300; }
.search-result-price { font-size: 14px; color: var(--gold); font-weight: 500; margin-top: 4px; }

/* ── 12. Countdown Timer ── */
.countdown-wrap {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 12px 0;
  font-size: 12px;
  color: var(--charcoal-mid);
  letter-spacing: 0.04em;
}
.countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-soft);
  margin-right: 4px;
}
.countdown-unit {
  background: var(--charcoal);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  min-width: 34px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.countdown-sep {
  font-weight: 700;
  color: var(--gold);
  margin: 0 1px;
}

/* ── 13. Cart Shipping Progress ── */
.shipping-progress-wrap {
  padding: 16px 36px;
  background: var(--gold-pale);
  border-bottom: 1px solid var(--border-soft);
}
.shipping-progress-text {
  font-size: 13px;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
  text-align: center;
}
.shipping-progress-text strong { color: var(--gold); }
.shipping-progress-bar {
  height: 3px;
  background: var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
}
.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s var(--ease-silk);
}

/* ── 14. Exit Intent Popup ── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.6);
  z-index: 98000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.exit-popup {
  background: var(--cream);
  max-width: 520px;
  width: 90%;
  padding: 60px 52px;
  position: relative;
  text-align: center;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-spring);
}
.exit-popup-overlay.open .exit-popup { transform: translateY(0); }
.exit-popup-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  cursor: pointer;
  color: var(--charcoal-soft);
  background: none;
  border: none;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: var(--charcoal); }
.exit-popup-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.exit-popup-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.exit-popup-title em { font-style: italic; color: var(--gold); }
.exit-popup-desc {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}
.exit-popup-form {
  display: flex;
  gap: 0;
  max-width: 380px;
  margin: 0 auto;
}
.exit-popup-input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-right: none;
  background: white;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  font-family: var(--font-body);
}
.exit-popup-input:focus { border-color: var(--gold); }
.exit-popup-btn {
  padding: 14px 22px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.exit-popup-btn:hover { background: var(--charcoal); }
.exit-popup-privacy {
  font-size: 11px;
  color: var(--charcoal-soft);
  margin-top: 12px;
}

/* ── 15. Sticky Add-to-Cart Bar ── */
.sticky-atc {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border-soft);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 7000;
  transition: bottom 0.4s var(--ease-silk);
  box-shadow: 0 -8px 32px rgba(28,28,28,0.1);
}
.sticky-atc.visible { bottom: 0; }
.sticky-atc-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-atc-img {
  width: 52px;
  height: 68px;
  object-fit: cover;
  background: var(--cream-deep);
}
.sticky-atc-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}
.sticky-atc-price {
  font-size: 15px;
  color: var(--charcoal-soft);
  margin-top: 2px;
}
.sticky-atc-btn {
  padding: 14px 32px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.sticky-atc-btn:hover { background: var(--charcoal); }

/* ── 16. Recently Viewed ── */
.recently-viewed-section {
  padding: 60px 80px;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
}
.recently-viewed-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
  margin-bottom: 24px;
}
.recently-viewed-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.recently-viewed-grid::-webkit-scrollbar { display: none; }
.recently-viewed-item {
  flex: 0 0 160px;
  text-decoration: none;
  color: var(--charcoal);
}
.recently-viewed-item img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.recently-viewed-item:hover img { opacity: 0.85; }
.recently-viewed-item-name { font-family: var(--font-display); font-size: 15px; font-weight: 400; }
.recently-viewed-item-price { font-size: 13px; color: var(--gold); font-weight: 500; margin-top: 3px; }

/* ── 17. Live Viewers Counter ── */
.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal-mid);
  margin: 8px 0;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #5EC269;
  border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94,194,105,0.5); }
  50%       { box-shadow: 0 0 0 4px rgba(94,194,105,0); }
}

/* ── 18. "Nu in de winkel" marquee strip ── */
.shop-marquee {
  background: var(--charcoal);
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shop-marquee-track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
  gap: 0;
}
.shop-marquee-track:hover { animation-play-state: paused; }
.shop-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
  text-decoration: none;
}
.shop-marquee-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  margin: 8px 0;
}
.shop-marquee-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shop-marquee-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.02em;
}
.shop-marquee-item-price {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.shop-marquee-sep {
  color: var(--gold);
  font-size: 10px;
  padding: 0 20px;
  align-self: center;
}

/* ── 19. Full-bleed Editorial Block ── */
.full-bleed-editorial {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.full-bleed-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}
.full-bleed-editorial:hover img { transform: scale(1.03); }
.full-bleed-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(28,28,28,0.5));
}

/* ── 20. UGC "Gezien op Instagram" Section ── */
.ugc-section {
  padding: 80px 40px;
  background: var(--cream-deep);
  text-align: center;
}
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 48px auto 0;
}
.ugc-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ugc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-silk), filter 0.4s;
}
.ugc-item:hover img { transform: scale(1.06); filter: brightness(0.88); }
.ugc-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
  background: linear-gradient(to top, rgba(28,28,28,0.7) 0%, transparent 60%);
}
.ugc-item:hover .ugc-item-overlay { opacity: 1; }
.ugc-handle {
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ── 21. "Hoe draag je het?" Accordion ── */
.styling-accordion {
  margin: 28px 0;
  border-top: 1px solid var(--border-soft);
}
.styling-accordion-item {
  border-bottom: 1px solid var(--border-soft);
}
.styling-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: color 0.2s;
  user-select: none;
}
.styling-accordion-header:hover { color: var(--gold); }
.styling-accordion-icon {
  font-size: 20px;
  transition: transform 0.3s var(--ease-silk);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.styling-accordion-item.open .styling-accordion-icon { transform: rotate(45deg); }
.styling-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-silk);
}
.styling-accordion-item.open .styling-accordion-body { max-height: 200px; }
.styling-accordion-content {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 300;
}

/* ── 22. Wishlist Page ── */
.wishlist-hero {
  padding: 80px 80px 60px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border-soft);
}
.wishlist-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  margin-bottom: 8px;
}
.wishlist-title em { font-style: italic; color: var(--gold); }
.wishlist-grid {
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.wishlist-empty {
  padding: 100px 40px;
  text-align: center;
}
.wishlist-empty-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}

/* ── 23. Lookbook Page ── */
.lookbook-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lookbook-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lookbook-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.45);
}
.lookbook-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.lookbook-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1440px;
  margin: 0 auto;
}
.lookbook-editorial-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.lookbook-editorial-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s var(--ease-silk);
}
.lookbook-editorial-item:hover img { transform: scale(1.04); }
.lookbook-editorial-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(28,28,28,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.lookbook-editorial-item:hover .lookbook-editorial-caption { opacity: 1; }
.lookbook-editorial-caption h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: white;
  margin-bottom: 6px;
}
.lookbook-editorial-caption span {
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

/* ── 24. "Terugsturen is gratis" micro-copy ── */
.return-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal-soft);
  margin-top: 10px;
}
.return-microcopy svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── 25. Cart Upsell ── */
.cart-upsell {
  padding: 20px 36px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border-soft);
}
.cart-upsell-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
  margin-bottom: 14px;
}
.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-upsell-item:hover { opacity: 0.8; }
.cart-upsell-img {
  width: 52px;
  height: 68px;
  object-fit: cover;
}
.cart-upsell-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  flex: 1;
}
.cart-upsell-price { font-size: 14px; font-weight: 500; color: var(--gold); }
.cart-upsell-add {
  padding: 8px 14px;
  background: var(--charcoal);
  color: white;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.cart-upsell-add:hover { background: var(--gold); }

/* ── 26. Wishlist Active State ── */
.wishlist-btn.active,
.wishlist-full-btn.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: white !important;
}
.wishlist-btn.active svg { fill: white; stroke: white; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); padding: 40px; }
  .lookbook-editorial-grid { grid-template-columns: 1fr; }
  .sticky-atc { padding: 12px 24px; }
  .recently-viewed-section { padding: 40px; }
}
@media (max-width: 640px) {
  .ugc-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 20px; }
  .whatsapp-float { bottom: 80px; }
  .sticky-atc-img { display: none; }
  .shop-marquee-item img { height: 60px; width: 46px; }
}

/* ── Additional styles for new HTML structures ── */

/* Full-bleed editorial text */
.full-bleed-editorial-text {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 2;
  max-width: 480px;
}
.full-bleed-editorial-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.full-bleed-editorial-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
}
.full-bleed-editorial-headline em { font-style: italic; color: var(--gold-light); }

/* Product micro-copy */
.product-micro-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 16px 0;
  font-size: 12px;
  color: var(--charcoal-soft);
  font-weight: 300;
}
.product-micro-copy span { display: flex; align-items: center; gap: 4px; }

/* Live viewers dot */
.live-viewers-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

/* Wishlist page hero */
.wishlist-hero {
  background: var(--cream-deep);
  padding: 100px 80px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.wishlist-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.05;
  margin-top: 12px;
}
.wishlist-hero-title em { font-style: italic; color: var(--gold); }
.wishlist-hero-desc {
  font-size: 17px;
  color: var(--charcoal-soft);
  margin-top: 16px;
  font-weight: 300;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Lookbook hero */
.lookbook-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 300;
  color: white;
  line-height: 1.0;
  margin-top: 12px;
}
.lookbook-hero-title em { font-style: italic; color: var(--gold-light); }
.lookbook-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}
.lookbook-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,18,15,0.1) 0%, rgba(20,18,15,0.6) 100%);
  z-index: 1;
}
.lookbook-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
}
.lookbook-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lookbook editorial grid */
.lookbook-editorial-grid { padding: 0; }
.lookbook-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--border-soft);
}
.lookbook-spread-reverse { direction: rtl; }
.lookbook-spread-reverse > * { direction: ltr; }
.lookbook-spread-img-large {
  overflow: hidden;
}
.lookbook-spread-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-silk);
}
.lookbook-spread:hover .lookbook-spread-img-large img { transform: scale(1.04); }
.lookbook-spread-text {
  background: var(--cream);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lookbook-spread-issue {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
  display: block;
}
.lookbook-spread-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 24px;
}
.lookbook-spread-title em { font-style: italic; color: var(--gold); }
.lookbook-spread-body {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.8;
  font-weight: 300;
  max-width: 400px;
}
.lookbook-spread-details {
  margin-top: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lookbook-spread-was {
  color: var(--charcoal-soft);
  text-decoration: line-through;
  font-weight: 300;
}
.lookbook-spread-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 65vh;
  border-bottom: 1px solid var(--border-soft);
}
.lookbook-spread-duo-item {
  position: relative;
  overflow: hidden;
}
.lookbook-spread-duo-item:first-child { border-right: 1px solid var(--border-soft); }
.lookbook-spread-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-silk);
}
.lookbook-spread-duo-item:hover img { transform: scale(1.04); }
.lookbook-spread-duo-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(20,18,15,0.7);
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 300;
}

@media (max-width: 768px) {
  .lookbook-spread, .lookbook-spread-reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .lookbook-spread-img-large { height: 55vw; }
  .lookbook-spread-text { padding: 48px 32px; }
  .lookbook-hero-content { padding: 0 32px; }
  .full-bleed-editorial-text { left: 32px; bottom: 40px; }
  .wishlist-hero { padding: 60px 32px 40px; }
  .lookbook-spread-duo { grid-template-columns: 1fr; height: auto; }
  .lookbook-spread-duo-item { height: 55vw; }
}
