/* ============================================
   LAYALI NOOR — Stylesheet
   ============================================ */

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

:root {
  --gold: #C9A961;
  --gold-light: #E4C97E;
  --gold-muted: #8a7440;
  --bg: #0a0a0a;
  --bg-alt: #141414;
  --bg-elevated: #1a1a1a;
  --text: #f5efe4;
  --text-muted: #a89f8f;
  --border: rgba(201, 169, 97, 0.2);
  --border-strong: rgba(201, 169, 97, 0.4);
  --success: #7fbb69;
  --error: #d47070;
}

[data-theme="light"] {
  --gold: #a0834a;
  --gold-light: #c9a961;
  --gold-muted: #7a6538;
  --bg: #f5efe4;
  --bg-alt: #ebe3d3;
  --bg-elevated: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6357;
  --border: rgba(160, 131, 74, 0.25);
  --border-strong: rgba(160, 131, 74, 0.5);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}
[data-theme="light"] .nav { background: rgba(245, 239, 228, 0.7); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.nav-logo svg { width: 32px; height: 32px; }

.nav-menu {
  display: flex; gap: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-menu a {
  position: relative;
  padding: 4px 0;
  color: var(--text);
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  background: none;
}
.nav-icon:hover { border-color: var(--gold); transform: scale(1.05); }
.nav-icon svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  color: var(--gold);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #1a1508 0%, #0a0a0a 60%, #000 100%);
  z-index: 0;
}
[data-theme="light"] .hero-bg {
  background: radial-gradient(ellipse at center, #ebe3d3 0%, #f5efe4 60%, #e8dfc9 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}
.stars {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.star {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}
.glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 800px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 32px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-strong);
}
.hero-title {
  font-size: clamp(56px, 10vw, 120px);
  line-height: 1;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  color: var(--text);
  font-weight: 300;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.hero-divider .line {
  width: 60px; height: 1px;
  background: var(--gold);
}
.hero-divider svg { width: 20px; height: 20px; color: var(--gold); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold-light);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============ BUTTONS ============ */
.btn-primary, .btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.btn-primary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-whatsapp {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-whatsapp:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-whatsapp svg { width: 18px; height: 18px; }

/* ============ SECTIONS ============ */
.section {
  padding: 120px 48px;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin: 20px 0;
}
.ornament .line { width: 40px; height: 1px; background: var(--gold); }
.ornament svg { width: 16px; height: 16px; color: var(--gold); }

/* ============ PAGE HERO (subpaginas) ============ */
.page-hero {
  padding: 200px 48px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ============ FEATURED / DRESS CARDS ============ */
.featured, .collectie-page {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.featured-grid, .dress-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dress-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.dress-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: border-color 0.3s;
  display: block;
}
.dress-card:hover { border-color: var(--gold); }
.dress-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.dress-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.dress-image.has-image { filter: brightness(0.95); }
.dress-image.placeholder {
  background: linear-gradient(160deg, #3a2818 0%, #0f0a04 60%, #1e1408 100%);
  filter: sepia(0.2);
}
.dress-card:hover .dress-image { transform: scale(1.06); }
.dress-placeholder-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  opacity: 0.35;
  z-index: 1;
}
.dress-placeholder-icon svg { width: 80px; height: 80px; }

.dress-badge {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.dress-badge.badge-gereserveerd { color: var(--gold-light); border-color: var(--gold-light); }
.dress-badge.badge-onderhoud { color: var(--text-muted); border-color: var(--border); }

.dress-info {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.dress-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.dress-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.dress-price {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.featured-cta, .section-cta {
  text-align: center;
  margin-top: 60px;
}

/* ============ CATEGORIES ============ */
.categories { background: var(--bg-alt); }
.cat-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg);
  display: block;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  transition: opacity 0.4s;
}
.cat-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: sepia(0.3) brightness(0.85);
}
.cat-image.placeholder-bruiloft { background: linear-gradient(135deg, #4a3820 0%, #1a1208 50%, #2a1e10 100%); }
.cat-image.placeholder-verloving { background: linear-gradient(135deg, #3a2a20 0%, #1a0f08 50%, #2a1810 100%); }
.cat-image.placeholder-henna { background: linear-gradient(135deg, #4a2818 0%, #1a0808 50%, #2a1008 100%); }
.cat-image.placeholder-overig { background: linear-gradient(135deg, #2a2a20 0%, #0a0a08 50%, #1a1a10 100%); }

.cat-card:hover .cat-image { transform: scale(1.05); }
.cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  z-index: 3;
  color: #f5efe4;
}
.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  margin-top: 12px;
}
.cat-link svg { width: 12px; height: 12px; transition: transform 0.3s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* ============ FILTER BAR ============ */
.filter-bar {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active { background: rgba(201, 169, 97, 0.08); }

/* ============ STEPS (Werkwijze) ============ */
.werkwijze {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-icon {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  position: relative;
}
.step-icon::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.step-icon svg { width: 32px; height: 32px; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 8px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
  margin: 0 auto;
}

/* ============ CTA SECTION ============ */
.cta-section {
  text-align: center;
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.cta-text {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ============ DRESS DETAIL ============ */
.jurk-detail {
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.jurk-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.jurk-fotos { position: relative; }
.jurk-foto-hoofd {
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.jurk-foto-hoofd .dress-image {
  transition: none;
}
.jurk-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.jurk-thumb {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.jurk-thumb:hover, .jurk-thumb.active { border-color: var(--gold); }
.jurk-thumb-image {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}

.jurk-info h1 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.jurk-cat-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.jurk-prijs {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.jurk-beschrijving {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.jurk-specs {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.jurk-spec {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.jurk-spec:last-child { border-bottom: none; }
.jurk-spec-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.jurk-spec-waarde { color: var(--text); }
.jurk-status-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.jurk-terug {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.jurk-terug:hover { color: var(--gold); }
.jurk-terug svg { width: 14px; height: 14px; }

/* ============ OVER ONS ============ */
.about-secties {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
}
.about-sectie {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.about-sectie:last-child { border-bottom: none; }
.about-sectie h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 24px;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.about-sectie p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}
.about-sectie img {
  margin-top: 32px;
  border: 1px solid var(--border);
}

/* ============ CONTACT ============ */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-kanalen {
  display: grid;
  gap: 20px;
}
.contact-kanaal {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: border-color 0.3s;
}
.contact-kanaal:hover { border-color: var(--gold); }
.contact-kanaal-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-kanaal-icon svg { width: 24px; height: 24px; }
.contact-kanaal-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-kanaal-info p {
  color: var(--text-muted);
  font-size: 13px;
}
.contact-kanaal-info .link {
  display: inline-block;
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--gold);
}
.contact-form-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-servicegebied {
  background: var(--bg-alt);
  padding: 32px;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.form-servicegebied h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
}
.form-servicegebied p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ FAQ / VOORWAARDEN ============ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-vraag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text);
  gap: 20px;
}
.faq-vraag-icon {
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-vraag-icon { transform: rotate(45deg); }
.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-antwoord { max-height: 500px; padding-top: 16px; }

.voorwaarden-lijst {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.voorwaarde-item {
  padding: 24px 28px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.voorwaarde-label {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 6px;
}
.voorwaarde-waarde {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 48px 30px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 340px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap; gap: 16px;
}

/* ============ FLASH ============ */
.flash {
  position: fixed;
  top: 100px; left: 50%;
  transform: translateX(-50%);
  padding: 16px 32px;
  border: 1px solid;
  z-index: 200;
  animation: slideDown 0.4s ease;
}
.flash.success { border-color: var(--success); color: var(--success); background: rgba(127,187,105,0.08); }
.flash.error { border-color: var(--error); color: var(--error); background: rgba(212,112,112,0.08); }
@keyframes slideDown {
  from { top: 60px; opacity: 0; }
  to { top: 100px; opacity: 1; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-icon-social { display: none; }

  .section, .page-hero, .about-secties, .contact-container, .jurk-detail {
    padding-left: 24px; padding-right: 24px;
  }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .page-hero { padding-top: 140px; padding-bottom: 60px; }

  .featured-grid, .dress-grid, .dress-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .jurk-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .featured-grid, .dress-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons a { width: 100%; justify-content: center; }
}
