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

/* ANIMATIES */
@keyframes inschuiven {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glinsteren {
  0% { color: gold; }
  50% { color: #fff7d6; }
  100% { color: gold; }
}

@keyframes inzoomen {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes lijnGroeien {
  from { width: 0; }
  to { width: 100px; }
}

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

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

img, video {
  max-width: 100%;
  height: auto;
}

body {
  background-color: #ffffff;
  color: #1a1612;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ════════════════════════════════════════
   TAAL SWITCHER
════════════════════════════════════════ */
.taal-kiezer {
  position: relative;
  list-style: none;
}

.taal-huidig {
  background: none;
  border: 1px solid #1e1e1e;
  color: #444;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.taal-kiezer:hover .taal-huidig,
.taal-kiezer.open .taal-huidig {
  color: gold;
  border-color: rgba(212, 175, 55, 0.3);
}

.taal-menu {
  display: block; /* voorkomt dat nav ul { display:flex } dit beïnvloedt */
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #080808;
  border: 1px solid #181818;
  min-width: 160px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 500;
}

.taal-kiezer:hover .taal-menu,
.taal-kiezer.open .taal-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.taal-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.taal-menu li:hover,
.taal-menu li.actief {
  background: rgba(212, 175, 55, 0.05);
}

.taal-menu li.actief .taal-code {
  color: gold;
}

.taal-code {
  font-size: 10px;
  letter-spacing: 2px;
  color: #555;
  font-weight: 500;
  min-width: 24px;
  transition: color 0.2s;
}

.taal-menu li:hover .taal-code {
  color: gold;
}

.taal-naam {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.taal-menu li:hover .taal-naam,
.taal-menu li.actief .taal-naam {
  color: #888;
}

/* ════════════════════════════════════════
   RTL ONDERSTEUNING (Arabisch)
════════════════════════════════════════ */
html.rtl body { direction: rtl; }

html.rtl nav { flex-direction: row-reverse; }
html.rtl nav ul li a::after { left: 50%; right: 50%; }
html.rtl nav ul li a:hover::after { left: 0; right: 0; }

html.rtl .logo { letter-spacing: 2px; font-family: 'Cormorant Garamond', serif; }

html.rtl .footer-inhoud { direction: rtl; }
html.rtl .footer-kolom { text-align: right; }
html.rtl .footer-links { align-items: flex-end; }

html.rtl .kenmerken-sectie .kenmerk { border-right: none; border-left: 1px solid #111; }
html.rtl .kenmerken-sectie .kenmerk:last-child { border-left: none; }

html.rtl .hero-ornament-lijn { background: linear-gradient(90deg, rgba(212,175,55,0.45), transparent); }
html.rtl .hero-ornament-lijn.rechts { background: linear-gradient(90deg, transparent, rgba(212,175,55,0.45)); }

html.rtl .over-banner { direction: rtl; }
html.rtl .proces-stappen { flex-direction: row-reverse; }

html.rtl .taal-menu { right: auto; left: 0; }

html.rtl .seizoen-kaart-inhoud {
  padding-left: 0;
  padding-right: 16px;
  border-left: none;
  border-right: 1px solid transparent;
}

html.rtl .seizoen-kaart:hover .seizoen-kaart-inhoud {
  border-right-color: var(--s-accent);
  padding-right: 20px;
  padding-left: 0;
}

/* Arabic typography */
html.rtl h1, html.rtl h2, html.rtl h3, html.rtl h4, html.rtl p {
  font-family: 'Segoe UI', 'Arial Unicode MS', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

html.rtl .hero-titel, html.rtl .hero-subtitel {
  font-family: 'Segoe UI', 'Arial Unicode MS', Arial, sans-serif;
}

/* CUSTOM CURSOR */




/* NAVIGATIE */
header {
  background: #100e09 url('images/marmer.jpg') center center / cover no-repeat;
  border-bottom: 1px solid rgba(201, 149, 108, 0.15);
  padding: 0 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.4s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.35s ease;
}

header.gescrold {
  background: #100e09 url('images/marmer.jpg') center center / cover no-repeat;
  border-bottom-color: rgba(201, 149, 108, 0.25);
  padding: 15px 60px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

header.nav-verborgen {
  top: -80px !important;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: gold;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-svg {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
  cursor: pointer;
}

header.gescrold .logo-svg {
  height: 90px;
}

.logo-link:hover .logo-svg {
  height: 140px;
}

.logo::before {
  content: '✦  ✦  ✦';
  display: block;
  font-size: 6px;
  letter-spacing: 4px;
  color: rgba(212,175,55,0.4);
  font-family: 'Raleway', sans-serif;
  transition: color 0.4s;
}

.logo::after {
  content: 'PARFUMERIE';
  display: block;
  font-size: 7px;
  letter-spacing: 6px;
  color: rgba(212,175,55,0.35);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  transition: color 0.4s;
}

.logo:hover::before,
.logo:hover::after { color: rgba(212,175,55,0.65); }

header.gescrold .logo {
  letter-spacing: 5px;
  font-size: 20px;
}

header.gescrold .logo::after {
  opacity: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  align-items: center;
}

nav ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.35s ease;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.8), transparent);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav ul li a:hover {
  color: #c8a845;
}

nav ul li a:hover::after {
  left: 0;
  right: 0;
}

/* Nav icons */
.zoek-nav {
  font-size: 15px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s !important;
}
.zoek-nav:hover {
  opacity: 1 !important;
  color: gold !important;
  transform: scale(1.1);
}
.zoek-nav::after { display: none; }

.mandje-knop {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s !important;
}
.mandje-knop:hover { opacity: 1 !important; color: gold !important; }
.mandje-knop::after { display: none; }

/* HERO */
.hero {
  text-align: center;
  padding: 160px 20px;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.hero-lijn {
  width: 1px;
  height: 60px;
  background-color: gold;
  margin: 0 auto 40px;
  opacity: 0.5;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  margin-bottom: 30px;
  opacity: 0.7;
  animation: inschuiven 1s ease forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: inschuiven 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  line-height: 2;
  margin-bottom: 60px;
  animation: inschuiven 1s ease 0.4s forwards;
  opacity: 0;
}

.hero .knop {
  animation: inschuiven 1s ease 0.6s forwards;
  opacity: 0;
  display: inline-block;
  margin-bottom: 60px;
}

/* KENMERKEN */
.kenmerken-sectie {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
}

.kenmerk {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 60px 40px;
  border-right: 1px solid #1a1a1a;
  transition: background-color 0.3s;
}

.kenmerk:last-child {
  border-right: none;
}

.kenmerk:hover {
  background-color: #111;
}

.kenmerk-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.kenmerk h3 {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.kenmerk p {
  color: #999;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 2;
}

/* QUOTE */
.quote-sectie {
  text-align: center;
  padding: 120px 20%;
  border-bottom: 1px solid #1a1a1a;
  background-color: #080808;
}

.quote-lijn {
  width: 40px;
  height: 1px;
  background-color: gold;
  margin: 0 auto 40px;
  opacity: 0.5;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quote-auteur {
  color: gold;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* UITGELICHT SECTIE */
.uitgelicht-sectie {
  padding: 120px 60px;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}

.sectie-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  margin-bottom: 20px;
  opacity: 0.7;
  display: block;
}

.uitgelicht-sectie h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 60px;
}

.uitgelicht-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.uitgelicht-kaart {
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  transition: border-color 0.4s, transform 0.4s;
  position: relative;
  background-color: #0d0d0d;
}

.uitgelicht-groot {
  max-width: 380px;
}

.uitgelicht-kaart:hover {
  border-color: gold;
  transform: translateY(-8px);
}

.kaart-nummer {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 3px;
  color: gold;
  opacity: 0.6;
  z-index: 1;
}

.uitgelicht-kaart img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.uitgelicht-groot img {
  height: 460px;
}

.uitgelicht-kaart:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.uitgelicht-info {
  padding: 30px 25px;
  text-align: left;
  border-top: 1px solid #1a1a1a;
}

.uitgelicht-info h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.kaart-beschrijving {
  color: #999;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.kaart-prijs {
  color: gold;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.kaart-link {
  color: #bbb;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.uitgelicht-kaart:hover .kaart-link {
  color: gold;
}

/* OVER ONS SECTIE */
.home-over-sectie {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
}

.home-over-tekst {
  flex: 1;
  min-width: 300px;
  padding: 120px 80px;
  border-right: 1px solid #1a1a1a;
}

.home-over-tekst h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 30px;
}

.home-over-tekst p {
  color: #666;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 20px;
}

.knop-outline {
  display: inline-block;
  margin-top: 20px;
  color: gold;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid gold;
  padding-bottom: 5px;
  transition: opacity 0.3s;
}

.knop-outline:hover {
  opacity: 0.7;
}

.home-over-stats {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat {
  padding: 60px 40px;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
  transition: background-color 0.3s;
}

.stat:hover {
  background-color: #111;
}

.stat:nth-child(2),
.stat:nth-child(4) {
  border-right: none;
}

.stat:nth-child(3),
.stat:nth-child(4) {
  border-bottom: none;
}

.stat h3 {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 10px;
}

.stat p {
  color: #555;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* PROCES SECTIE */
.proces-sectie {
  padding: 120px 60px;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  background-color: #080808;
}

.proces-sectie h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 80px;
}

.proces-stappen {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.stap {
  flex: 1;
  min-width: 200px;
  padding: 0 40px;
  text-align: center;
}

.stap-lijn {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, gold, transparent);
  opacity: 0.3;
  margin-top: 20px;
}

.stap-nummer {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 48px;
  font-weight: 300;
  opacity: 0.3;
  margin-bottom: 20px;
}

.stap h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

.stap p {
  color: #555;
  font-size: 13px;
  line-height: 2;
}

/* NIEUWSBRIEF */
.nieuwsbrief-sectie {
  text-align: center;
  padding: 120px 20px;
  border-bottom: 1px solid #1a1a1a;
}

.nieuwsbrief-sectie h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
}

.nieuwsbrief-sub {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 2;
  max-width: 600px;
  margin: 0 auto 50px;
}

.nieuwsbrief-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.nieuwsbrief-form input {
  flex: 1;
  background-color: transparent;
  border: 1px solid #333;
  border-right: none;
  color: #f0e6d3;
  padding: 18px 25px;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 1px;
}

.nieuwsbrief-form input:focus {
  border-color: gold;
}

.nieuwsbrief-form .knop {
  padding: 18px 35px;
}

.nieuwsbrief-melding {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  color: gold;
  text-transform: uppercase;
}

/* FOOTER */
footer {
  background-color: #080808;
}

.footer-inhoud {
  display: flex;
  justify-content: space-between;
  padding: 80px 10%;
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-kolom h4 {
  color: #f0e6d3;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 400;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.sectie-fleur {
  width: 32px;
  height: auto;
  display: block;
  margin: 0 0 12px 0;
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.5)) drop-shadow(0 0 20px rgba(212,175,55,0.2));
}

.footer-fleur {
  width: 48px;
  height: auto;
  opacity: 0.55;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.3));
}

.footer-beschrijving {
  color: #888;
  font-size: 12px;
  line-height: 2;
  max-width: 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: gold;
}

.footer-sociaal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sociaal-link {
  color: #444;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.sociaal-link:hover {
  color: gold;
}

.footer-copy {
  text-align: center;
  padding: 25px;
  color: #2a2a2a;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* KNOPPEN */
.knop {
  background-color: gold;
  color: #0d0d0d;
  padding: 16px 45px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid gold;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.knop:hover {
  background-color: transparent;
  color: gold;
}

/* PAGINA HEADER */
.pagina-header {
  text-align: center;
  padding: 110px 20px 60px;
  border-bottom: 1px solid #111;
  position: relative;
  overflow: hidden;
}

.pagina-header::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pagina-header .sectie-label {
  display: block;
  color: gold;
  font-size: 9px;
  letter-spacing: 7px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
}

.pagina-header h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.1;
}

.pagina-header p {
  color: #888;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── SORTEER BALK ── */
.sorteer-balk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 8%;
  border-bottom: 1px solid #111;
  flex-wrap: wrap;
  background: #080808;
  position: sticky;
  top: 70px;
  z-index: 50;
}

.sorteer-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #222;
  margin-right: 6px;
}

.sorteer-knop {
  background: none;
  border: 1px solid #151515;
  color: #333;
  padding: 8px 18px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  transition: all 0.25s;
}

.sorteer-knop:hover { border-color: rgba(212,175,55,0.3); color: gold; }
.sorteer-knop.actief { background: gold; border-color: gold; color: #080808; }

/* ── SEIZOEN ── */
.seizoen-nav-knoppen {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 32px 8% 0;
  background: #080808;
}

.seizoen-nav-knop {
  padding: 10px 28px;
  border: 1px solid #2a2a2a;
  color: #999;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}

.seizoen-nav-knop:hover,
.seizoen-nav-knop.actief {
  border-color: rgba(212,175,55,0.6);
  color: #d4af37;
}

.seizoen-sectie {
  padding: 70px 8% 20px;
  border-bottom: 1px solid #0d0d0d;
}

.seizoen-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.seizoen-header::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: gold;
  margin: 0 auto 20px;
  opacity: 0.4;
}

.seizoen-header h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}

.seizoen-header p {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── PRODUCTEN GRID ── */
.producten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  padding: 0 0 60px;
  background: #111;
}

/* ── PRODUCT KAART ── */
.product-kaart-link {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #080808;
}

.product-kaart {
  background: #080808;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.product-kaart:hover { background: #0c0c0c; }

/* Foto container */
.product-kaart-foto {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-kaart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.product-kaart:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

/* Gouden overlay van onderaf bij hover */
.product-kaart-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212,175,55,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-kaart:hover .product-kaart-foto::after { opacity: 1; }

/* Wishlist hart overlaid op foto */
.product-hart-overlay {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(8,8,8,0.7);
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(212,175,55,0.6);
  cursor: pointer;
  transition: all 0.25s;
  z-index: 3;
  backdrop-filter: blur(4px);
  outline: none;
}

.product-hart-overlay:hover,
.product-hart-overlay.actief { color: gold; border-color: rgba(212,175,55,0.4); }

/* Snel-toevoegen knop die verschijnt bij hover */
.product-snel-knop {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: rgba(212,175,55,0.92);
  color: #080808;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 4;
  font-weight: 500;
}

.product-kaart:hover .product-snel-knop { transform: translateY(0); }
.product-snel-knop:disabled { background: rgba(60,60,60,0.9); color: #555; cursor: not-allowed; }

/* Product info onder de foto */
.product-info {
  padding: 20px 22px 24px;
  border-top: 1px solid #1c1c1c;
}

.product-kaart h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.2;
  transition: color 0.3s;
}

.product-kaart:hover h3 { color: gold; }

.product-omschrijving {
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  line-height: 1.8;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-prijs {
  color: gold;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
}

.voorraad-indicator-klein {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.voorraad-indicator-klein.op-voorraad { color: #5aaa5a; }
.voorraad-indicator-klein.laag        { color: #cc8820; }
.voorraad-indicator-klein.uitverkocht { color: #cc5050; }

/* FOOTER */
footer {
  background-color: #080808;
}

/* HAMBURGER MENU */
.menu-knop {
  display: none;
  background: none;
  border: none;
  color: gold;
  font-size: 28px;
}

/* MANDJE */
.mandje-knop { font-size: 22px; }

.mandje-aantal {
  background-color: gold;
  color: #0d0d0d;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 500;
}

/* MELDING */
.melding {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: gold;
  color: #0d0d0d;
  padding: 15px 30px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 999;
}

/* MANDJE PAGINA */
.mandje-sectie {
  padding: 80px 10%;
  max-width: 900px;
  margin: 0 auto;
}

.mandje-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #1a1a1a;
}

.mandje-item h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #f0e6d3;
  font-size: 22px;
  font-weight: 400;
}

.mandje-item p {
  color: gold;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 5px;
}

.verwijder-knop {
  background: none;
  border: 1px solid #333;
  color: #555;
  padding: 8px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  transition: border-color 0.3s, color 0.3s;
}

.verwijder-knop:hover {
  border-color: #f44336;
  color: #f44336;
}

.mandje-totaal {
  text-align: right;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.mandje-totaal h3 {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px;
}

.leeg-mandje {
  text-align: center;
  color: #333;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 80px;
}

/* CONTACT */
.contact-sectie {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  padding: 80px 60px;
  border-right: 1px solid #1a1a1a;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 42px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 25px;
}

.contact-info p {
  color: #555;
  font-size: 13px;
  line-height: 2;
  margin-bottom: 10px;
}

.contact-details {
  margin-top: 40px;
}

.contact-details p {
  color: #f0e6d3;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: #f0e6d3;
  padding: 15px 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  letter-spacing: 1px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: gold;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* AFREKENEN */
.afrekenen-sectie {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.bestel-form {
  flex: 1;
  min-width: 300px;
  padding: 80px 60px;
  border-right: 1px solid #1a1a1a;
}

.bestel-form h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #f0e6d3;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
}

.form-groep {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.form-groep label {
  color: #444;
  font-size: 10px;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.form-groep input,
.form-groep select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: #f0e6d3;
  padding: 12px 0;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  letter-spacing: 1px;
}

.form-groep input:focus,
.form-groep select:focus {
  border-bottom-color: gold;
}

.form-groep select option {
  background-color: #0d0d0d;
}

.bestel-overzicht {
  flex: 1;
  min-width: 300px;
  padding: 80px 60px;
  background-color: #080808;
}

.bestel-overzicht h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #f0e6d3;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
}

.overzicht-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #888;
  font-size: 13px;
  letter-spacing: 1px;
}

.overzicht-totaal {
  margin-top: 30px;
  text-align: right;
}

.overzicht-totaal h3 {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 30px;
  font-weight: 300;
}

/* KORTINGSCODE */
.kortingscode-sectie {
  margin-bottom: 30px;
}

.kortingscode-invoer {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.kortingscode-invoer input {
  flex: 1;
}

.knop-klein {
  background-color: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 12px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.knop-klein:hover {
  background-color: gold;
  color: #0d0d0d;
}

.korting-melding {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 1px;
}

.korting-melding.succes {
  color: #4caf50;
}

.korting-melding.fout {
  color: #f44336;
}

.overzicht-rij {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #555;
  font-size: 13px;
  margin-bottom: 15px;
}

/* BEDANKT PAGINA */
.bedankt-sectie {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 100px 20px;
}

.bedankt-inhoud {
  text-align: center;
  max-width: 600px;
}

.bedankt-icon {
  font-size: 60px;
  margin-bottom: 40px;
  display: block;
}

.bedankt-inhoud h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 25px;
}

.bedankt-inhoud p {
  color: #555;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 15px;
}

.bedankt-sub {
  color: #333 !important;
  font-size: 12px !important;
  margin-bottom: 50px !important;
}

/* PRODUCT PAGINA */
.product-pagina {
  display: flex;
  min-height: 90vh;
  flex-wrap: wrap;
}

.product-pagina-foto {
  flex: 1;
  min-width: 300px;
}

.product-pagina-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.product-pagina-info {
  flex: 1;
  min-width: 300px;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-categorie {
  color: #444;
  letter-spacing: 4px;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.product-pagina-info h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 60px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.1;
}

.product-pagina-prijs {
  color: gold;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 40px;
  display: block;
}

.maat-keuze {
  margin-bottom: 24px;
}

.maat-label {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.maat-knoppen {
  display: flex;
  gap: 8px;
}

.maat-knop {
  background: none;
  border: 1px solid #1a1a1a;
  color: #333;
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}

.maat-knop:hover {
  border-color: rgba(212,175,55,0.3);
  color: #888;
}

.maat-knop.actief {
  border-color: rgba(212,175,55,0.5);
  color: rgba(212,175,55,0.9);
  background: rgba(212,175,55,0.04);
}

.product-scheiding {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 30px 0;
}

.product-beschrijving {
  color: #666;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 30px;
}

.product-noten {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

.noot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
}

.noot-label {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.noot-waarde {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  letter-spacing: 1px;
}

.terug-link {
  display: inline-block;
  margin-top: 30px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.terug-link:hover {
  color: gold;
}

/* OVER ONS PAGINA */
.over-ons-sectie {
  padding: 100px 15%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  border-bottom: 1px solid #1a1a1a;
}

.over-ons-blok {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.over-ons-blok h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 25px;
}

.over-ons-blok p {
  color: #666;
  font-size: 14px;
  line-height: 2;
}

.waarden-sectie {
  padding: 100px 10%;
  text-align: center;
  background-color: #080808;
}

.waarden-sectie h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 70px;
}

.waarden-grid {
  display: flex;
  justify-content: center;
  gap: 1px;
  flex-wrap: wrap;
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.waarde-kaart {
  background-color: #080808;
  padding: 50px 30px;
  width: 220px;
  flex: 1;
  min-width: 200px;
  transition: background-color 0.3s;
}

.waarde-kaart:hover {
  background-color: #111;
}

.waarde-icon {
  font-size: 32px;
  margin-bottom: 25px;
  display: block;
}

.waarde-kaart h3 {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

.waarde-kaart p {
  color: #555;
  font-size: 12px;
  line-height: 2;
}

/* SCROLL ANIMATIES */
.scroll-animatie {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.scroll-animatie.zichtbaar {
  opacity: 1;
  transform: translateY(0);
}/* FAQ PAGINA */
.faq-sectie {
  padding: 80px 15%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-categorie h2 {
  font-family: 'Cormorant Garamond', serif;
  color: gold;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #1a1a1a;
}

.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  color: #f0e6d3;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 25px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-vraag:hover {
  color: gold;
}

.faq-icoon {
  color: gold;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-antwoord {
  display: none;
  padding: 0 0 25px;
}

.faq-antwoord p {
  color: #666;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.5px;
}

.faq-antwoord.open {
  display: block;
}

.faq-icoon.open {
  transform: rotate(45deg);
}

/* FAQ CONTACT SECTIE */
.faq-contact {
  text-align: center;
  padding: 100px 20px;
  background-color: #080808;
  border-top: 1px solid #1a1a1a;
}

.faq-contact h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 42px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
}

.faq-contact p {
  color: #555;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* MOBIEL */
@media (max-width: 768px) {
  .hero h1 { font-size: 42px; }
  .logo { font-size: 20px; }
  header { padding: 20px 25px; }
  .menu-knop { display: block; }
  .home-over-tekst { padding: 60px 30px; }
  .proces-stappen { flex-direction: column; align-items: center; }
  .stap-lijn { width: 1px; height: 40px; }
  .uitgelicht-kaart { max-width: 100%; }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: #080808;
    padding: 30px;
    gap: 25px;
    border-bottom: 1px solid #1a1a1a;
  }

  nav ul.open { display: flex; }
}
/* COLLECTIE KEUZE */
.collectie-keuze {
  display: flex;
  min-height: 70vh;
  flex-wrap: wrap;
}

.collectie-kaart {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #1a1a1a;
  transition: background-color 0.4s;
  padding: 80px 60px;
}

.collectie-kaart:last-child {
  border-right: none;
}

.collectie-kaart:hover {
  background-color: #111;
}

.collectie-kaart-inhoud {
  text-align: center;
  max-width: 400px;
}

.collectie-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
  display: block;
}

.collectie-kaart-inhoud h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.collectie-kaart:hover .collectie-kaart-inhoud h2 {
  color: gold;
}

.collectie-sub {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 30px;
}

.collectie-link {
  color: #444;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.collectie-kaart:hover .collectie-link {
  color: gold;
  border-bottom-color: gold;
}

/* SEIZOEN SECTIE */
.seizoen-sectie {
  padding: 80px 60px;
  border-bottom: 1px solid #1a1a1a;
}

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

.seizoen-header h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 10px;
}

.seizoen-header p {
  color: #555;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* COLLECTIE KEUZE */
.collectie-keuze {
  display: flex;
  min-height: 70vh;
}

.collectie-kaart {
  flex: 1;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #1a1a1a;
  transition: background-color 0.4s;
  position: relative;
  overflow: hidden;
}

.collectie-kaart:last-child {
  border-right: none;
}

.collectie-kaart:hover {
  background-color: #111;
}

.collectie-kaart-inhoud {
  text-align: center;
  padding: 60px;
}

.collectie-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
}

.collectie-kaart h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: #f0e6d3;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.collectie-kaart:hover h2 {
  color: gold;
}

.collectie-sub {
  color: #555;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.collectie-link {
  color: #444;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.collectie-kaart:hover .collectie-link {
  color: gold;
  border-bottom-color: gold;
}

/* ZOEKEN */
.zoek-sectie {
  padding: 60px 10%;
}

.zoek-balk {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.zoek-balk input {
  flex: 1;
  background: transparent;
  border: none;
  color: #f0e6d3;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  outline: none;
  padding: 10px 0;
}

.zoek-balk input::placeholder {
  color: #333;
}

.zoek-balk input:focus {
  border-bottom-color: gold;
}

.zoek-resultaten-tekst {
  color: #444;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.zoek-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-knop {
  background: none;
  border: 1px solid #222;
  color: #555;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s;
}

.filter-knop:hover {
  border-color: gold;
  color: gold;
}

.filter-knop.actief {
  background-color: gold;
  border-color: gold;
  color: #0d0d0d;
}

/* ZOEK NAV */
.zoek-nav {
  font-size: 18px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.zoek-nav:hover {
  opacity: 0.7;
}

/* WISHLIST NAV */
.wishlist-nav {
  font-size: 16px;
  text-decoration: none;
  color: #f0e6d3;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.wishlist-nav:hover {
  color: gold;
}

.wishlist-aantal {
  background-color: gold;
  color: #0d0d0d;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 500;
}

/* WISHLIST HARTJE */
.product-kaart-link {
  position: relative;
}

.wishlist-hartje {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background-color: rgba(0,0,0,0.5);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s;
  text-decoration: none;
}

.wishlist-hartje:hover {
  background-color: rgba(255,215,0,0.2);
  border-color: gold;
  color: gold;
}

.wishlist-hartje.actief {
  background-color: rgba(255,215,0,0.3);
  border-color: gold;
  color: gold;
}

/* REVIEWS */
.reviews-sectie {
  padding: 60px 10%;
  border-top: 1px solid #1a1a1a;
}

.reviews-sectie h2 {
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: gold;
  margin-bottom: 40px;
}

.review-kaart {
  border-bottom: 1px solid #1a1a1a;
  padding: 25px 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-naam {
  color: #f0e6d3;
  font-size: 14px;
  letter-spacing: 1px;
}

.review-sterren {
  color: gold;
  font-size: 14px;
}

.review-bericht {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.review-datum {
  color: #333;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 8px;
}

.review-formulier {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #1a1a1a;
}

.review-formulier h3 {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #f0e6d3;
  margin-bottom: 25px;
}

.review-formulier input,
.review-formulier textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: #f0e6d3;
  padding: 12px 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  margin-bottom: 20px;
}

.review-formulier textarea {
  height: 100px;
  resize: none;
}

.review-formulier input:focus,
.review-formulier textarea:focus {
  border-bottom-color: gold;
}

.sterren-selectie {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.ster {
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s;
}

.ster.actief {
  color: gold;
}

.geen-reviews {
  color: #444;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 30px 0;
}

/* Mobiele nav iconen: verborgen op desktop */
.nav-mob-icoon { display: none; }

/* ════════════════════════════════════════
   MOBIEL (max 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header */
  header {
    padding: 0 16px;
    height: 62px;
    display: flex;
    align-items: center;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    transition: top 1.1s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease !important;
    transform: none !important;
  }

  header.gescrold { padding: 0 16px !important; box-shadow: 0 2px 20px rgba(0,0,0,0.8); }
  header.nav-verborgen { top: -80px !important; }

  body { padding-top: 62px; }

  /* Nav: 3-kolom grid — wishlist | logo | cart+hamburger */
  nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .logo { font-size: 20px; letter-spacing: 4px; }

  /* Logo: middelste kolom, gecentreerd */
  .logo-link {
    grid-column: 2;
    position: relative !important;
    left: auto !important;
    transform: none !important;
    padding: 6px;
    border: 1px solid rgba(212,175,55,0.55);
    box-shadow:
      inset 0 0 8px rgba(212,175,55,0.08),
      0 0 0 3px rgba(212,175,55,0.1),
      0 0 0 4px rgba(212,175,55,0.06);
    background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent 60%);
  }

  .logo-link::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px;
    width: 10px; height: 10px;
    border-top: 2px solid #d4af37;
    border-left: 2px solid #d4af37;
  }
  .logo-link::after {
    content: '';
    position: absolute;
    bottom: -4px; right: -4px;
    width: 10px; height: 10px;
    border-bottom: 2px solid #d4af37;
    border-right: 2px solid #d4af37;
  }

  .logo-svg {
    height: 44px !important;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.9)) drop-shadow(0 0 6px rgba(212,175,55,0.2));
  }

  /* Wishlist: rechts in linkerkolom — dicht bij logo */
  .nav-mob-wishlist {
    grid-column: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.3s;
    z-index: 1;
  }
  .nav-mob-wishlist:hover { color: #d4af37; }

  /* Cart: links in rechterkolom — dicht bij logo */
  .nav-mob-cart {
    grid-column: 3;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.3s;
    z-index: 1;
  }
  .nav-mob-cart:hover { color: #d4af37; }

  /* Hamburger: absoluut rechts */
  .menu-knop {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    width: 32px;
    height: 32px;
    font-size: 0;
    z-index: 1;
  }

  .menu-knop::before,
  .menu-knop::after,
  .menu-knop span {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #d4af37;
    border-radius: 1px;
  }

  .menu-knop span { width: 18px; }

  /* Dropdown menu: absoluut onder header */
  nav ul {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(5,5,5,0.98);
    border-top: 1px solid #1a1510;
    gap: 0;
    z-index: 998;
  }

  nav ul.open { display: flex; }

  nav ul li { border-bottom: 1px solid #0f0f0f; }
  nav ul li:last-child { border-bottom: none; }

  nav ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 3px;
    width: 100%;
  }

  nav ul li a::after { display: none; }

  /* Verberg dubbele wishlist, cart en zoek in dropdown */
  nav ul li:has(.wishlist-nav),
  nav ul li:has(.mandje-knop),
  nav ul li:has(.zoek-nav) { display: none; }

  /* Taal kiezer op mobiel */
  .taal-kiezer {
    width: 100%;
    padding: 12px 20px;
  }

  .taal-huidig {
    font-size: 11px;
    padding: 8px 14px;
    width: 100%;
    text-align: left;
  }

  .taal-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-top: 1px solid #0f0f0f;
    display: none;
    padding: 4px 0;
  }

  .taal-kiezer.open .taal-menu {
    display: block;
  }

  .taal-menu li {
    padding: 10px 24px;
  }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 600px;
  }

  .hero-titel {
    font-size: 42px;
  }

  .hero-subtitel {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 0 10px;
  }

  .hero-knoppen {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-ornament-lijn {
    width: 30px;
  }

  /* Kenmerken */
  .kenmerken-sectie {
    grid-template-columns: repeat(2, 1fr);
  }

  .kenmerk:nth-child(2) {
    border-right: none;
  }

  .kenmerk:nth-child(3) {
    border-right: 1px solid #111;
  }

  /* Collectie banner */
  .collectie-banner {
    padding: 60px 6%;
  }

  .collectie-banner h2 {
    font-size: 38px;
  }

  .collectie-banner-knoppen {
    flex-direction: column;
    align-items: center;
  }

  /* Seizoenen homepage */
  .seizoenen-sectie {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .seizoen-kaart {
    padding: 40px 28px;
    border-bottom: 1px solid #111;
    height: 200px;
  }

  .seizoen-kaart:nth-child(2) {
    border-right: none;
  }

  .seizoen-kaart-inhoud h3 {
    font-size: 32px;
  }

  /* Over banner homepage */
  .over-banner {
    grid-template-columns: 1fr;
    padding: 60px 6%;
    gap: 40px;
  }

  .over-banner-tekst h2 {
    font-size: 36px;
  }

  .over-banner-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  /* Proces */
  .proces-sectie {
    padding: 60px 6%;
  }

  .proces-stappen {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .proces-pijl {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .proces-stap {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  /* Nieuwsbrief */
  .nieuwsbrief-sectie {
    padding: 60px 6%;
  }

  .nieuwsbrief-form {
    flex-direction: column;
    align-items: stretch;
  }

  .nieuwsbrief-form input {
    width: 100%;
  }

  /* Footer */
  .footer-inhoud {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 6%;
  }

  .footer-kolom:first-child {
    grid-column: 1 / -1;
  }

  /* Collectie keuzepagina */
  .collectie-keuze {
    flex-direction: column;
  }

  .collectie-kaart {
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    padding: 50px 6%;
  }

  .collectie-kaart h2 {
    font-size: 50px;
  }

  /* Producten grid */
  .producten-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  /* Algemeen pagina header */
  .pagina-header {
    padding: 60px 6%;
  }

  .pagina-header h1 {
    font-size: 38px;
  }

  /* Contact */
  .contact-sectie {
    flex-direction: column;
    padding: 60px 6%;
  }

  .contact-sectie-nieuw {
    grid-template-columns: 1fr;
  }

  .contact-info-nieuw {
    padding: 60px 6%;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    gap: 30px;
  }

  .contact-form-nieuw {
    padding: 60px 6%;
  }

  .contact-form-nieuw h2 {
    font-size: 34px;
  }

  /* Product detailpagina */
  .product-pagina {
    flex-direction: column;
    min-height: auto;
  }

  .product-pagina-foto {
    width: 100%;
    min-width: 0;
    min-height: 360px;
  }

  .product-pagina-foto img {
    height: 360px;
    object-fit: cover;
  }

  .product-pagina-info {
    width: 100%;
    min-width: 0;
    padding: 40px 6%;
  }

  .product-pagina-info h1 {
    font-size: 38px;
  }

  /* Zoeken */
  .zoek-sectie {
    padding: 40px 6%;
  }

  /* Blog */
  .blog-sectie {
    padding: 60px 6%;
  }

  .blog-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .blog-featured-foto {
    min-height: 260px;
  }

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

  .blog-grid-secundair {
    grid-template-columns: 1fr;
  }

  .blog-producten-grid {
    grid-template-columns: 1fr;
  }

  /* Blog artikel */
  .artikel-sectie {
    grid-template-columns: 1fr;
    padding: 40px 6% 80px;
    gap: 40px;
  }

  .artikel-zijbalk {
    display: none;
  }

  /* Seizoenspagina navigatie */
  .seizoen-nav-knoppen {
    gap: 6px;
    padding: 20px 4%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .seizoen-nav-knop {
    padding: 8px 16px;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* Sorteer balk */
  .sorteer-balk {
    padding: 14px 4%;
    gap: 6px;
    flex-wrap: wrap;
  }

  .sorteer-knop {
    padding: 7px 12px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .sorteer-label {
    width: 100%;
    margin-bottom: 4px;
  }

  /* Product kaart — kleiner op mobiel */
  .product-kaart-foto {
    aspect-ratio: 4/5;
  }
  .product-info {
    padding: 14px 16px 18px;
  }
  .product-info h3 {
    font-size: 13px;
  }
  .product-prijs {
    font-size: 12px;
  }
  .mp-naam {
    font-size: 14px !important;
  }
  .mp-inspired, .mp-voorraad {
    font-size: 9px !important;
  }
  .mp-info {
    padding: 14px 16px 18px !important;
  }
  .mp-prijs-blok {
    margin-top: 10px !important;
  }

  /* Over ons pagina */
  .over-hero-inhoud h1 {
    font-size: 38px;
  }

  .verhaal-sectie {
    grid-template-columns: 1fr;
    padding: 60px 6%;
    gap: 40px;
  }

  .verhaal-tekst h2,
  .verhaal-citaat .citaat-tekst {
    font-size: 28px;
  }

  .stats-banner {
    flex-wrap: wrap;
    padding: 60px 6%;
    gap: 0;
  }

  .stats-banner-stat {
    width: 50%;
    padding: 30px 0;
    border-bottom: 1px solid #1a1a1a;
  }

  .stats-banner-stat h2 {
    font-size: 48px;
  }

  .stats-banner-scheiding {
    display: none;
  }

  .belofte-sectie {
    padding: 60px 6%;
  }

  .belofte-inhoud h2 {
    font-size: 36px;
  }

  .belofte-lijst {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .over-cta {
    padding: 60px 6%;
  }

  .over-cta h2 {
    font-size: 36px;
  }

  /* Waarden grid */
  .waarden-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Offerte pagina */
  .offerte-sectie {
    grid-template-columns: 1fr;
  }

  .offerte-info {
    padding: 60px 6%;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
  }

  .offerte-form {
    padding: 60px 6%;
  }

  /* Mandje / wishlist */
  .mandje-sectie,
  .wishlist-sectie {
    padding: 60px 6%;
  }

  .mandje-inhoud {
    flex-direction: column;
  }

  .mandje-items,
  .mandje-samenvatting {
    width: 100%;
  }

  /* Afrekenen */
  .afrekenen-sectie {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 6%;
  }

  .form-rij {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 420px) {
  .producten-grid {
    grid-template-columns: 1fr;
  }

  .seizoen-nav-knoppen {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .seizoen-nav-knop {
    text-align: center;
  }
}

/* ════════════════════════════════════════
   LAADANIMATIE
════════════════════════════════════════ */
.laad-scherm {
  position: fixed;
  inset: 0;
  background: url('images/marmer.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.laad-scherm.verborgen { opacity: 0; pointer-events: none; }

.laad-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 2, 0.82);
  pointer-events: none;
}
.laad-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* Hoekfleurs (absolute) */
.laad-fh {
  position: absolute;
  width: 28px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
  animation: laadFadeIn 0.8s ease 1.3s forwards;
}
.laad-fh--tl { top: 44px; left: 52px; }
.laad-fh--tr { top: 44px; right: 52px; transform: scaleX(-1); }
.laad-fh--bl { bottom: 44px; left: 52px; transform: scaleY(-1); }
.laad-fh--br { bottom: 44px; right: 52px; transform: scale(-1); }

/* Centrum blok */
.laad-centrum {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Fleur groottes */
.laad-f {
  height: auto;
  display: block;
  filter: drop-shadow(0 0 5px rgba(212,175,55,0.55));
  flex-shrink: 0;
}
.laad-f--xs { width: 20px; opacity: 0.7; }
.laad-f--s  { width: 26px; opacity: 0.85; }
.laad-f--m  { width: 34px; opacity: 1; filter: drop-shadow(0 0 10px rgba(212,175,55,0.8)) drop-shadow(0 0 25px rgba(212,175,55,0.3)); animation: laadPuls 3s ease-in-out 1.5s infinite; }
.laad-f--flip { transform: scaleX(-1); }

@keyframes laadPuls {
  0%,100% { filter: drop-shadow(0 0 8px rgba(212,175,55,0.7)) drop-shadow(0 0 20px rgba(212,175,55,0.25)); }
  50%     { filter: drop-shadow(0 0 18px rgba(212,175,55,1))   drop-shadow(0 0 45px rgba(212,175,55,0.5)); }
}

/* Rij boven */
.laad-rij-boven {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 16px;
  opacity: 0;
  animation: laadOmhoog 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

/* Volledige gouden lijn */
.laad-lijn-vol {
  width: 260px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.6) 20%, rgba(212,175,55,0.6) 80%, transparent);
  opacity: 0;
  animation: laadFadeIn 0.6s ease 0.7s forwards;
  margin: 14px 0;
}

/* Merknaam */
.laad-merk {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  background: linear-gradient(100deg, #c9a84c 0%, #f5e6a3 30%, #d4af37 50%, #eedfa0 70%, #b8913a 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: laadMerkReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s forwards, laadShimmer 3.5s linear 2s infinite;
}
@keyframes laadMerkReveal {
  from { opacity: 0; letter-spacing: 0px; }
  to   { opacity: 1; letter-spacing: 14px; }
}
@keyframes laadShimmer {
  to { background-position: 250% center; }
}

/* Middenlijn met PARFUMS */
.laad-midden-rij {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: laadOmhoog 0.7s cubic-bezier(0.16,1,0.3,1) 1s forwards;
  margin-bottom: 10px;
}
.laad-subtitel {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.75);
}

/* Tagline */
.laad-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(232,217,192,0.45);
  letter-spacing: 1.5px;
  opacity: 0;
  animation: laadOmhoog 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
  margin-bottom: 14px;
}

/* Rij onder */
.laad-rij-onder {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  opacity: 0;
  animation: laadOmhoog 0.9s cubic-bezier(0.16,1,0.3,1) 1.2s forwards;
}

@keyframes laadFadeIn {
  to { opacity: 1; }
}
@keyframes laadOmhoog {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Voortgangsbalk */
.laad-balk {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(212,175,55,0.08);
}
.laad-balk-lijn {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, transparent, #d4af37, rgba(212,175,55,0.3));
  animation: laadBalk 2.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
@keyframes laadBalk {
  0%   { width: 0%; }
  60%  { width: 72%; }
  100% { width: 100%; }
}
/* ROOD LUXE HARTJE IN NAVIGATIE */
.wishlist-nav {
  font-size: 20px;
  text-decoration: none;
  color: #c0392b;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

.wishlist-nav:hover {
  color: #e74c3c;
  text-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
  transform: scale(1.2);
}

.wishlist-aantal {
  background-color: #c0392b;
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 500;
}

/* CADEAUVERPAKKING */
.cadeau-sectie {
  border: 1px solid #222;
  padding: 20px;
  margin-top: 15px;
}

.cadeau-label {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  cursor: pointer;
}

.cadeau-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: gold;
  cursor: pointer;
  flex-shrink: 0;
}

.cadeau-tekst {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cadeau-titel {
  color: #f0e6d3;
  font-size: 14px;
  letter-spacing: 1px;
}

.cadeau-beschrijving {
  color: #555;
  font-size: 12px;
  line-height: 1.6;
}

.cadeau-bericht-vak {
  margin-top: 15px;
}

.cadeau-bericht-vak textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: #f0e6d3;
  padding: 10px 0;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  resize: none;
  height: 80px;
}

.cadeau-bericht-vak textarea:focus {
  border-bottom-color: gold;
}

/* AFREKENEN PAGINA */
.afrekenen-sectie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 10%;
}

.afrekenen-formulier h2 {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: gold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.afrekenen-formulier input,
.afrekenen-formulier select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: #f0e6d3;
  padding: 12px 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  margin-bottom: 20px;
  display: block;
}

.afrekenen-formulier input:focus,
.afrekenen-formulier select:focus {
  border-bottom-color: gold;
}

.afrekenen-formulier select option {
  background: #111;
  color: #f0e6d3;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.korting-sectie {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.korting-sectie input {
  flex: 1;
  margin-bottom: 0;
}

.korting-melding {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.korting-melding.succes { color: #4caf50; }
.korting-melding.fout { color: #f44336; }

.bestel-overzicht {
  background: #111;
  border: 1px solid #1a1a1a;
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.bestel-overzicht h2 {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: gold;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.overzicht-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
  color: #aaa;
}

.overzicht-totaal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.overzicht-rij {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #aaa;
}

.overzicht-totaal h3 {
  font-size: 22px;
  font-weight: 300;
  color: gold;
  margin-top: 15px;
}

/* VOORRAAD INDICATOR */
.voorraad-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.voorraad-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.voorraad-dot.op-voorraad { background-color: #4caf50; }
.voorraad-dot.laag { background-color: #ff9800; }
.voorraad-dot.uitverkocht { background-color: #f44336; }

.voorraad-tekst.op-voorraad { color: #4caf50; }
.voorraad-tekst.laag { color: #ff9800; }
.voorraad-tekst.uitverkocht { color: #f44336; }

/* VOORRAAD INDICATOR KLEIN */
.voorraad-indicator-klein {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.voorraad-indicator-klein.op-voorraad { color: #4caf50; }
.voorraad-indicator-klein.laag { color: #ff9800; }
.voorraad-indicator-klein.uitverkocht { color: #f44336; }

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-achtergrond {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30,25,5,1) 0%, #080808 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,175,55,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212,175,55,0.03) 0%, transparent 70%);
  z-index: 0;
}

.hero-achtergrond::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212,175,55,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 70%, rgba(212,175,55,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(212,175,55,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(212,175,55,0.12) 0%, transparent 100%);
  background-size: 300px 300px;
  opacity: 0.6;
}

.hero-achtergrond::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulseer 5s ease-in-out infinite;
}

@keyframes pulseer {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floating particles in hero */
.hero-deeltje {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: drijfOmhoog var(--dur) ease-in-out var(--del) infinite;
}

@keyframes drijfOmhoog {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0); }
  15%  { opacity: 0.7; transform: translateY(-30px) translateX(var(--dx, 10px)) scale(1); }
  85%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-180px) translateX(var(--dx2, -10px)) scale(0.3); }
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  animation: fadeInUp 1s ease 0.15s both;
}

.hero-ornament-lijn {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.45));
}

.hero-ornament-lijn.rechts {
  background: linear-gradient(90deg, rgba(212,175,55,0.45), transparent);
}

.hero-ornament-ster {
  color: rgba(212,175,55,0.55);
  font-size: 11px;
  letter-spacing: 5px;
}

.hero-inhoud {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-label {
  font-size: 9px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.65);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 1.05;
  color: #ede0cc;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-titel em {
  color: gold;
  font-style: italic;
}

.hero-subtitel {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #555;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 2;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-knoppen {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-knop-tweede {
  color: #444;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.35s, letter-spacing 0.35s;
}

.hero-knop-tweede:hover {
  color: gold;
  letter-spacing: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeInUp 1s ease 1.3s both;
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #2a2a2a;
}

.hero-scroll-lijn {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.5), transparent);
  animation: scrollLijn 2.5s ease-in-out infinite;
}

@keyframes scrollLijn {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* KENMERKEN */
.kenmerken-sectie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.kenmerk {
  padding: 52px 30px;
  text-align: center;
  border-right: 1px solid #111;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.kenmerk::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 50%;
  height: 1px;
  background: gold;
  opacity: 0;
  transition: left 0.4s ease, right 0.4s ease, opacity 0.4s ease;
}

.kenmerk:hover::before {
  left: 0; right: 0; opacity: 0.35;
}

.kenmerk:hover {
  background: rgba(212,175,55,0.025);
}

.kenmerk:last-child {
  border-right: none;
}

.kenmerk-icoon {
  color: gold;
  font-size: 18px;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform 0.5s ease;
  opacity: 0.7;
}

.kenmerk:hover .kenmerk-icoon {
  transform: rotate(90deg) scale(1.1);
  opacity: 1;
}

.kenmerk h3 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.kenmerk:hover h3 {
  color: gold;
}

.kenmerk p {
  font-size: 11px;
  color: #3a3a3a;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* COLLECTIE BANNER */
.collectie-banner {
  padding: 120px 10%;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
}

.collectie-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  font-weight: 300;
  font-style: italic;
  color: #f0e6d3;
  margin: 20px 0;
}

.collectie-banner p {
  color: #555;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.collectie-banner-knoppen {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.knop-wit {
  background: transparent !important;
  border: 1px solid #333 !important;
  color: #f0e6d3 !important;
}

.knop-wit:hover {
  border-color: gold !important;
  color: gold !important;
}

/* SEIZOENEN */
.seizoenen-sectie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 420px;
}

.seizoen-kaart {
  position: relative;
  overflow: hidden;
  border-right: 1px solid #111;
  display: flex;
  align-items: flex-end;
  padding: 44px;
  background: #080808;
  transition: background 0.6s ease;
}

.seizoen-kaart:last-child { border-right: none; }

/* Seasonal tints */
.seizoen-kaart:nth-child(1) { --s-kleur: rgba(100,170,70,0.06); --s-accent: rgba(100,170,70,0.5); }
.seizoen-kaart:nth-child(2) { --s-kleur: rgba(220,160,50,0.06); --s-accent: rgba(220,160,50,0.5); }
.seizoen-kaart:nth-child(3) { --s-kleur: rgba(180,80,30,0.07); --s-accent: rgba(180,80,30,0.5); }
.seizoen-kaart:nth-child(4) { --s-kleur: rgba(60,110,200,0.06); --s-accent: rgba(80,140,220,0.5); }

.seizoen-kaart::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--s-kleur);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.seizoen-kaart:hover::after { opacity: 1; }

/* Bottom line */
.seizoen-kaart::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--s-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}

.seizoen-kaart:hover::before { transform: scaleX(1); }

/* Vertical side accent */
.seizoen-kaart-inhoud {
  position: relative;
  z-index: 2;
  padding-left: 16px;
  border-left: 1px solid transparent;
  transition: border-color 0.5s ease, padding-left 0.4s ease;
}

.seizoen-kaart:hover .seizoen-kaart-inhoud {
  border-left-color: var(--s-accent);
  padding-left: 20px;
}

.seizoen-kaart-inhoud h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  color: #d8cabb;
  margin-bottom: 8px;
  transition: color 0.35s;
}

.seizoen-kaart:hover .seizoen-kaart-inhoud h3 { color: #ede0cc; }

.seizoen-kaart-inhoud p {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 22px;
  transition: color 0.35s;
}

.seizoen-kaart:hover .seizoen-kaart-inhoud p { color: #555; }

.seizoen-link {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a2a;
  text-decoration: none;
  transition: color 0.35s, letter-spacing 0.35s;
  display: inline-block;
}

.seizoen-kaart:hover .seizoen-link {
  color: gold;
  letter-spacing: 4px;
}

/* OVER BANNER */
.over-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 10%;
  align-items: center;
}

.over-banner-tekst .sectie-label {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
}

.over-banner-tekst h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin-bottom: 25px;
}

.over-banner-tekst h2 em {
  color: gold;
  font-style: italic;
}

.over-banner-tekst p {
  color: #555;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 1px;
}

.over-banner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.over-stat {
  text-align: center;
  padding: 44px 30px;
  border: 1px solid #111;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.over-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.over-stat:hover { background: rgba(212,175,55,0.02); }
.over-stat:hover::before { opacity: 1; }

.over-stat h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: gold;
  margin-bottom: 10px;
  line-height: 1;
  transition: text-shadow 0.3s;
}

.over-stat:hover h3 {
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.over-stat p {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #333;
}

/* PROCES */
.proces-sectie {
  padding: 120px 10%;
  background: #080808;
}

.proces-header {
  text-align: center;
  margin-bottom: 80px;
}

.proces-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
}

.proces-header h2 em {
  color: gold;
  font-style: italic;
}

.proces-stappen {
  display: flex;
  align-items: center;
  gap: 20px;
}

.proces-stap {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #1a1a1a;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
  cursor: default;
}

.proces-stap:hover {
  border-color: gold;
  transform: scale(1.06);
  box-shadow: 0 8px 40px rgba(212,175,55,0.08);
  z-index: 1;
  position: relative;
}

.stap-nummer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.proces-stap:hover .stap-nummer {
  color: gold;
}

.proces-stap h3 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0e6d3;
  margin-bottom: 12px;
}

.proces-stap p {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
}

.proces-pijl {
  color: #222;
  font-size: 24px;
  flex-shrink: 0;
}

/* NIEUWSBRIEF */
.nieuwsbrief-sectie {
  padding: 120px 10%;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.nieuwsbrief-sectie h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin: 20px 0;
}

.nieuwsbrief-sectie h2 em {
  color: gold;
  font-style: italic;
}

.nieuwsbrief-sectie p {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

.nieuwsbrief-form input {
  flex: 1;
  background: transparent;
  border: 1px solid #333;
  border-right: none;
  color: #f0e6d3;
  padding: 15px 20px;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  outline: none;
}

.nieuwsbrief-form input:focus {
  border-color: gold;
}

.nieuwsbrief-form .knop {
  border-radius: 0;
}

/* OVER HERO */
.over-hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.over-hero-achtergrond {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, #1a1200 0%, #0d0d0d 70%);
}

.over-hero-achtergrond::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseer 4s ease-in-out infinite;
}

.over-hero-inhoud {
  z-index: 1;
  padding: 0 20px;
}

/* VERHAAL */
.verhaal-sectie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 10%;
  align-items: center;
}

.verhaal-tekst .sectie-label {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
}

.verhaal-tekst h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin-bottom: 25px;
}

.verhaal-tekst h2 em {
  color: gold;
  font-style: italic;
}

.verhaal-tekst p {
  color: #555;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 1px;
}

.verhaal-citaat {
  padding: 50px;
  border: 1px solid #1a1a1a;
  position: relative;
}

.citaat-lijn {
  width: 40px;
  height: 2px;
  background: gold;
  margin-bottom: 30px;
}

.citaat-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: #f0e6d3;
  line-height: 1.6;
  margin-bottom: 25px;
}

.citaat-auteur {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: gold;
}

/* WAARDEN */
.waarden-sectie {
  padding: 120px 10%;
  background: #080808;
}

.waarden-header {
  text-align: center;
  margin-bottom: 70px;
}

.waarden-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  font-weight: 300;
  color: #f0e6d3;
}

.waarden-header h2 em {
  color: gold;
  font-style: italic;
}

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

.waarde-kaart {
  padding: 40px 30px;
  border: 1px solid #1a1a1a;
  transition: border-color 0.3s;
}

.waarde-kaart:hover {
  border-color: gold;
}

.waarde-nummer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.waarde-kaart:hover .waarde-nummer {
  color: gold;
}

.waarde-kaart h3 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0e6d3;
  margin-bottom: 15px;
}

.waarde-kaart p {
  font-size: 12px;
  color: #444;
  line-height: 1.8;
}

/* STATS BANNER */
.stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.stats-banner-stat {
  flex: 1;
  text-align: center;
}

.stats-banner-stat h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  font-weight: 300;
  color: gold;
  margin-bottom: 10px;
}

.stats-banner-stat p {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
}

.stats-banner-scheiding {
  width: 1px;
  height: 80px;
  background: #1a1a1a;
}

/* BELOFTE */
.belofte-sectie {
  padding: 120px 10%;
}

.belofte-inhoud .sectie-label {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
}

.belofte-inhoud h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin-bottom: 60px;
}

.belofte-inhoud h2 em {
  color: gold;
  font-style: italic;
}

.belofte-lijst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.belofte-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #1a1a1a;
  transition: border-color 0.3s;
}

.belofte-item:hover {
  border-color: gold;
}

.belofte-icoon {
  color: gold;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.belofte-item h3 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0e6d3;
  margin-bottom: 12px;
}

.belofte-item p {
  font-size: 12px;
  color: #444;
  line-height: 1.8;
}

/* OVER CTA */
.over-cta {
  padding: 120px 10%;
  text-align: center;
  background: #080808;
}

.over-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin: 20px 0;
}

.over-cta h2 em {
  color: gold;
  font-style: italic;
}

.over-cta p {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8;
}

/* ADMIN LINK */
.admin-link {
  display: block;
  text-align: center;
  color: #1a1a1a;
  font-size: 10px;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s;
}

.admin-link:hover {
  color: #333;
}

/* FAQ PAGINA */
.faq-sectie {
  padding: 80px 10%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-categorie {
  margin-bottom: 60px;
}

.faq-categorie-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: gold;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #111;
}

.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  color: #f0e6d3;
  padding: 22px 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-vraag:hover {
  color: gold;
}

.faq-icoon {
  font-size: 20px;
  color: gold;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-icoon.open {
  transform: rotate(45deg);
}

.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-antwoord.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-antwoord p {
  color: #555;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 1px;
}

.faq-cta {
  padding: 100px 10%;
  text-align: center;
  background: #080808;
  border-top: 1px solid #1a1a1a;
}

.faq-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin: 20px 0;
}

.faq-cta h2 em {
  color: gold;
  font-style: italic;
}

.faq-cta p {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8;
}

/* FAQ PAGINA */
.faq-sectie {
  padding: 80px 10%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-categorie {
  margin-bottom: 60px;
}

.faq-categorie-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: gold;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #111;
}

.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  color: #f0e6d3;
  padding: 22px 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-vraag:hover {
  color: gold;
}

.faq-icoon {
  font-size: 20px;
  color: gold;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-icoon.open {
  transform: rotate(45deg);
}

.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-antwoord.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-antwoord p {
  color: #555;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 1px;
}

.faq-cta {
  padding: 100px 10%;
  text-align: center;
  background: #080808;
  border-top: 1px solid #1a1a1a;
}

.faq-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin: 20px 0;
}

.faq-cta h2 em {
  color: gold;
  font-style: italic;
}

.faq-cta p {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8;
}
EOFMARKEcat > /Users/mansouri/Sites/localhost/mijneerstesite/contact.html << 'EOFMARKER'
<!DOCTYPE html>
<html lang="nl">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact | Mansouri Parfums</title>
    <link rel="stylesheet" href="stijl.css">
  </head>
  <body>
    <header>
      <nav>
        <div class="logo">Mansouri Parfums</div>
        <button class="menu-knop">☰</button>
        <ul>
          <li><a href="index.html">Home</a></li>
          <li><a href="producten.html">Collectie</a></li>
          <li><a href="over-ons.html">Over Ons</a></li>
          <li><a href="faq.html">FAQ</a></li>
          <li><a href="contact.html">Contact</a></li>
          <li><a href="zoeken.html" class="zoek-nav">🔍</a></li>
          <li><a href="wishlist.html" class="wishlist-nav">♥ <span class="wishlist-aantal">0</span></a></li>
          <li><a href="mandje.html" class="mandje-knop">👜 <span class="mandje-aantal">0</span></a></li>
        </ul>
      </nav>
    </header>

    <section class="over-hero">
      <div class="over-hero-achtergrond"></div>
      <div class="over-hero-inhoud">
        <p class="hero-label">Wij horen graag van u</p>
        <h1 class="hero-titel">Neem contact<br><em>met ons op</em></h1>
        <p class="hero-subtitel">Heeft u een vraag over onze parfums, een bestelling of iets anders? Wij reageren binnen 24 uur</p>
      </div>
    </section>

    <section class="contact-sectie-nieuw">
      <div class="contact-info-nieuw fade-up">
        <div class="contact-info-blok">
          <div class="contact-info-icoon">✦</div>
          <h3>E-mail</h3>
          <p>info@mansouriparfums.nl</p>
          <p style="color:#333; font-size:11px; margin-top:5px;">Wij reageren binnen 24 uur</p>
        </div>
        <div class="contact-info-blok">
          <div class="contact-info-icoon">✦</div>
          <h3>Telefoon</h3>
          <p>+31 20 123 4567</p>
          <p style="color:#333; font-size:11px; margin-top:5px;">Ma-Vr: 9:00 - 18:00</p>
        </div>
        <div class="contact-info-blok">
          <div class="contact-info-icoon">✦</div>
          <h3>Locatie</h3>
          <p>Amsterdam, Nederland</p>
          <p style="color:#333; font-size:11px; margin-top:5px;">Geen fysieke winkel</p>
        </div>
        <div class="contact-info-blok">
          <div class="contact-info-icoon">✦</div>
          <h3>Social Media</h3>
          <div style="display:flex; gap:15px; margin-top:10px;">
            <a href="#" style="color:#555; font-size:11px; letter-spacing:2px; text-decoration:none; text-transform:uppercase; transition:color 0.3s;" onmouseover="this.style.color='gold'" onmouseout="this.style.color='#555'">Instagram</a>
            <a href="#" style="color:#555; font-size:11px; letter-spacing:2px; text-decoration:none; text-transform:uppercase; transition:color 0.3s;" onmouseover="this.style.color='gold'" onmouseout="this.style.color='#555'">TikTok</a>
          </div>
        </div>
      </div>

      <div class="contact-form-nieuw fade-up">
        <p class="sectie-label">Stuur een bericht</p>
        <h2>Hoe kunnen wij<br><em>u helpen?</em></h2>
        <div class="contact-form">
          <div class="form-rij">
            <div class="form-groep">
              <label>Uw naam</label>
              <input type="text" id="contact-naam" placeholder="Volledige naam">
            </div>
            <div class="form-groep">
              <label>E-mailadres</label>
              <input type="email" id="contact-email" placeholder="uw@email.nl">
            </div>
          </div>
          <div class="form-groep">
            <label>Onderwerp</label>
            <input type="text" id="contact-onderwerp" placeholder="Waar gaat uw vraag over?">
          </div>
          <div class="form-groep">
            <label>Bericht</label>
            <textarea id="contact-bericht" placeholder="Uw bericht..." rows="6"></textarea>
          </div>
/* CONTACT PAGINA NIEUW */
.contact-sectie-nieuw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-info-nieuw {
  padding: 80px 60px;
  background: #080808;
  border-right: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
}

.contact-info-blok h3 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: gold;
  margin-bottom: 10px;
}

.contact-info-blok p {
  color: #f0e6d3;
  font-size: 16px;
  letter-spacing: 1px;
}

.contact-info-icoon {
  color: gold;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form-nieuw {
  padding: 80px 60px;
}

.contact-form-nieuw .sectie-label {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
}

.contact-form-nieuw h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 45px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin-bottom: 40px;
}

.contact-form-nieuw h2 em {
  color: gold;
  font-style: italic;
}

.form-groep {
  margin-bottom: 25px;
}

.form-groep label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 10px;
}

.form-groep input,
.form-groep textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: #f0e6d3;
  padding: 12px 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-groep input:focus,
.form-groep textarea:focus {
  border-bottom-color: gold;
}

/* POPUP */




.popup-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
}

.popup-inhoud {
  position: relative;
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 60px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  z-index: 1;
}

.popup-sluit {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: #444;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-sluit:hover { color: gold; }

.popup-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 20px;
}

.popup-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: #f0e6d3;
  margin-bottom: 20px;
}

.popup-titel em {
  color: gold;
  font-style: italic;
}

.popup-tekst {
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.popup-code {
  background: #111;
  border: 1px solid gold;
  color: gold;
  font-size: 24px;
  letter-spacing: 8px;
  padding: 15px 30px;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.popup-sub {
  color: #333;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* CURSOR ACHTER POPUP */


.popup-overlay {
  cursor: default;
}




/* CURSOR VERBERGEN BIJ POPUP */












/* DEEL KNOPPEN */
.deel-sectie {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #1a1a1a;
}

.deel-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 15px;
}

.deel-knoppen {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deel-knop {
  padding: 8px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #222;
  color: #555;
  transition: all 0.3s;
  background: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}

.deel-knop:hover {
  border-color: gold;
  color: gold;
}

.deel-whatsapp:hover { border-color: #25D366; color: #25D366; }
.deel-facebook:hover { border-color: #1877F2; color: #1877F2; }
.deel-twitter:hover { border-color: #1DA1F2; color: #1DA1F2; }

/* SORTEER BALK */
.sorteer-balk {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 10%;
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
}

.sorteer-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
}

.sorteer-knop {
  background: none;
  border: 1px solid #222;
  color: #555;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s;
}

.sorteer-knop:hover {
  border-color: gold;
  color: gold;
}

.sorteer-knop.actief {
  background: gold;
  border-color: gold;
  color: #0d0d0d;
}

/* PRODUCTAANBEVELINGEN */
.aanbevelingen-sectie {
  padding: 80px 10%;
  border-top: 1px solid #1a1a1a;
  background: #080808;
}

.aanbevelingen-header {
  text-align: center;
  margin-bottom: 50px;
}

.aanbevelingen-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 45px;
  font-weight: 300;
  color: #f0e6d3;
}

.aanbevelingen-header h2 em {
  color: gold;
  font-style: italic;
}


/* ============================================
   BLOG — OVERZICHTSPAGINA
   ============================================ */

.blog-sectie {
  padding: 80px 10% 100px;
}

/* Blog kaarten grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.blog-grid-secundair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

/* Kaart basis */
.blog-kaart {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: #080808;
  transition: background 0.3s;
  position: relative;
}

.blog-kaart:hover {
  background: #0f0f0f;
}

.blog-kaart-foto {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.blog-kaart-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}

.blog-kaart:hover .blog-kaart-foto img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.blog-categorie {
  position: absolute;
  top: 20px;
  left: 20px;
  background: gold;
  color: #0d0d0d;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}

.blog-kaart-inhoud {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #111;
  border-top: none;
}

.blog-datum {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 14px;
}

.blog-kaart-inhoud h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #d4c4a8;
  margin-bottom: 14px;
  line-height: 1.45;
  transition: color 0.3s;
  flex: 1;
}

.blog-kaart:hover h2 {
  color: gold;
}

.blog-kaart-inhoud p {
  font-size: 12px;
  color: #3d3d3d;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-lees-meer {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  transition: color 0.3s, letter-spacing 0.3s;
  margin-top: auto;
}

.blog-kaart:hover .blog-lees-meer {
  color: gold;
  letter-spacing: 4px;
}

/* Featured artikel — groot bovenaan */
.blog-featured {
  display: grid;
  grid-template-columns: 55% 45%;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2px;
  position: relative;
  min-height: 500px;
}

.blog-featured-foto {
  position: relative;
  overflow: hidden;
}

.blog-featured-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.75);
}

.blog-featured:hover .blog-featured-foto img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.blog-featured-inhoud {
  padding: 60px 55px;
  background: #080808;
  border: 1px solid #111;
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-label {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 25px;
}

.blog-featured-inhoud .blog-datum {
  margin-bottom: 18px;
}

.blog-featured-inhoud h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: #e8d9c0;
  line-height: 1.35;
  margin-bottom: 22px;
  transition: color 0.3s;
}

.blog-featured:hover h2 {
  color: gold;
}

.blog-featured-inhoud > p {
  font-size: 13px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 35px;
}

.blog-featured-inhoud .blog-lees-meer {
  align-self: flex-start;
}

/* Uitgelichte producten sectie */
.blog-producten-spotlight {
  padding: 80px 0 20px;
  border-top: 1px solid #111;
  margin-top: 80px;
}

.spotlight-label {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 15px;
}

.spotlight-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: #e8d9c0;
  text-align: center;
  margin-bottom: 55px;
}

.blog-producten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.blog-product-kaart {
  background: #080808;
  display: block;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
  border: 1px solid #111;
}

.blog-product-kaart:hover {
  background: #0f0f0f;
}

.blog-product-foto {
  height: 320px;
  overflow: hidden;
}

.blog-product-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}

.blog-product-kaart:hover .blog-product-foto img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.blog-product-info {
  padding: 22px 28px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-product-naam {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8b89a;
}

.blog-product-prijs {
  font-size: 14px;
  color: gold;
  font-family: 'Cormorant Garamond', serif;
}

.blog-product-knop {
  display: block;
  margin: 14px 28px 28px;
  padding: 13px;
  background: transparent;
  border: 1px solid #1e1e1e;
  color: #444;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.blog-product-knop:hover {
  border-color: gold;
  color: gold;
}


/* ============================================
   BLOG — ARTIKELPAGINA
   ============================================ */

/* Hero */
.artikel-hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
}

.artikel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transform: scale(1.02);
  transition: transform 6s ease;
}

.artikel-hero img.geladen {
  transform: scale(1);
}

.artikel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 10% 70px;
}

.artikel-hero-overlay .blog-categorie {
  position: static;
  display: inline-block;
  margin-bottom: 22px;
  align-self: flex-start;
}

.artikel-hero-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 300;
  color: #f0e6d3;
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 20px;
}

.artikel-hero-overlay .blog-datum {
  font-size: 10px;
  letter-spacing: 3px;
  color: #666;
  margin: 0;
}

/* Terug-link boven het artikel */
.artikel-terug {
  padding: 30px 10% 0;
}

.artikel-terug a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.artikel-terug a:hover {
  color: gold;
}

/* Hoofd layout */
.artikel-sectie {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  padding: 60px 10% 100px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Artikel tekst */
.artikel-inhoud {
  min-width: 0;
}

.artikel-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #c8b89a;
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
}

.artikel-inhoud h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: #e8d9c0;
  margin: 50px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.artikel-inhoud h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: gold;
}

.artikel-inhoud p {
  color: #8a7a6a;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 22px;
}

.artikel-inhoud blockquote {
  border-left: 2px solid gold;
  margin: 40px 0;
  padding: 20px 30px;
  background: #080808;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: #c8b89a;
  line-height: 1.7;
}

/* CTA onderaan artikel */
.artikel-cta {
  margin-top: 60px;
  padding: 50px;
  background: #080808;
  border: 1px solid #1a1a1a;
  text-align: center;
  position: relative;
}

.artikel-cta::before {
  content: '✦';
  display: block;
  color: gold;
  opacity: 0.4;
  font-size: 16px;
  margin-bottom: 20px;
}

.artikel-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #e8d9c0;
  margin-bottom: 25px;
}

/* Sidebar */
.artikel-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-blok {
  background: #080808;
  border: 1px solid #111;
  padding: 30px;
  margin-bottom: 2px;
}

.sidebar-blok h3 {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.7;
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #111;
}

.sidebar-link {
  display: block;
  color: #444;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid #0f0f0f;
  transition: color 0.3s, padding-left 0.3s;
}

.sidebar-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-link:hover {
  color: #c8b89a;
  padding-left: 6px;
}

/* Leesvoortgangbalk */
.lees-balk {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: gold;
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 1024px) {
  .artikel-sectie {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .artikel-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .blog-featured-foto {
    height: 320px;
  }
  .blog-featured-inhoud {
    padding: 35px 28px;
    border-left: 1px solid #111;
    border-top: none;
  }
  .blog-grid-secundair {
    grid-template-columns: 1fr;
  }
  .blog-producten-grid {
    grid-template-columns: 1fr;
  }
  .artikel-hero {
    height: 60vh;
  }
  .artikel-hero-overlay {
    padding: 0 6% 50px;
  }
  .artikel-hero-overlay h1 {
    font-size: 28px;
  }
  .artikel-sectie {
    padding: 40px 6% 60px;
  }
}

/* ════════════════════════════════════════
   MOBIEL OVERRIDES — onderaan zodat ze
   altijd de base styles overschrijven
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Seizoenen homepage — 2x2 grid */
  .seizoenen-sectie {
    grid-template-columns: 1fr 1fr !important;
    height: auto !important;
  }

  .seizoen-kaart {
    height: 180px !important;
    padding: 28px 20px !important;
    border-bottom: 1px solid #111 !important;
  }

  .seizoen-kaart:nth-child(2) {
    border-right: none !important;
  }

  .seizoen-kaart:nth-child(4) {
    border-right: none !important;
  }

  .seizoen-kaart-inhoud h3 {
    font-size: 28px !important;
  }

  .seizoen-kaart-inhoud p {
    font-size: 11px !important;
  }

  /* Over Mansouri Parfums sectie */
  .over-banner {
    grid-template-columns: 1fr !important;
    padding: 60px 6% !important;
    gap: 40px !important;
  }

  .over-banner-tekst h2 {
    font-size: 34px !important;
  }

  .over-banner-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2px !important;
  }

  .over-stat {
    padding: 30px 10px !important;
  }

  .over-stat h3 {
    font-size: 38px !important;
  }

  /* Verhaal sectie (over ons pagina) */
  .verhaal-sectie {
    grid-template-columns: 1fr !important;
    padding: 60px 6% !important;
    gap: 40px !important;
  }

  /* Stats banner (over ons pagina) */
  .stats-banner {
    flex-wrap: wrap !important;
    padding: 50px 6% !important;
  }

  .stats-banner-stat {
    width: 50% !important;
    padding: 24px 0 !important;
    border-bottom: 1px solid #1a1a1a !important;
  }

  .stats-banner-stat h2 {
    font-size: 44px !important;
  }

  .stats-banner-scheiding {
    display: none !important;
  }

  /* Belofte sectie */
  .belofte-sectie {
    padding: 60px 6% !important;
  }

  .belofte-lijst {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .belofte-inhoud h2 {
    font-size: 34px !important;
  }

  /* Over CTA */
  .over-cta {
    padding: 60px 6% !important;
  }

  .over-cta h2 {
    font-size: 34px !important;
  }

  /* Blog featured */
  .blog-featured {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .blog-featured-foto {
    min-height: 260px !important;
  }

  /* Blog grids */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-grid-secundair {
    grid-template-columns: 1fr !important;
  }

  .blog-producten-grid {
    grid-template-columns: 1fr !important;
  }

  /* Blog artikel */
  .artikel-sectie {
    grid-template-columns: 1fr !important;
    padding: 40px 6% 60px !important;
    gap: 30px !important;
  }

  .artikel-sidebar,
  .artikel-zijbalk {
    display: none !important;
  }

  /* Kenmerken sectie homepage */
  .kenmerken-sectie {
    grid-template-columns: 1fr 1fr !important;
  }

  .kenmerk {
    padding: 36px 16px !important;
  }

  /* Collectie keuze (heren/dames) */
  .collectie-keuze {
    flex-direction: column !important;
  }

  .collectie-kaart {
    min-height: 220px !important;
    border-right: none !important;
    border-bottom: 1px solid #1a1a1a !important;
    padding: 40px 6% !important;
  }

  /* Waarden grid */
  .waarden-grid {
    grid-template-columns: 1fr !important;
  }

  /* Product detail */
  .product-pagina {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .product-pagina-foto {
    min-width: 0 !important;
    min-height: 320px !important;
  }

  .product-pagina-foto img {
    height: 320px !important;
  }

  .product-pagina-info {
    min-width: 0 !important;
    padding: 40px 6% !important;
  }

  .product-pagina-info h1 {
    font-size: 36px !important;
  }

  /* Afrekenen */
  .afrekenen-sectie {
    grid-template-columns: 1fr !important;
    padding: 40px 6% !important;
    gap: 30px !important;
  }

  .form-rij {
    grid-template-columns: 1fr !important;
  }

  /* Contact nieuw */
  .contact-sectie-nieuw {
    grid-template-columns: 1fr !important;
  }

  .contact-info-nieuw {
    padding: 50px 6% !important;
    border-right: none !important;
    border-bottom: 1px solid #1a1a1a !important;
  }

  .contact-form-nieuw {
    padding: 50px 6% !important;
  }

  /* Offerte */
  .offerte-sectie {
    grid-template-columns: 1fr !important;
  }

  .offerte-info {
    padding: 50px 6% !important;
    border-right: none !important;
    border-bottom: 1px solid #1a1a1a !important;
  }

  .offerte-form {
    padding: 50px 6% !important;
  }

  /* Grote paddings verkleinen */
  .pagina-header {
    padding: 60px 6% !important;
  }

  .proces-sectie {
    padding: 60px 6% !important;
  }

  .nieuwsbrief-sectie {
    padding: 60px 6% !important;
  }

  .collectie-banner {
    padding: 60px 6% !important;
  }

  .faq-sectie {
    padding: 60px 6% !important;
  }
}

/* ════════════════════════════════════════
   MOBIEL SORTEER KNOP + POPUP
════════════════════════════════════════ */
.sorteer-fab,
.sorteer-overlay,
.sorteer-sheet {
  display: none;
}

@media (max-width: 768px) {
  /* Verberg de normale sorteer balk op mobiel */
  .sorteer-balk {
    display: none !important;
  }

  /* Zwevende sorteerknop */
  .sorteer-fab {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 28px;
    right: 20px;
    background: #0d0d0d;
    border: 1px solid rgba(212,175,55,0.35);
    color: rgba(212,175,55,0.85);
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s;
    pointer-events: none;
  }

  .sorteer-fab.zichtbaar {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sorteer-fab:active {
    background: rgba(212,175,55,0.08);
  }

  .sorteer-fab-icoon {
    font-size: 13px;
  }

  /* Overlay */
  .sorteer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .sorteer-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Bottom sheet */
  .sorteer-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(212,175,55,0.2);
    z-index: 2001;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    padding-bottom: env(safe-area-inset-bottom, 20px);
  }

  .sorteer-sheet.open {
    transform: translateY(0);
  }

  .sorteer-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #111;
  }

  .sorteer-sheet-titel {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(212,175,55,0.6);
  }

  .sorteer-sheet-sluit {
    background: none;
    border: none;
    color: #444;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }

  .sorteer-sheet-opties {
    padding: 8px 0 24px;
  }

  .sorteer-sheet-optie {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 16px 24px;
    color: #888;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #0f0f0f;
    transition: color 0.2s, background 0.2s;
  }

  .sorteer-sheet-optie:last-child {
    border-bottom: none;
  }

  .sorteer-sheet-optie:active {
    background: rgba(212,175,55,0.04);
  }

  .sorteer-sheet-optie.actief {
    color: rgba(212,175,55,0.9);
  }

  .sorteer-sheet-optie.actief::after {
    content: '✦';
    font-size: 8px;
    color: rgba(212,175,55,0.6);
  }
}

/* ════════════════════════════════════════
   MOBIEL NAV ICONEN
════════════════════════════════════════ */
.nav-mobiel-iconen {
  display: none;
}

@media (max-width: 768px) {
  .nav-mobiel-iconen {
    display: flex;
    align-items: center;
    gap: 2px;
    order: 2;
    margin-right: 8px;
  }

  .nav-mobiel-iconen li {
    list-style: none;
    border-bottom: none !important;
  }

  .nav-mobiel-iconen li a {
    display: flex !important;
    align-items: center;
    padding: 8px 10px !important;
    font-size: 15px !important;
    letter-spacing: 0 !important;
    color: #888 !important;
    transition: color 0.3s;
  }

  .nav-mobiel-iconen li a:hover,
  .nav-mobiel-iconen li a:active {
    color: rgba(212,175,55,0.8) !important;
  }

  .nav-mobiel-iconen .mandje-aantal,
  .nav-mobiel-iconen .wishlist-aantal {
    font-size: 9px;
    margin-left: 2px;
  }

  .menu-knop {
    order: 3 !important;
  }

  .logo {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .admin-link { display: none !important; }
}

/* Inspired by label */
.noot-inspired .noot-label {
  color: rgba(212,175,55,0.5);
  font-style: italic;
}
.noot-inspired .noot-waarde {
  color: rgba(212,175,55,0.7);
  font-style: italic;
}

/* Inspired by badge op productkaart foto */
.inspired-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,8,5,0.82);
  border: 1px solid rgba(212,175,55,0.35);
  color: #d4af37;
  font-size: 11px;
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  border-radius: 2px;
  max-width: calc(100% - 56px);
  white-space: normal;
  line-height: 1.4;
}

/* Marktprijs op productkaart en detailpagina */
.product-marktprijs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 12px;
  background: #0f0d09;
  border: 1px solid rgba(212,175,55,0.22);
  border-top: 2px solid rgba(212,175,55,0.55);
  font-family: 'Raleway', sans-serif;
  flex-wrap: wrap;
}
.product-marktprijs::before { display: none; }
.mp-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  flex: 0 0 100%;
  margin-bottom: 4px;
  text-decoration: none;
}
.mp-prijs {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: rgba(232,217,192,0.6);
  text-decoration: none;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}
.mp-prijs::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: rgba(212,60,60,0.7);
  transform: translateY(-50%);
  pointer-events: none;
}
.mp-bespaar {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
}
.product-pagina-info .product-marktprijs {
  margin-top: 4px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   HIDAYA SALAM — KWALITEITSUPGRADE
   Meer wit, betere zichtbaarheid, luxe gevoel op alle pagina's
═══════════════════════════════════════════════════════ */

/* ── PAGINA HEADERS — WIT EDITORIAAL ──────────────────── */
.pagina-header {
  background: #ffffff;
  border-bottom: 1px solid #ede9e1;
}
.pagina-header::before {
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(212,175,55,0.06), transparent 70%);
}
.pagina-header .sectie-label {
  color: #8a7a62;
  opacity: 1;
}
.pagina-header h1 {
  color: #1a1612;
  font-size: clamp(44px, 7vw, 86px);
}
.pagina-header p {
  color: #7a7060;
  letter-spacing: 3px;
}

/* Zachte fade na witte pagina-header naar donkere inhoud */
.pagina-header::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  pointer-events: none;
}

/* ── PRODUCT KAARTEN — WIT INFO GEDEELTE ────────────── */
.product-kaart-link { background: #ffffff; }
.product-kaart      { background: #ffffff; }
.product-kaart:hover { background: #faf8f4; }
.producten-grid {
  background: #ede9e1;
  gap: 1px;
}
.product-info {
  background: #ffffff;
  border-top: 1px solid #ede9e1;
  padding: 22px 24px 28px;
}
.product-kaart h3 {
  color: #1a1612;
  font-size: 21px;
}
.product-kaart:hover h3 { color: #b8913a; }
.product-omschrijving {
  color: #8a7a62;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.product-prijs {
  color: #b8913a;
  font-size: 17px;
}
.product-snel-knop {
  background: rgba(212,175,55,0.95);
  font-weight: 500;
}
.product-hart-overlay {
  background: rgba(255,255,255,0.88);
  border-color: #ede9e1;
  color: #b8913a;
}
.product-hart-overlay:hover,
.product-hart-overlay.actief {
  background: #ffffff;
  border-color: #d4af37;
  color: #d4af37;
}
.voorraad-indicator-klein.op-voorraad { color: #4a8a4a; }
.voorraad-indicator-klein.laag        { color: #b87820; }
.voorraad-indicator-klein.uitverkocht { color: #8a3030; }

/* ── PRODUCT DETAIL PAGINA ───────────────────────────── */
.product-categorie { color: rgba(255,255,255,0.5); }
.product-beschrijving { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 2.1; }
.product-scheiding { border-top-color: rgba(255,255,255,0.07); }
.maat-label  { color: rgba(255,255,255,0.55); }
.maat-knop   { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
.maat-knop:hover { border-color: rgba(212,175,55,0.45); color: rgba(212,175,55,0.85); }
.maat-knop.actief {
  border-color: rgba(212,175,55,0.6);
  color: rgba(212,175,55,0.95);
  background: rgba(212,175,55,0.06);
}
.noot        { border-bottom-color: rgba(255,255,255,0.07); }
.noot-label  { color: rgba(255,255,255,0.5); }
.noot-waarde { color: rgba(255,255,255,0.78); font-size: 14px; }
.terug-link  { color: rgba(255,255,255,0.35); }
.terug-link:hover { color: #d4af37; }

/* ── SORTEER BALK ────────────────────────────────────── */
.sorteer-balk   { background: #0c0c0c; border-bottom-color: rgba(255,255,255,0.06); }
.sorteer-label  { color: rgba(255,255,255,0.38); }
.sorteer-knop   { color: rgba(255,255,255,0.48); border-color: rgba(255,255,255,0.08); }
.sorteer-knop:hover { border-color: rgba(212,175,55,0.35); color: #d4af37; }
.sorteer-knop.actief { background: #d4af37; border-color: #d4af37; color: #050505; }

/* ── SEIZOEN PAGINA'S ────────────────────────────────── */
.seizoen-header p { color: rgba(255,255,255,0.48); }
.seizoen-nav-knop { color: rgba(255,255,255,0.52); border-color: rgba(255,255,255,0.1); }
.seizoen-nav-knop:hover,
.seizoen-nav-knop.actief { color: #d4af37; border-color: rgba(212,175,55,0.55); }

/* ── COLLECTIE KAARTEN ───────────────────────────────── */
.collectie-sub  { color: rgba(255,255,255,0.55); font-size: 14px; }
.collectie-link {
  color: rgba(255,255,255,0.42);
  border-bottom-color: rgba(255,255,255,0.15);
}
.collectie-kaart:hover .collectie-link { color: #d4af37; border-bottom-color: #d4af37; }

/* ── KENMERKEN STRIP ─────────────────────────────────── */
.kenmerk h3 { color: #d4af37; font-size: 20px; }
.kenmerk p  { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ── UITGELICHT GRID / BLOG KAARTEN ─────────────────── */
.kaart-beschrijving { color: rgba(255,255,255,0.55); }
.kaart-link         { color: rgba(255,255,255,0.5); }
.uitgelicht-info    { border-top-color: rgba(255,255,255,0.06); }

/* ── QUOTE SECTIE ────────────────────────────────────── */
blockquote     { color: rgba(255,255,255,0.92); font-size: 32px; }
.quote-auteur  { opacity: 0.8; }

/* ── STAP / PROCES ───────────────────────────────────── */
.stap p       { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 2; }
.stap-nummer  { opacity: 0.4; }

/* ── OVER ONS PAGINA ─────────────────────────────────── */
.home-over-tekst p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 2.1; }
.over-ons-blok p   { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 2.1; }
.waarde-kaart p    { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 2; }
.waarde-kaart h3   { font-size: 22px; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-vraag     { color: rgba(255,255,255,0.88); font-size: 16px; }
.faq-vraag:hover { color: #d4af37; }
.faq-antwoord p { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 2.1; }
.faq-item      { border-bottom-color: rgba(255,255,255,0.07); }
.faq-categorie h2 { color: #d4af37; }
.faq-contact p  { color: rgba(255,255,255,0.55); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-info p       { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 2.1; }
.contact-details p    { color: rgba(255,255,255,0.82); }
.contact-form input,
.contact-form textarea {
  border-bottom-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.22); }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: #d4af37; }

/* ── FORMULIEREN (AFREKENEN) ─────────────────────────── */
.form-groep label { color: rgba(255,255,255,0.52); }
.form-groep input,
.form-groep select {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
}
.form-groep input:focus,
.form-groep select:focus { border-bottom-color: #d4af37; }
.form-groep select option { background: #0d0d0d; }
.overzicht-item { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.07); }
.overzicht-rij  { color: rgba(255,255,255,0.55); border-bottom-color: rgba(255,255,255,0.07); }

/* ── MANDJE ──────────────────────────────────────────── */
.mandje-item      { border-bottom-color: rgba(255,255,255,0.07); }
.leeg-mandje      { color: rgba(255,255,255,0.28); }
.verwijder-knop   { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); }

/* ── NIEUWSBRIEF ─────────────────────────────────────── */
.nieuwsbrief-sub { color: rgba(255,255,255,0.6); font-size: 14px; }
.nieuwsbrief-form input {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}
.nieuwsbrief-form input::placeholder { color: rgba(255,255,255,0.25); }

/* ── ZOEKEN ──────────────────────────────────────────── */
.zoek-balk input::placeholder { color: rgba(255,255,255,0.22); }
.zoek-resultaten-tekst        { color: rgba(255,255,255,0.4); }
.filter-knop { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.1); }

/* ── BEDANKT PAGINA ──────────────────────────────────── */
.bedankt-inhoud p  { color: rgba(255,255,255,0.68); font-size: 15px; }
.bedankt-sub       { color: rgba(255,255,255,0.35) !important; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer-kolom h4      { color: rgba(255,255,255,0.82); letter-spacing: 4px; }
.footer-beschrijving  { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.9; }
.footer-links a       { color: rgba(255,255,255,0.52); font-size: 12.5px; }
.footer-links a:hover { color: #d4af37; }
.sociaal-link         { color: rgba(255,255,255,0.42); font-size: 12.5px; }
.sociaal-link:hover   { color: #d4af37; }
.footer-copy          { color: rgba(255,255,255,0.18); }

/* ── TAAL SWITCHER ───────────────────────────────────── */
.taal-naam { color: rgba(255,255,255,0.45); }
.taal-code { color: rgba(255,255,255,0.3); }
.taal-menu li:hover .taal-naam { color: rgba(255,255,255,0.72); }
.taal-menu li:hover .taal-code { color: #d4af37; }

/* ── MARKTPRIJS ZICHTBAARDER ─────────────────────────── */
.product-marktprijs { color: rgba(255,255,255,0.5); font-size: 15px; }
.product-marktprijs::before { background: rgba(255,255,255,0.3); }
.product-pagina-info .product-marktprijs { color: rgba(255,255,255,0.5); }

/* ── WISHLIST BADGE ──────────────────────────────────── */
.wishlist-aantal {
  background-color: #d4af37;
  color: #050505;
}

/* ── HERO SUBTITEL HELDERDER ─────────────────────────── */
.hero-sub { color: #b8b8b8; }

/* ── SEIZOEN KAARTEN (producten.html) ────────────────── */
.seizoen-kaart-inhoud p { color: rgba(255,255,255,0.5); }

/* ── BORDERS VERFIJNEN ───────────────────────────────── */
.mandje-item       { border-bottom-color: rgba(255,255,255,0.07); }
.product-scheiding { border-top-color: rgba(255,255,255,0.07); }
.contact-info      { border-right-color: rgba(255,255,255,0.07); }
.home-over-tekst   { border-right-color: rgba(255,255,255,0.07); }
.bestel-form       { border-right-color: rgba(255,255,255,0.07); }
.faq-categorie h2  { border-bottom-color: rgba(255,255,255,0.07); padding-bottom: 18px; }

/* ── ADMIN LINK ──────────────────────────────────────── */
.admin-link {
  display: block;
  text-align: center;
  padding: 12px;
  color: rgba(255,255,255,0.12);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.admin-link:hover { color: rgba(212,175,55,0.4); }

/* ═══════════════════════════════════════════════════════════
   HIDAYA SALAM — MEGA KWALITEITSUPGRADE v2
   Cinematische hero's · Witte secties · Perfecte typografie
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   OVER-HERO (over-ons · contact · faq)
   Volledig cinematisch als de homepage
───────────────────────────────────────────────────────── */
.over-hero {
  height: 90vh;
  min-height: 640px;
  background: #040404;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.over-hero-achtergrond {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(212,175,55,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(212,175,55,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 35% 55% at 85% 15%, rgba(212,175,55,0.03) 0%, transparent 60%);
}

/* Pulserende orb */
.over-hero-achtergrond::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulseer 9s ease-in-out infinite;
}

/* Gouden horizontale lijnen */
.over-hero::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.28), transparent);
  animation: lijnReveal 2.5s ease 0.5s both;
  z-index: 1;
}
.over-hero::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  bottom: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.28), transparent);
  animation: lijnReveal 2.5s ease 0.8s both;
  z-index: 1;
}

@keyframes lijnReveal {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.over-hero-inhoud {
  z-index: 2;
  padding: 0 32px;
  max-width: 860px;
  position: relative;
}

/* Eyebrow label boven de h1 */
.over-hero-inhoud .sectie-label {
  font-size: 9px;
  letter-spacing: 10px;
  color: rgba(212,175,55,0.75);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: inschuiven 1.2s ease 0.3s both;
}
.over-hero-inhoud .sectie-label::before,
.over-hero-inhoud .sectie-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(212,175,55,0.4);
  display: block;
}

.over-hero-inhoud h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: -1px;
  animation: inschuiven 1.5s ease 0.5s both;
  opacity: 0;
}
.over-hero-inhoud h1 em {
  font-style: italic;
  color: #d4af37;
  display: block;
}

.over-hero-inhoud p {
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  margin-top: 32px;
  animation: inschuiven 1.5s ease 0.8s both;
  opacity: 0;
}

/* Fade van hero naar witte sectie */
.over-hero + * {
  position: relative;
}
.over-hero + *::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #040404, transparent);
  pointer-events: none;
  z-index: 5;
}

/* ─────────────────────────────────────────────────────────
   VERHAAL SECTIE — WIT MET DONKERE TEKST
───────────────────────────────────────────────────────── */
.verhaal-sectie {
  background: #ffffff;
  border-bottom: 1px solid #ede9e1;
  padding: 120px 10%;
}

.verhaal-tekst .sectie-label {
  color: #8a7a62;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.verhaal-tekst .sectie-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #d4af37;
  display: block;
}

.verhaal-tekst h2 {
  color: #1a1612;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.verhaal-tekst h2 em { color: #b8913a; }

.verhaal-tekst p {
  color: #4a4438;
  font-size: 15px;
  line-height: 2.1;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.2px;
}

.verhaal-citaat {
  border: 1px solid #ede9e1;
  background: #f7f4ef;
  padding: 56px 50px;
  position: relative;
}
.verhaal-citaat::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(212,175,55,0.15);
  line-height: 1;
}

.citaat-lijn { background: #d4af37; width: 44px; height: 1px; margin-bottom: 32px; }

.citaat-tekst {
  font-size: 24px;
  color: #1a1612;
  line-height: 1.65;
  margin-bottom: 28px;
}
.citaat-auteur { color: #8a7a62; }

/* ─────────────────────────────────────────────────────────
   STATS BANNER — WIT MET GROTE DONKERE CIJFERS
───────────────────────────────────────────────────────── */
.stats-banner {
  background: #f7f4ef;
  border-top: 1px solid #ede9e1;
  border-bottom: 1px solid #ede9e1;
  padding: 100px 10%;
}

.stats-banner-stat h2 {
  font-size: 80px;
  color: #1a1612;
  line-height: 1;
  margin-bottom: 14px;
}
.stats-banner-stat h2 .teller { color: #1a1612; }

.stats-banner-stat p {
  color: #8a7a62;
  font-size: 9px;
  letter-spacing: 5px;
}

.stats-banner-scheiding {
  background: #d4af37;
  opacity: 0.3;
  width: 1px;
  height: 80px;
}

/* ─────────────────────────────────────────────────────────
   BELOFTE SECTIE — CRÈME ACHTERGROND
───────────────────────────────────────────────────────── */
.belofte-sectie {
  background: #ffffff;
  border-bottom: 1px solid #ede9e1;
  padding: 120px 10%;
}

.belofte-inhoud .sectie-label {
  color: #8a7a62;
  opacity: 1;
}
.belofte-inhoud h2 {
  color: #1a1612;
  font-size: clamp(36px, 4.5vw, 62px);
  letter-spacing: -0.5px;
  margin-bottom: 64px;
}
.belofte-inhoud h2 em { color: #b8913a; }

.belofte-item {
  background: #ffffff;
  border: 1px solid #ede9e1;
  padding: 36px 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.belofte-item:hover {
  border-color: rgba(212,175,55,0.5);
  background: #faf8f4;
  transform: translateY(-4px);
}

.belofte-icoon {
  color: #d4af37;
  font-size: 20px;
  margin-top: 2px;
}

.belofte-item h3 {
  color: #1a1612;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.belofte-item p {
  color: #5a5048;
  font-size: 13.5px;
  line-height: 2;
  font-family: 'Cormorant Garamond', serif;
}

/* ─────────────────────────────────────────────────────────
   WAARDEN SECTIE (over-ons)
───────────────────────────────────────────────────────── */
.waarden-sectie {
  background: #0a0804;
  padding: 120px 10%;
}
.waarden-header h2 { color: #ffffff; }
.waarden-header h2 em { color: #d4af37; }

.waarden-grid {
  background: transparent;
  border: none;
  gap: 24px;
}
.waarde-kaart {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 36px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.waarde-kaart:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.03);
  transform: translateY(-4px);
}
.waarde-nummer {
  color: rgba(212,175,55,0.2);
  font-size: 56px;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.waarde-kaart:hover .waarde-nummer { color: rgba(212,175,55,0.45); }
.waarde-kaart h3 { color: rgba(255,255,255,0.88); font-size: 11px; letter-spacing: 3px; }
.waarde-kaart p  { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 2; }

/* ─────────────────────────────────────────────────────────
   PROCES SECTIE (over-ons)
───────────────────────────────────────────────────────── */
.proces-sectie {
  background: #f7f4ef;
  border-bottom: 1px solid #ede9e1;
  padding: 120px 10%;
}
.proces-sectie h2 { color: #1a1612; }
.proces-sectie h2 em { color: #b8913a; font-style: italic; }

.stap-nummer { color: #d4af37; opacity: 0.3; }
.stap h3 { color: #1a1612; }
.stap p   { color: #5a5048; font-size: 14px; line-height: 2; }
.stap-lijn { background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.4), transparent); opacity: 1; }

/* Proces pijl scheiding */
.proces-pijl { color: rgba(212,175,55,0.3); font-size: 20px; margin-top: 20px; }

/* ─────────────────────────────────────────────────────────
   OVER CTA — DONKER MET GOUD
───────────────────────────────────────────────────────── */
.over-cta {
  background: #080604;
  padding: 140px 10%;
  position: relative;
  overflow: hidden;
}
.over-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,175,55,0.05), transparent 65%);
  pointer-events: none;
}
.over-cta .sectie-label  { color: rgba(212,175,55,0.75); opacity: 1; }
.over-cta h2 { color: #ffffff; font-size: clamp(40px, 5vw, 70px); letter-spacing: -0.5px; }
.over-cta h2 em { color: #d4af37; }
.over-cta p  { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 2; max-width: 520px; margin: 0 auto 40px; }

/* ─────────────────────────────────────────────────────────
   CONTACT SECTIE — WIT FORMULIER / DONKER INFO
───────────────────────────────────────────────────────── */
.contact-sectie-nieuw {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.contact-info-nieuw {
  background: #0c0a07;
  padding: 100px 64px;
  border-right: none;
  gap: 48px;
}

.contact-info-blok h3 {
  color: rgba(212,175,55,0.75);
  font-size: 9px;
  letter-spacing: 5px;
  margin-bottom: 12px;
}
.contact-info-blok p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.contact-info-icoon {
  color: rgba(212,175,55,0.5);
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-form-nieuw {
  background: #ffffff;
  padding: 100px 80px;
}
.contact-form-nieuw .sectie-label {
  color: #8a7a62;
  opacity: 1;
}
.contact-form-nieuw h2 {
  color: #1a1612;
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: -0.5px;
  margin-bottom: 44px;
}
.contact-form-nieuw h2 em { color: #b8913a; }

.contact-form-nieuw .form-groep label {
  color: #8a7a62;
  font-size: 9px;
  letter-spacing: 4px;
}
.contact-form-nieuw .form-groep input,
.contact-form-nieuw .form-groep textarea,
.contact-form-nieuw .form-groep select {
  border-bottom-color: #ede9e1;
  color: #1a1612;
  background: transparent;
  font-size: 16px;
}
.contact-form-nieuw .form-groep input::placeholder,
.contact-form-nieuw .form-groep textarea::placeholder { color: #c8bfb0; }
.contact-form-nieuw .form-groep input:focus,
.contact-form-nieuw .form-groep textarea:focus { border-bottom-color: #d4af37; }

/* ─────────────────────────────────────────────────────────
   FAQ SECTIE — WIT ACCORDION
───────────────────────────────────────────────────────── */
.faq-sectie {
  background: #ffffff;
  padding: 100px 10%;
}

.faq-categorie {
  margin-bottom: 72px;
}

.faq-categorie-titel {
  color: #1a1612;
  font-size: 36px;
  border-bottom: 1px solid #ede9e1;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-style: italic;
}

.faq-item { border-bottom: 1px solid #ede9e1; }

.faq-vraag {
  color: #1a1612;
  font-size: 16px;
  padding: 26px 0;
  letter-spacing: 0.3px;
  font-weight: 400;
}
.faq-vraag:hover { color: #b8913a; }

.faq-icoon { color: #d4af37; font-size: 22px; }
.faq-icoon.open { transform: rotate(45deg); }

.faq-antwoord p {
  color: #5a5048;
  font-size: 15px;
  line-height: 2.1;
  font-family: 'Cormorant Garamond', serif;
  padding-bottom: 28px;
}
.faq-antwoord.open { display: block; }

/* FAQ CTA */
.faq-cta {
  background: #080604;
  border-top: none;
  padding: 140px 10%;
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,175,55,0.05), transparent 65%);
  pointer-events: none;
}
.faq-cta .sectie-label { color: rgba(212,175,55,0.75); opacity: 1; }
.faq-cta h2  { color: #ffffff; font-size: clamp(38px, 5vw, 66px); letter-spacing: -0.5px; }
.faq-cta h2 em { color: #d4af37; }
.faq-cta p   { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 2; }

/* ─────────────────────────────────────────────────────────
   HELDEN SEIZOENSPAGINA'S (lente/zomer/herfst/winter)
───────────────────────────────────────────────────────── */
.pagina-header + .sorteer-balk {
  background: #0c0c0c;
}

/* Fade van witte header naar donkere producten */
.pagina-header {
  padding-bottom: 80px;
}

/* ─────────────────────────────────────────────────────────
   UITGELICHT SECTIE — KAARTEN OP WIT
───────────────────────────────────────────────────────── */
.uitgelicht-sectie {
  background: #ffffff;
  border-bottom: 1px solid #ede9e1;
}
.uitgelicht-sectie h2 {
  color: #1a1612;
  font-size: clamp(40px, 5vw, 68px);
}
.uitgelicht-sectie h2 em { color: #b8913a; }
.sectie-label { color: #8a7a62; opacity: 1; }

.uitgelicht-kaart {
  border-color: #ede9e1;
  background: #ffffff;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.uitgelicht-kaart:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.uitgelicht-info { border-top-color: #ede9e1; }
.uitgelicht-info h3 { color: #1a1612; }
.kaart-beschrijving { color: #8a7a62; }
.kaart-prijs { color: #b8913a; }
.kaart-link  { color: #9a8a72; }
.uitgelicht-kaart:hover .kaart-link { color: #b8913a; }

/* ─────────────────────────────────────────────────────────
   KENMERKEN SECTIE
───────────────────────────────────────────────────────── */
.kenmerken-sectie {
  background: #f0ece4;
  border-bottom: 1px solid #e0d8cc;
}
.kenmerk {
  border-right-color: #e0d8cc;
  transition: background 0.3s;
}
.kenmerk:hover { background: #ebe7de; }
.kenmerk h3   { color: #1a1612; font-size: 20px; }
.kenmerk p    { color: #5a5048; font-size: 13.5px; line-height: 2; }
.kenmerk-icon { color: #d4af37; }

/* ─────────────────────────────────────────────────────────
   QUOTE SECTIE (alle pagina's)
───────────────────────────────────────────────────────── */
.quote-sectie {
  background: #f7f4ef;
  border-bottom: 1px solid #ede9e1;
}
blockquote {
  color: #1a1612;
  font-size: 32px;
  line-height: 1.5;
}
.quote-lijn { background: #d4af37; opacity: 1; }
.quote-auteur { color: #8a7a62; opacity: 1; font-size: 10px; letter-spacing: 5px; }

/* ─────────────────────────────────────────────────────────
   NIEUWSBRIEF SECTIE
───────────────────────────────────────────────────────── */
.nieuwsbrief-sectie {
  background: #080604;
  position: relative;
  overflow: hidden;
}
.nieuwsbrief-sectie::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,175,55,0.05), transparent 65%);
  pointer-events: none;
}
.nieuwsbrief-sectie h2 { color: #ffffff; letter-spacing: -0.5px; }
.nieuwsbrief-sub       { color: rgba(255,255,255,0.62); font-size: 15px; }
.nieuwsbrief-form input {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.92);
}
.nieuwsbrief-form input::placeholder { color: rgba(255,255,255,0.25); }
.nieuwsbrief-form input:focus        { border-color: #d4af37; }
.nieuwsbrief-melding { color: #d4af37; }

/* ─────────────────────────────────────────────────────────
   COLLECTIE KEUZE (producten.html)
───────────────────────────────────────────────────────── */
.collectie-keuze { min-height: 80vh; }
.collectie-kaart { padding: 100px 60px; }
.collectie-sub   { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 2; }
.collectie-link  { color: rgba(255,255,255,0.45); border-bottom-color: rgba(255,255,255,0.2); font-size: 11px; }
.collectie-kaart:hover .collectie-link { color: #d4af37; border-bottom-color: #d4af37; }

/* ─────────────────────────────────────────────────────────
   FADE ANIMATIE (.fade-up)
───────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-up.zichtbaar {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-vertraging-1 { transition-delay: 0.15s; }
.fade-up-vertraging-2 { transition-delay: 0.3s; }
.fade-up-vertraging-3 { transition-delay: 0.45s; }
.fade-up-vertraging-4 { transition-delay: 0.6s; }

/* ─────────────────────────────────────────────────────────
   HERO KNOPPEN (alle pagina's)
───────────────────────────────────────────────────────── */
.hero-knoppen {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ─────────────────────────────────────────────────────────
   ALGEMENE VERBETERINGEN
───────────────────────────────────────────────────────── */
/* Borders overal zachter */
.home-over-stats .stat { border-color: rgba(255,255,255,0.06); }
.home-over-tekst       { border-right-color: rgba(255,255,255,0.06); }

/* Knop stijl verbetering */
.knop {
  background: #d4af37;
  color: #050505;
  font-weight: 500;
  letter-spacing: 5px;
  transition: background 0.35s, transform 0.25s;
  border-color: #d4af37;
}
.knop:hover {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
  transform: translateY(-1px);
}

.knop-outline {
  color: #d4af37;
  border-bottom: 1px solid rgba(212,175,55,0.5);
  font-size: 10px;
  letter-spacing: 4px;
  transition: opacity 0.3s, border-color 0.3s;
}
.knop-outline:hover { border-bottom-color: #d4af37; opacity: 0.8; }

/* Responsive verbeteringen */
@media (max-width: 768px) {
  .over-hero { height: 70vh; min-height: 500px; }
  .over-hero-inhoud h1 { font-size: 52px; }
  .verhaal-sectie { grid-template-columns: 1fr; gap: 48px; padding: 80px 8%; }
  .belofte-lijst  { grid-template-columns: 1fr; }
  .contact-sectie-nieuw { grid-template-columns: 1fr; }
  .contact-info-nieuw { padding: 60px 36px; }
  .contact-form-nieuw { padding: 60px 36px; }
  .stats-banner { flex-direction: column; gap: 40px; padding: 80px 8%; }
  .stats-banner-scheiding { width: 80px; height: 1px; }
  .waarden-grid { grid-template-columns: 1fr 1fr; }
  .faq-sectie { padding: 70px 8%; }
  .over-cta { padding: 100px 8%; }
  .faq-cta  { padding: 100px 8%; }
}

/* ─────────────────────────────────────────────────────────
   HERO SCROLL INDICATOR
───────────────────────────────────────────────────────── */
.hero-scroll, .over-hero .c-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: inschuiven 1.5s ease 1.4s both;
  opacity: 0;
}
.hero-scroll-tekst {
  font-size: 8px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}
.hero-scroll-lijn {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
  animation: scrollPulse 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─────────────────────────────────────────────────────────
   PAGINA HEADER — VERBETERDE OVERGANG
───────────────────────────────────────────────────────── */
.pagina-header {
  position: relative;
  padding-bottom: 100px;
  overflow: visible;
}
/* Gouden lijn ornament onder de h1 */
.pagina-header h1::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: #d4af37;
  margin: 28px auto 0;
}

/* ─────────────────────────────────────────────────────────
   PRODUCT DETAIL PAGINA — LUXERE STIJL
───────────────────────────────────────────────────────── */
.product-pagina {
  min-height: 100vh;
}
.product-pagina-foto {
  flex: 1.1;
  min-width: 340px;
  position: relative;
}
.product-pagina-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  min-height: 70vh;
}
.product-pagina-info {
  flex: 0.9;
  min-width: 340px;
  padding: 80px 72px;
  background: #0a0804;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-categorie {
  font-size: 9px;
  letter-spacing: 6px;
  color: rgba(212,175,55,0.65);
  margin-bottom: 24px;
}
.product-pagina-info h1 {
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 24px;
}
.product-pagina-prijs {
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.product-scheiding {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 32px 0;
}
.product-beschrijving {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 2.1;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 36px;
}
.noot {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.noot-label {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 4px;
}
.noot-waarde {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  letter-spacing: 0.5px;
}
.maat-label { color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.maat-knop  {
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.52);
  padding: 12px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.maat-knop.actief {
  border-color: rgba(212,175,55,0.6);
  color: #d4af37;
  background: rgba(212,175,55,0.05);
}

/* ─────────────────────────────────────────────────────────
   OVER ONS HERO SPECIFIEK (verhaal-sectie h2)
───────────────────────────────────────────────────────── */
.verhaal-tekst h2 em { font-style: italic; }

/* ─────────────────────────────────────────────────────────
   FOOTER LUXERE STIJL
───────────────────────────────────────────────────────── */
footer {
  background: #060402;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inhoud {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 100px 10%;
}
.footer-logo {
  font-size: 28px;
  letter-spacing: 6px;
  margin-bottom: 24px;
}
.footer-kolom h4 {
  font-size: 9px;
  letter-spacing: 5px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.75);
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.5px;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  padding-left: 8px;
}
.sociaal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  transition: color 0.3s, padding-left 0.3s;
}
.sociaal-link:hover {
  color: #d4af37;
  padding-left: 8px;
}
.footer-beschrijving {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 2;
  max-width: 240px;
  font-family: 'Cormorant Garamond', serif;
}
.footer-copy {
  padding: 30px;
  color: rgba(255,255,255,0.15);
  font-size: 9px;
  letter-spacing: 4px;
}

/* ═══════════════════════════════════════════════════════════
   DEFINITIEVE POLISH — SEIZOENEN, PRODUCTEN, MANDJE
═══════════════════════════════════════════════════════════ */

/* ── SEIZOEN SECTIES OP HEREN/DAMES ────────────────────── */
.seizoen-sectie {
  padding: 88px 72px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.seizoen-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 52px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.seizoen-header::before {
  content: '';
  display: none;
}

.seizoen-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.seizoen-header p {
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Seizoen kleuraccenten via ID */
#heren-lente .seizoen-header h2,
#dames-lente .seizoen-header h2 { color: #c8dcc8; }
#heren-zomer .seizoen-header h2,
#dames-zomer .seizoen-header h2 { color: #e8d890; }
#heren-herfst .seizoen-header h2,
#dames-herfst .seizoen-header h2 { color: #d8a870; }
#heren-winter .seizoen-header h2,
#dames-winter .seizoen-header h2 { color: #aabcd8; }

.seizoen-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2), transparent);
}

/* ── PRODUCT GRID VERFIJNING ────────────────────────────── */
.producten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: #1a1612;
}

.product-kaart-link { display: block; }
.product-kaart      { background: #0f0d0a; }
.product-kaart:hover { background: #141210; }

.product-info {
  background: #0f0d0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 22px 26px;
}
.product-kaart h3 {
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  font-style: italic;
}
.product-kaart:hover h3 { color: #d4af37; }
.product-omschrijving { color: rgba(255,255,255,0.3); }
.product-prijs { color: #d4af37; font-size: 17px; }

/* ── MANDJE PAGINA ──────────────────────────────────────── */
.mandje-sectie {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 60px 120px;
}
.mandje-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mandje-item h4 {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,0.88);
  font-size: 22px;
  font-style: italic;
}
.mandje-item p {
  color: #d4af37;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
}
.mandje-totaal {
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.2);
  margin-top: 16px;
}
.mandje-totaal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
}
.leeg-mandje {
  text-align: center;
  padding: 100px 20px;
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 4px;
}

/* ── PAGINA HEADER DEFINITIEF ───────────────────────────── */
.pagina-header {
  background: #ffffff !important;
  text-align: center;
  padding: 110px 20px 90px !important;
  border-bottom: 1px solid #ede9e1 !important;
  position: relative;
  overflow: hidden;
}
.pagina-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,175,55,0.05), transparent 70%);
  pointer-events: none;
}
.pagina-header .sectie-label {
  font-size: 9px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #8a7a62 !important;
  opacity: 1 !important;
  margin-bottom: 18px;
  display: block;
}
.pagina-header h1 {
  font-family: 'Cormorant Garamond', serif !important;
  color: #1a1612 !important;
  font-size: clamp(48px, 7vw, 90px) !important;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.pagina-header h1::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: #d4af37;
  margin: 24px auto 0;
}
.pagina-header > p:not(.sectie-label) {
  color: #8a7a62 !important;
  font-size: 10px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase;
}

/* ── SORTEER BALK DEFINITIEF ────────────────────────────── */
.sorteer-balk {
  background: #f7f4ef !important;
  border-bottom: 1px solid #ede9e1 !important;
  padding: 16px 72px !important;
}
.sorteer-label { color: #b8a88a !important; font-size: 9px !important; letter-spacing: 4px !important; }
.sorteer-knop {
  background: none !important;
  border: 1px solid #e0d8cc !important;
  color: #7a7060 !important;
  padding: 8px 20px !important;
  font-size: 9px !important;
  letter-spacing: 3px !important;
  transition: all 0.25s !important;
}
.sorteer-knop:hover  { border-color: rgba(212,175,55,0.5) !important; color: #b8913a !important; }
.sorteer-knop.actief {
  background: #1a1612 !important;
  border-color: #1a1612 !important;
  color: #ffffff !important;
}

/* ── OVER-HERO H1 ANIMATIE FIX ──────────────────────────── */
.over-hero-inhoud h1 { animation-fill-mode: both !important; }

@media (max-width: 768px) {
  .seizoen-sectie { padding: 60px 28px 40px; }
  .seizoen-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .seizoen-header::after { display: none; }
  .seizoen-header h2 { font-size: 40px; }
  .pagina-header { padding: 80px 20px 70px !important; }
  .mandje-sectie { padding: 60px 24px 80px; }
  .sorteer-balk { padding: 14px 24px !important; }
}

/* ═══════════════════════════════════════════════════════════
   ULTIMATE LUXURY UPGRADE — Block 6
   Transparent nav · Font rendering · Scrollbar · Interactions
═══════════════════════════════════════════════════════════ */

/* GLOBAL FONT ANTIALIASING */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* page load animation removed — caused brightness issue on some systems */

/* LUXURY TEXT SELECTION */
::selection { background: rgba(212,175,55,0.18); color: #1a1612; }

/* LUXURY SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.6); }

/* NAV — altijd zwart */

/* READING PROGRESS BAR */
#lees-voortgang {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.4), rgba(212,175,55,0.9), rgba(212,175,55,0.4));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* PRODUCT CARD IMAGE ZOOM on all pages */
.product-kaart-link img,
.product-kaart img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
}
.product-kaart-link:hover img,
.product-kaart:hover img {
  transform: scale(1.06) !important;
}

/* IMAGE CONTAINER OVERFLOW CLIP */
.product-kaart-foto,
.product-foto-wrapper {
  overflow: hidden !important;
}

/* GOLD FOCUS OUTLINE globally */
:focus-visible {
  outline: 1px solid rgba(212,175,55,0.5) !important;
  outline-offset: 3px !important;
}

/* HERO ELEMENTS — prevent fade-up flash (already in view) */
.c-hero h1, .c-hero p, .c-hero a,
.over-hero h1, .over-hero p, .over-hero .hero-label {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
/* Restore their custom animations */
.c-hero-h1 { animation: heroTitelVerschijn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both !important; }

/* NAV SMOOTH TRANSITION to solid on scroll */
header { transition: top 1.1s cubic-bezier(0.4,0,0.2,1), background 0.6s ease, padding 0.4s ease, border-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease !important; }

/* MANDJE/WISHLIST icon brightness */
.mandje-knop, .wishlist-nav {
  opacity: 0.7;
  transition: opacity 0.3s !important;
}
.mandje-knop:hover, .wishlist-nav:hover { opacity: 1 !important; }

/* SMOOTH SCROLL */
html { scroll-behavior: smooth; }

/* page transition overlay removed */

/* BACK TO TOP BUTTON */
#terug-omhoog {
  position: fixed;
  bottom: 44px;
  right: 44px;
  width: 50px;
  height: 50px;
  background: #1a1612;
  border: 1px solid rgba(212,175,55,0.2);
  color: rgba(212,175,55,0.65);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9996;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s, color 0.3s, border-color 0.3s;
  pointer-events: none;
  font-family: 'Cormorant Garamond', serif;
}
#terug-omhoog.zichtbaar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#terug-omhoog:hover {
  background: #d4af37;
  color: #050505;
  border-color: #d4af37;
}

@media (max-width: 768px) {
  #terug-omhoog {
    bottom: 100px;
    right: 20px;
  }
  .sorteer-fab {
    bottom: 28px;
    right: 20px;
  }
}

/* FILM GRAIN TEXTURE */
#korrel-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* PRODUCTEN page transparent nav */
body:has(.col-hero) header:not(.gescrold) {
  background: #100e09 url('images/marmer.jpg') center center / cover no-repeat !important;
  border-bottom-color: rgba(201, 149, 108, 0.15) !important;
}
body:has(.col-hero) header:not(.gescrold) nav ul li a { color: rgba(255,255,255,0.7) !important; }
body:has(.col-hero) header:not(.gescrold) nav ul li a:hover { color: rgba(212,175,55,0.9) !important; }
body:has(.col-hero) header:not(.gescrold) .logo { color: rgba(212,175,55,0.85) !important; }

/* custom cursor removed — using system cursor */

/* ══ TEKST ALTIJD ZICHTBAAR — globale veiligheidslaag ══
   Voorkomt dat fade-up animaties tekstelementen verbergen */
h1, h2, h3, h4, h5, h6, p, span, a, li, label, td, th, blockquote {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
/* Uitzonderingen: elementen die hun eigen animatie bewust gebruiken */
.c-hero-h1, .c-hero-sub, .hero-scroll,
.over-hero-inhoud h1, .col-hero-titel,
.hero-scroll-lijn {
  animation: revert !important;
  opacity: revert !important;
  transform: revert !important;
}
/* Secties nooit verbergen */
section, div, header, footer, nav, main, article, aside {
  opacity: 1 !important;
}

/* Magnetic button wrapper */
.mag-btn { display: inline-block; }

/* FOOTER luxury upgrade */
footer {
  background: #040404 !important;
  border-top: 1px solid rgba(212,175,55,0.1) !important;
  padding-top: 80px !important;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-style: italic !important;
  color: rgba(212,175,55,0.75) !important;
  letter-spacing: 3px !important;
  margin-bottom: 16px !important;
}
.footer-beschrijving {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.28) !important;
  line-height: 1.7 !important;
}
.footer-inhoud h4 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 8px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: rgba(212,175,55,0.5) !important;
  margin-bottom: 24px !important;
}
.footer-links a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  color: rgba(255,255,255,0.3) !important;
  text-decoration: none !important;
  display: block !important;
  margin-bottom: 10px !important;
  transition: color 0.3s !important;
}
.footer-links a:hover { color: rgba(212,175,55,0.7) !important; }
.footer-copy {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 8px !important;
  letter-spacing: 3px !important;
  color: rgba(255,255,255,0.15) !important;
  text-transform: uppercase !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  padding-top: 32px !important;
  margin-top: 64px !important;
  text-align: center !important;
}
