/* ===== VARIABELEN ===== */
:root {
  --zwart: #141414;
  --zwart-zacht: #1d1d1d;
  --goud: #d4af37;
  --goud-licht: #d4a83a;
  --goud-donker: #8a6b1e;
  --wit: #ffffff;
  --crème: #faf6f0;
  --crème-donker: #f2ebe0;
  --grijs: #8a8078;
  --grijs-licht: #f5f1eb;
  --font-hoofd: 'Playfair Display', Georgia, serif;
  --font-tekst: 'Montserrat', Arial, sans-serif;
  --schaduw: 0 6px 32px rgba(26,18,8,0.12);
  --schaduw-goud: 0 4px 20px rgba(184,145,46,0.22);
}

/* ===== RESET & BASIS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Playfair Display ij-ligatuur uitzetten */
h1, h2, h3, h4, h5, h6,
.sectie-titel, .footer-logo, .nav-logo,
[style*="font-family:var(--font-hoofd)"],
[style*="font-family: var(--font-hoofd)"] {
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0, "calt" 0, "locl" 0;
}

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

body {
  font-family: var(--font-tekst);
  background: var(--wit);
  color: var(--zwart);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== NAVIGATIE ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  border-bottom: 1px solid rgba(184,145,46,0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 65px;
  box-shadow: var(--schaduw);
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav-logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--wit);
  font-family: var(--font-tekst);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--goud);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.actief { color: var(--goud); }
.nav-links a:hover::after,
.nav-links a.actief::after { width: 100%; }

.nav-winkelmandje {
  position: relative;
  cursor: pointer;
}

.nav-winkelmandje svg {
  width: 22px; height: 22px;
  stroke: var(--wit);
  transition: stroke 0.3s ease;
}

.nav-winkelmandje:hover svg { stroke: var(--goud); }

.winkelmandje-teller {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--goud);
  color: var(--zwart);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--wit);
  transition: all 0.3s ease;
}

/* ===== HERO (HOMEPAGE) ===== */
.hero {
  min-height: 100vh;
  background: var(--zwart);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(184,145,46,0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 75%, rgba(184,145,46,0.10) 0%, transparent 50%),
              linear-gradient(160deg, #141414 0%, #1d1d1d 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-label {
  display: inline-block;
  color: var(--goud);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-hoofd);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--wit);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--goud); }

.hero-ondertitel {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-knoppen {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.goud-knop {
  background: var(--goud);
  color: var(--wit);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-tekst);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.goud-knop:hover {
  background: var(--goud-licht);
  transform: translateY(-2px);
  box-shadow: var(--schaduw-goud);
}

.wit-knop {
  background: transparent;
  color: var(--wit);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-tekst);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.wit-knop:hover {
  border-color: var(--goud);
  color: var(--goud);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bobbing 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--goud), transparent);
}

@keyframes bobbing {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIE BASIS ===== */
.sectie {
  padding: 6rem 5%;
}

.sectie-donker {
  background: var(--zwart);
  color: var(--wit);
}

.sectie-crème {
  background: var(--crème);
}

.sectie-wit {
  background: var(--wit);
}

.sectie-titel {
  font-family: var(--font-hoofd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.sectie-lijn {
  width: 50px;
  height: 2px;
  background: var(--goud);
  margin: 0 auto 1.5rem;
}

.sectie-lijn.links { margin: 0 0 1.5rem; }

.sectie-ondertitel {
  font-size: 1rem;
  color: var(--grijs);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.sectie-ondertitel.donker { color: rgba(255,255,255,0.55); }

.tekst-midden { text-align: center; }

/* ===== DIENSTEN GRID ===== */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dienst-kaart {
  background: var(--wit);
  border: 1px solid rgba(184,145,46,0.18);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dienst-kaart::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--goud);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.dienst-kaart:hover {
  border-color: rgba(184,145,46,0.4);
  transform: translateY(-4px);
  box-shadow: var(--schaduw-goud);
}

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

.dienst-icoon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.dienst-kaart h3 {
  font-family: var(--font-hoofd);
  font-size: 1.2rem;
  color: var(--zwart);
  margin-bottom: 0.75rem;
}

.dienst-kaart p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-kaart {
  background: var(--wit);
  border: 1px solid #ede8df;
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 14px rgba(26,18,8,0.05);
}

.testimonial-kaart::before {
  content: '"';
  font-family: var(--font-hoofd);
  font-size: 5rem;
  color: var(--goud);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
}

.sterren { color: var(--goud); font-size: 1rem; margin-bottom: 0.75rem; }

.testimonial-tekst {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-naam {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--zwart);
}

/* ===== WEBSHOP ===== */
.webshop-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-knop {
  background: transparent;
  border: 1px solid #ddd;
  padding: 0.5rem 1.4rem;
  font-family: var(--font-tekst);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--grijs);
}

.filter-knop.actief,
.filter-knop:hover {
  background: var(--zwart);
  border-color: var(--zwart);
  color: var(--goud);
}

.producten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.product-kaart {
  background: var(--wit);
  border: 1px solid #efefef;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-kaart:hover {
  box-shadow: var(--schaduw);
  transform: translateY(-4px);
}

.product-afbeelding {
  background: var(--crème);
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}

.product-foto {
  width: auto;
  height: 215px;
  object-fit: contain;
  object-position: bottom center;
}

.product-foto-klein {
  padding: 0.75rem;
}


.product-afbeelding-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--goud);
  opacity: 0.4;
}

/* ===== WEBSHOP CATEGORIE KAARTEN (homepage) ===== */
.shop-cat-kaart {
  background: var(--crème);
  border: 1px solid rgba(184,145,46,0.15);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.shop-cat-kaart:hover {
  border-color: var(--goud);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184,145,46,0.14);
}

.shop-cat-kaart svg {
  color: var(--goud);
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.75;
}

.shop-cat-kaart:hover svg { opacity: 1; }

.product-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--goud);
  color: var(--zwart);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.product-acties {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  transition: bottom 0.3s ease;
}

.product-kaart:hover .product-acties { bottom: 0; }

.product-acties button {
  flex: 1;
  padding: 0.9rem;
  background: var(--zwart);
  color: var(--goud);
  border: none;
  font-family: var(--font-tekst);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-acties button:hover { background: var(--goud); color: var(--zwart); }

.product-info {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-categorie {
  font-size: 0.7rem;
  color: var(--goud);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-naam {
  font-family: var(--font-hoofd);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--zwart);
}

.product-omschrijving {
  font-size: 0.82rem;
  color: var(--grijs);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  flex: 1;
}

.product-prijs {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zwart);
}

.product-prijs span {
  font-size: 0.82rem;
  color: var(--grijs);
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 0.4rem;
}

/* ===== OVER MIJ ===== */
.over-mij-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.over-mij-foto {
  position: relative;
}

.over-mij-foto-kader {
  background: #fff;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 68%, transparent 100%);
}

.over-mij-foto-kader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--grijs);
  font-size: 0.85rem;
}

.foto-placeholder-icoon { font-size: 4rem; opacity: 0.4; }

/* foto-kader decoratie verwijderd */

.over-mij-tekst .sectie-label {
  color: var(--goud);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.over-mij-tekst p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.statistieken {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat-item { text-align: center; }

.stat-getal {
  font-family: var(--font-hoofd);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--goud);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--grijs);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.certificaten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.cert-tag {
  background: var(--crème);
  border: 1px solid #e0d8c8;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.05em;
}

/* ===== WERKWIJZE KAARTEN ===== */
.werkwijze-kaart {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(184,145,46,0.15);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.werkwijze-kaart:hover {
  border-color: rgba(184,145,46,0.5);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(184,145,46,0.15);
}

.werkwijze-nummer {
  width: 64px; height: 64px;
  border: 1px solid var(--goud);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--goud);
  font-family: var(--font-hoofd);
  font-weight: 700;
  transition: all 0.35s ease;
}

.werkwijze-kaart:hover .werkwijze-nummer {
  background: var(--goud);
  color: var(--zwart);
}

/* ===== LEVERING KAARTEN (webshop) ===== */
.levering-kaart {
  background: var(--wit);
  border: 1px solid rgba(184,145,46,0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
}

.levering-kaart:hover {
  border-color: var(--goud);
  transform: translateY(-4px);
  box-shadow: var(--schaduw-goud);
}

.levering-kaart .levering-icoon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

/* ===== CONTACT ===== */
.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--font-hoofd);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icoon {
  width: 42px; height: 42px;
  background: var(--crème);
  border: 1px solid #e0d8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-tekst strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grijs);
  margin-bottom: 0.2rem;
}

.contact-detail-tekst span {
  font-size: 0.95rem;
  color: var(--zwart);
}

.sociaal-knoppen {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sociaal-knoppen.midden {
  justify-content: center;
  margin-top: 0;
}

.sociaal-knop {
  width: 42px; height: 42px;
  background: var(--zwart);
  color: var(--wit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.sociaal-knop:hover { opacity: 0.85; transform: translateY(-2px); }

/* Brand kleuren */
.sociaal-knop.fb { background: #1877F2; border-color: #1877F2; }
.sociaal-knop.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.sociaal-knop.wa { background: #25D366; border-color: #25D366; }

/* Klantenstop banner */
.klantenstop-banner {
  background: #fff8ed;
  border-bottom: 1px solid rgba(184,145,46,0.3);
  padding: 0.9rem 5%;
  text-align: center;
  font-size: 0.88rem;
  color: #5a4010;
  line-height: 1.5;
}
.klantenstop-banner strong { color: #8a5c00; }

.contact-formulier {
  background: var(--crème);
  padding: 2.5rem;
}

.formulier-groep {
  margin-bottom: 1.25rem;
}

.formulier-groep label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grijs);
  margin-bottom: 0.5rem;
}

.formulier-groep input,
.formulier-groep textarea,
.formulier-groep select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--wit);
  border: 1px solid #ddd;
  font-family: var(--font-tekst);
  font-size: 0.92rem;
  color: var(--zwart);
  transition: border-color 0.3s ease;
  outline: none;
  appearance: none;
}

.formulier-groep input:focus,
.formulier-groep textarea:focus,
.formulier-groep select:focus {
  border-color: var(--goud);
}

.formulier-groep textarea {
  resize: vertical;
  min-height: 130px;
}

/* ===== WINKELMANDJE PANEL ===== */
.winkelmandje-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.winkelmandje-overlay.open {
  opacity: 1;
  visibility: visible;
}

.winkelmandje-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 380px;
  max-width: 100%;
  background: var(--wit);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.winkelmandje-overlay.open .winkelmandje-panel {
  transform: translateX(0);
}

.winkelmandje-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.winkelmandje-header h3 {
  font-family: var(--font-hoofd);
  font-size: 1.3rem;
}

.sluiten-knop {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--grijs);
  transition: color 0.2s;
}

.sluiten-knop:hover { color: var(--zwart); }

.winkelmandje-leeg {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--grijs);
  font-size: 0.9rem;
}

.winkelmandje-leeg-icoon { font-size: 3rem; opacity: 0.3; }

.winkelmandje-items { flex: 1; }

.winkelmandje-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.winkelmandje-item-info { flex: 1; }
.winkelmandje-item-naam { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.winkelmandje-item-prijs { color: var(--goud); font-weight: 700; font-size: 0.9rem; }

.winkelmandje-voet {
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.winkelmandje-totaal {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* ===== FOOTER ===== */
footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.55);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer-logo img {
  height: 60px; width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.footer-merk p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-sectie h4 {
  color: var(--wit);
  font-family: var(--font-hoofd);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184,145,46,0.2);
}

.footer-sectie ul li {
  margin-bottom: 0.6rem;
}

.footer-sectie ul li a {
  font-size: 0.87rem;
  transition: color 0.2s ease;
}

.footer-sectie ul li a:hover { color: var(--goud); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-bottom a { color: var(--goud); }

/* ===== MELDING ===== */
.melding {
  position: fixed;
  top: 90px;
  left: 2rem;
  background: var(--zwart);
  color: var(--wit);
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--goud);
  font-size: 0.88rem;
  z-index: 2000;
  transform: translateX(-150%);
  transition: transform 0.4s ease;
  box-shadow: var(--schaduw);
}

.melding.zichtbaar { transform: translateX(0); }

/* ===== PAGE HERO ===== */
.pagina-hero {
  background: linear-gradient(160deg, #141414 0%, #1d1d1d 100%);
  padding: 160px 5% 90px;
  text-align: center;
}

.pagina-hero h1 {
  font-family: var(--font-hoofd);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--wit);
  margin-bottom: 0.75rem;
}

.pagina-hero h1 span { color: var(--goud); }

.pagina-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a { color: var(--goud); }
.breadcrumb-scheider { color: rgba(255,255,255,0.2); }

/* ===== GALERIJ CAROUSEL ===== */
.galerij-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.galerij-overflow { overflow: hidden; }

.galerij-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galerij-foto {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.galerij-pijl {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wit);
  border: 1px solid rgba(184,145,46,0.25);
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: var(--goud);
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.2s;
}
.galerij-pijl:hover { border-color: var(--goud); }
.galerij-pijl-links { left: 0; }
.galerij-pijl-rechts { right: 0; }

/* ===== CART MELDING ===== */
.cart-melding {
  background: var(--wit);
  border-left: 3px solid var(--goud);
  color: var(--zwart);
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.cart-melding.zichtbaar {
  opacity: 1;
  max-height: 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .over-mij-wrapper,
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .statistieken { gap: 1.5rem; }
}

@media (max-width: 680px) {
  /* --- Navigatie --- */
  .navbar { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--zwart);
    padding: 2rem 5%;
    gap: 1.5rem;
    border-top: 1px solid rgba(184,145,46,0.15);
  }
  .hamburger { display: flex; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* --- Secties --- */
  .sectie { padding: 4rem 5%; }

  /* --- Webshop producten grid --- */
  .producten-grid { grid-template-columns: 1fr; max-width: 420px; }

  /* --- Winkelmandje panel --- */
  .winkelmandje-panel { width: 100%; }

  /* --- Melding: onderaan i.p.v. linksboven (valt anders over het winkelmandje) --- */
  .melding {
    top: auto !important;
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    transform: translateY(200%);
  }
  .melding.zichtbaar { transform: translateY(0); }

  /* --- Homepage: Over Judith banner (foto rechts → bovenaan op mobiel) --- */
  .over-judith-raster {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .over-judith-foto { order: -1; }

  /* --- Homepage: Reviews carousel (1 kaart tegelijk, volle breedte) --- */
  .review-kaart { flex: 0 0 100% !important; }

  /* --- Homepage: Eigen lijn (foto + tekst gestapeld) --- */
  .eigen-lijn-raster {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* --- Homepage: MBM producten (4 → 2 per rij) --- */
  .mbm-producten-raster {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* --- Homepage: Salon producten (3 → 2 per rij) --- */
  .salon-producten-raster {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* --- Webshop: filterknopjes horizontaal scrollbaar --- */
  .webshop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .filter-knop { flex-shrink: 0; }

  /* --- Portfolio: afspraak-knop gecentreerd --- */
  .portfolio-cta { text-align: center; }

  /* --- Over Judith: "Meer Over Judith" knop gecentreerd --- */
  .over-judith-tekst .goud-knop {
    display: block;
    text-align: center;
  }

  /* --- Portfolio: fotogalerij carousel (één foto per keer) --- */
  .galerij-container { padding: 0 44px; }
  .galerij-raster {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }
  .galerij-foto {
    flex: 0 0 100% !important;
    aspect-ratio: 3/4;
  }
}
