/* =========================================
   LIGHT & FRESH THEME 2026 - COMPLETE
   ========================================= */

:root {
  /* --- Kleuren: Fris, Licht & Vrolijk --- */
  --bg: #F7F9FC;           /* Heel licht grijs-blauw voor de achtergrond */
  --bg-card: #FFFFFF;      /* Wit voor kaarten */
  --text: #2D3748;         /* Donkergrijs (leest fijner dan zwart) */
  --text-muted: #718096;   /* Grijs voor bijtekst */
  
  /* Accent Kleuren */
  --primary: #FF6B6B;      /* Koraal/Rood (Actiekleur) */
  --primary-hover: #EE5253;
  --secondary: #4834D4;    /* Diep Blauw (Vertrouwen) */
  --accent: #F9CA24;       /* Geel (Opvallende details) */
  
  /* Status Kleuren */
  --success: #6AB04C;      /* Groen */
  --warning: #F9CA24;      /* Geel */
  --danger: #EB4D4B;       /* Rood */

  /* Vormgeving */
  --max-width: 1100px;
  --radius: 16px;          /* Mooie ronde hoeken */
  --shadow: 0 10px 30px rgba(0,0,0,0.04);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.08);
  --nav-height: 70px;
}

/* =========================================
   1. BASIS & RESET
   ========================================= */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Voorkomt horizontaal scrollen op mobiel */
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* =========================================
   2. LAYOUT
   ========================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section { padding: 60px 0; }
.section.soft { 
  background: #fff; 
  border-top: 1px solid #E2E8F0; 
  border-bottom: 1px solid #E2E8F0; 
}

/* Grid systemen */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

/* =========================================
   3. TYPOGRAFIE
   ========================================= */
h1, h2, h3, h4 { 
  line-height: 1.2; 
  font-weight: 800; 
  margin: 0 0 16px 0; 
  color: #130f40; 
}

h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -1px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

p { margin-bottom: 16px; color: var(--text-muted); }
.kicker { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin-bottom: 30px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =========================================
   4. COMPONENTEN (Knoppen, Kaarten, etc.)
   ========================================= */

/* --- KNOPPEN --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 50px; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s ease; font-size: 1rem; text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn:active { transform: translateY(-1px); }

.btn.primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); }
.btn.primary:hover { background: var(--primary-hover); }

.btn.secondary { background: var(--secondary); color: white; }
.btn.ghost { background: white; color: var(--text); border: 2px solid #E2E8F0; }
.btn.ghost:hover { border-color: var(--text-muted); }

.btn.small { padding: 8px 16px; font-size: 0.85rem; }
.btn.w-100 { width: 100%; }

/* --- KAARTEN --- */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); border: 1px solid white;
  transition: 0.3s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* --- FORMULIEREN --- */
.form .field { margin-bottom: 20px; }
.form label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; color: #130f40; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid #E2E8F0;
  border-radius: 12px; font-family: inherit; font-size: 1rem; transition: 0.2s;
  background: #F8FAFC; color: #333;
}
.form input:focus { border-color: var(--primary); outline: none; background: white; }

/* --- ALERTS --- */
.notice { padding: 16px; border-radius: 12px; margin-bottom: 24px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.notice.ok { background: #E3FCEF; color: #006644; border: 1px solid #ABF5D1; }
.notice.danger { background: #FFEBE6; color: #BF2600; border: 1px solid #FFBDAD; }

/* --- TABELLEN --- */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { padding: 16px; text-align: left; border-bottom: 1px solid #F1F5F9; white-space: nowrap; }
.table th { background: #F8FAFC; font-weight: 800; color: #130f40; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.table tr:last-child td { border-bottom: none; }

/* Labels & Pills */
.pill { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.pill.paid { background: #E3FCEF; color: #006644; }
.pill.unpaid { background: #FFFAE6; color: #FF8B00; }

/* =========================================
   5. HEADER & NAVIGATIE
   ========================================= */
.topbar { background: #130f40; color: white; padding: 8px 0; font-size: 13px; font-weight: 600; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-cta { color: var(--accent); }

.site-header {
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0; position: sticky; top: 0; z-index: 100;
  height: var(--nav-height);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.3rem; color: #130f40; }
.brand-ic { width: 40px; height: 40px; background: #FFF0F0; color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; color: var(--text-muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }

.nav-actions { display: flex; gap: 12px; }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px; }
.nav-burger span { width: 26px; height: 2px; background: #130f40; border-radius: 2px; }

/* Mobiel Menu */
.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: white; z-index: 90; padding: 30px 20px;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid #eee; display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-links { display: flex; flex-direction: column; gap: 20px; font-size: 1.3rem; font-weight: 800; text-align: center; margin-bottom: 40px; }
.mobile-actions-row { display: grid; gap: 15px; }

/* =========================================
   6. ZIJBALK (ADMIN & DASHBOARD)
   ========================================= */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar-menu {
  position: sticky; top: 100px;
  background: white; border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid #F1F5F9;
}

.sidebar-label {
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  color: #A0AEC0; margin: 15px 0 5px 12px; letter-spacing: 0.05em;
}

.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 12px; font-weight: 600; color: #4A5568;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

/* Sidebar: Hover effect */
.sidebar-link:hover {
  background: #FFF5F5; 
  color: var(--primary);
  transform: translateX(3px);
}

/* Sidebar: Actief */
.sidebar-link.is-active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Sidebar: Uitloggen */
.sidebar-link.logout {
  color: var(--danger);
  margin-top: 10px;
  border-top: 1px solid #F1F5F9;
  border-radius: 0 0 12px 12px;
}
.sidebar-link.logout:hover {
  background: #FFF5F5;
  color: var(--danger);
}

.sidebar-link i, .sidebar-link span.ic {
  font-size: 1.2rem; width: 24px; text-align: center;
}
.sidebar-sep { height: 1px; background: #eee; margin: 8px 10px; }

/* =========================================
   7. PRODUCTEN (BESTELPAGINA)
   ========================================= */
.product {
  padding: 0; /* Geen padding rondom, zodat foto de rand raakt */
  display: flex; flex-direction: column;
  border: none;
}

.product-img {
  height: 220px; width: 100%;
  background-size: cover; background-position: center;
  position: relative;
}

.product-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }

.product-label {
  position: absolute; top: 15px; right: 15px;
  background: white; color: var(--primary);
  font-weight: 800; font-size: 0.75rem; padding: 6px 12px; border-radius: 20px;
  text-transform: uppercase; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  letter-spacing: 0.05em;
}

.product-price { font-size: 1.8rem; font-weight: 800; color: #130f40; margin: 15px 0 25px; }
.product-price .old { font-size: 1.1rem; text-decoration: line-through; color: #BDC3C7; margin-right: 10px; font-weight: 600; }

/* =========================================
   8. HERO (HOMEPAGE)
   ========================================= */
.home-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 50px 0 80px; }
.home-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: #FFF0F0; color: var(--primary); border-radius: 20px; font-size: 0.9rem; font-weight: 700; margin-bottom: 24px; }
.home-title span { color: var(--primary); background: linear-gradient(120deg, rgba(255,107,107,0.2) 0%, rgba(255,107,107,0) 100%); padding-right: 5px; }

/* =========================================
   9. FOOTER
   ========================================= */
.footer { background: white; padding: 80px 0 40px; border-top: 1px solid #E2E8F0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #F1F5F9; color: #A0AEC0; font-size: 0.9rem; }

/* =========================================
   10. RESPONSIVE (MOBIEL)
   ========================================= */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  
  /* Hero onder elkaar */
  .home-hero { grid-template-columns: 1fr; text-align: center; }
  .home-hero-left { order: 2; }
  .home-hero-right { order: 1; margin-bottom: 30px; }
  .home-cta { justify-content: center; }
  
  /* Zijbalk wordt blokken boven elkaar */
  .layout-with-sidebar { grid-template-columns: 1fr; gap: 30px; }
  .sidebar-menu { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
  .sidebar-label { display: none; }
  .sidebar-link { justify-content: center; text-align: center; flex-direction: column; gap: 5px; font-size: 0.9rem; }
  .sidebar-menu a.btn, .sidebar-link.logout { grid-column: 1 / -1; }
  
  /* Grids naar 1 kolom */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .container { padding: 0 20px; }
}
/* --- FORM STYLING UPDATE (ADMIN & KLANT) --- */

/* Maak van formulieren een strak grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Twee kolommen */
  gap: 24px;
}

/* Velden */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0; /* Grid regelt ruimte */
}

/* Als een veld breed moet zijn (zoals tekstvakken) */
.field.full {
  grid-column: 1 / -1;
}

.form label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form input, .form select, .form textarea {
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form input:focus, .form select:focus, .form textarea:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
  outline: none;
}

/* Knoppenbalk onder formulieren */
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

/* Mobiel: Alles onder elkaar */
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
}
/* =========================================
   ADMIN FORM MAKE-OVER (CSS ONLY)
   ========================================= */

/* 1. Maak van het formulier een grid */
.card.form form {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 kolommen */
  gap: 24px;
  align-items: end; /* Zorgt dat knoppen netjes uitlijnen */
}

/* 2. De velden strakker maken */
.card.form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0; /* Reset oude marge */
}

/* 3. Textareas (grote tekstvakken) over de volle breedte */
.card.form .field:has(textarea),
.card.form .field textarea {
  grid-column: 1 / -1; /* Pak volledige breedte */
}

/* 4. Labels mooier */
.card.form label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* 5. Inputs moderniseren */
.card.form input, 
.card.form select, 
.card.form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.card.form input:focus, 
.card.form select:focus, 
.card.form textarea:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
  outline: none;
}

/* 6. Knoppenbalk onderaan */
.card.form button[type="submit"],
.card.form .btn {
  grid-column: 1 / -1; /* Knop over volle breedte of links */
  justify-self: start;
  margin-top: 10px;
}

/* 7. Mobiel: Alles weer onder elkaar */
@media (max-width: 700px) {
  .card.form form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* =========================================
   LEGACY FORM FIXER (De CSS Hamer)
   ========================================= */

/* 1. Forceer ruimte tussen de regels */
.legacy-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

/* 2. Pak de oude div's die om inputs heen zitten */
.legacy-form div {
  margin-bottom: 0 !important; /* Reset oude marges */
}

/* 3. Labels: Maak ze dikgedrukt en zet ze BOVEN het veld */
.legacy-form label,
.legacy-form b, 
.legacy-form strong {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

/* 4. Inputs: Maak ze mooi, wit en met ronde hoeken */
.legacy-form input[type="text"],
.legacy-form input[type="email"],
.legacy-form input[type="password"],
.legacy-form input[type="number"],
.legacy-form input[type="date"],
.legacy-form select,
.legacy-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
  box-sizing: border-box; /* Zorgt dat padding niet buiten de breedte valt */
}

/* Focus effect (als je erop klikt) */
.legacy-form input:focus,
.legacy-form select:focus,
.legacy-form textarea:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
  outline: none;
}

/* 5. Textareas groter maken */
.legacy-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* 6. Knoppen mooi maken */
.legacy-form button,
.legacy-form input[type="submit"] {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
  display: inline-block;
  -webkit-appearance: none;
}

.legacy-form button:hover,
.legacy-form input[type="submit"]:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* 7. Checkboxes fixen */
.legacy-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  margin-right: 10px;
  vertical-align: middle;
}
/* =========================================
   LIGHT & FRESH THEME 2026 - FINAL STABLE
   ========================================= */

:root {
  --bg: #F8FAFC;
  --bg-card: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --primary: #FF6B6B;
  --primary-hover: #EE5253;
  --secondary: #4834D4;
  --accent: #F9CA24;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --nav-height: 70px;
}

/* --- Basis & Reset --- */
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }
.section { padding: 80px 0; }
.section.soft { background: white; border-top: 1px solid #F1F5F9; border-bottom: 1px solid #F1F5F9; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- Typografie --- */
h1, h2, h3 { color: #0F172A; margin: 0 0 15px 0; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h1 span { color: var(--primary); }
p { line-height: 1.7; margin-bottom: 20px; }
.kicker { font-size: 1.2rem; color: var(--text-muted); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Knoppen --- */
.btn {
  display: inline-flex; padding: 12px 28px; border-radius: 50px;
  font-weight: 700; cursor: pointer; transition: 0.2s; border: none;
}
.btn.primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(255,107,107,0.3); }
.btn.primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn.ghost { background: white; border: 2px solid #E2E8F0; }
.btn.ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn.small { padding: 8px 20px; font-size: 0.9rem; }
.btn.w-100 { width: 100%; justify-content: center; }

/* --- Kaarten --- */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

/* --- HERO SLIDER (THE FIX) --- */
.home-hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding-bottom: 40px;
}

.home-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1; /* Forceert de hoogte van de container */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: #eee;
}

.home-slide {
  position: absolute !important; /* Dwingt ze over elkaar heen */
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.home-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 50px 30px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  z-index: 3;
}

.home-slide-overlay strong { font-size: 1.4rem; display: block; margin-bottom: 5px; }

.home-slider-dots {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.home-slider-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid white; background: transparent;
  cursor: pointer; padding: 0; transition: 0.3s;
}

.home-slider-dots button.is-active {
  background: white;
  transform: scale(1.2);
}

/* --- PRODUCTEN --- */
.product { padding: 0; overflow: hidden; }
.product-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.product-label { position: absolute; top: 15px; right: 15px; background: var(--accent); color: black; font-weight: 800; font-size: 0.7rem; padding: 4px 10px; border-radius: 5px; text-transform: uppercase; }
.product-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.product-price { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.product-price .old { font-size: 1rem; text-decoration: line-through; color: #cbd5e1; margin-right: 10px; }

/* --- HEADER --- */
.site-header { background: white; height: var(--nav-height); border-bottom: 1px solid #f1f5f9; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.3rem; }
.brand-ic { background: #FFF5F5; color: var(--primary); width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.nav-links { display: flex; gap: 25px; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }

/* --- SIDEBAR LAYOUT --- */
.layout-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.sidebar-menu { background: white; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 5px; }
.sidebar-link { padding: 12px 16px; border-radius: 10px; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 10px; transition: 0.2s; }
.sidebar-link:hover, .sidebar-link.is-active { background: #FFF5F5; color: var(--primary); }
.sidebar-link.is-active { font-weight: 800; }

/* --- TABLE --- */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 15px; text-align: left; border-bottom: 1px solid #F1F5F9; }
.table th { background: #F8FAFC; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; }

/* --- MOBILE --- */
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; text-align: center; }
  .home-hero-right { order: -1; }
  .home-slider { aspect-ratio: 16/9; }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
/* --- CINEMATIC HERO LAYOUT --- */
.home-hero-section {
  padding-top: 30px;
}

.home-slider-container {
  width: 100%;
  margin-bottom: 50px;
}

.home-slider {
  position: relative;
  width: 100%;
  /* Cinematic ratio: Breed en niet te hoog */
  aspect-ratio: 16 / 7; 
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  background: #eee;
}

.home-slide {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.home-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 40px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  z-index: 3;
  text-align: center;
}

.home-slide-overlay strong { font-size: 1.8rem; display: block; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.home-slide-overlay p { margin: 0; opacity: 0.9; }

/* Content onder de slider */
.home-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.home-title {
  margin-bottom: 20px;
}

.home-lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 650px;
}

.home-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.home-slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.home-slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.4);
  cursor: pointer; padding: 0; transition: 0.3s;
}

.home-slider-dots button.is-active {
  background: white;
  transform: scale(1.4);
  width: 25px; /* Wordt een pilletje als hij actief is */
  border-radius: 10px;
}

/* Mobiele aanpassingen */
@media (max-width: 900px) {
  .home-slider {
    aspect-ratio: 4 / 3; /* Iets hogere slider op mobiel is mooier */
    border-radius: 20px;
  }
  .home-slide-overlay strong { font-size: 1.3rem; }
  .home-cta { flex-direction: column; }
}
/* =========================================
   FULL-WIDTH CINEMATIC THEME 2026
   ========================================= */

/* --- Slider container over de volledige breedte --- */
.home-slider-container {
  width: 100%;
  background: #000;
  margin-top: 0;
  overflow: hidden;
}

.home-slider {
  position: relative;
  width: 100%;
  height: 65vh; /* Neemt 65% van de schermhoogte in beslag */
  min-height: 450px;
}

.home-slide {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Iets tragere, mooiere overgang */
  z-index: 1;
}

.home-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Maakt afbeelding iets donkerder voor leesbaarheid tekst */
}

/* De tekst OVER de afbeelding */
.home-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center; /* Centreert tekst verticaal */
  justify-content: center; /* Centreert tekst horizontaal */
  text-align: center;
  color: white;
  z-index: 3;
  padding: 20px;
}

.slide-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  color: white !important;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
  line-height: 1;
}

.slide-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Stipjes onderaan de slider */
.home-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.home-slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.home-slider-dots button.is-active {
  background: white;
  border-color: white;
  transform: scale(1.3);
}

/* --- Content onder de slider --- */
.home-hero-content {
  padding: 60px 0 20px;
  max-width: 850px;
  margin: 0 auto;
}

.home-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 25px;
  font-weight: 800;
}

.home-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Mobiel */
@media (max-width: 900px) {
  .home-slider { height: 50vh; }
  .slide-title { font-size: 2rem !important; }
  .home-hero-content { padding: 40px 0 10px; }
}

/* Behoud rest van je style.css voor knoppen, kaarten en producten... */
/* =========================================
   LIGHT & FRESH THEME 2026 - CINEMATIC UPDATE
   ========================================= */

:root {
  --bg: #F8FAFC;
  --bg-card: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --primary: #FF6B6B;
  --primary-hover: #EE5253;
  --secondary: #4834D4;
  --accent: #F9CA24;
  --radius: 24px;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --nav-height: 80px;
}

/* --- Basis & Reset --- */
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- Layout --- */
.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 80px 0; }
.section.soft { background: white; border-top: 1px solid #F1F5F9; border-bottom: 1px solid #F1F5F9; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* --- Typografie --- */
h1, h2, h3 { color: #0F172A; margin: 0 0 15px 0; }
h1 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; }
p { line-height: 1.7; margin-bottom: 20px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Knoppen --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; cursor: pointer; transition: all 0.3s ease; border: none;
}
.btn.primary { background: var(--primary); color: white; box-shadow: 0 8px 20px rgba(255,107,107,0.3); }
.btn.primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255,107,107,0.4); }
.btn.ghost { background: white; border: 2px solid #E2E8F0; color: #1E293B; }
.btn.ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* --- FULL-WIDTH SLIDER --- */
.home-slider-container {
  width: 100%;
  background: #000;
  margin-top: 0;
  overflow: hidden;
}

.home-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 480px;
}

.home-slide {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.home-slide.is-active { opacity: 1; z-index: 2; }

.home-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.home-slide-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: white; z-index: 3;
}

.slide-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  color: white !important; font-weight: 900;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.slide-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  opacity: 0.95; max-width: 750px; margin: 0 auto 35px;
}

.home-slider-dots {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 12px; z-index: 10;
}

.home-slider-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6); background: transparent;
  cursor: pointer; transition: 0.3s;
}

.home-slider-dots button.is-active {
  background: white; border-color: white; transform: scale(1.3); width: 30px; border-radius: 10px;
}

/* --- HERO CONTENT FIX --- */
.hero-content-section {
  padding-top: 0; /* Verkleint de witruimte met de slider */
}

.home-hero-content {
  padding: 40px 0 20px;
  max-width: 1100px; /* BREDER gemaakt voor de titel */
  margin: -40px auto 0; /* Trekt de content OMHOOG over de slider rand */
  background: var(--bg); /* Zorgt dat de achtergrond matcht */
  position: relative;
  z-index: 5;
  border-radius: 40px 40px 0 0; /* Subtiele afronding bovenaan */
}

.home-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 25px;
  color: #0F172A;
}

/* De "muziek" highlight */
.home-title span {
  color: var(--primary);
  background: rgba(255, 107, 107, 0.1);
  padding: 0 15px;
  border-radius: 12px;
  display: inline-block;
}

.home-lead {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 40px;
}

.home-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: #FFF1F1; color: var(--primary);
  border-radius: 100px; font-size: 0.9rem; font-weight: 800;
  margin-bottom: 25px;
}

/* USP KAARTEN */
.usp-ic { font-size: 2.5rem; margin-bottom: 15px; }
.card { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); border: 1px solid #F1F5F9; }

/* PRODUCTEN */
.product { padding: 0; overflow: hidden; border: none; }
.product-img { height: 220px; background-size: cover; background-position: center; }
.product-label { position: absolute; top: 20px; right: 20px; background: var(--accent); color: black; font-weight: 900; font-size: 0.75rem; padding: 6px 12px; border-radius: 8px; text-transform: uppercase; }
.product-body { padding: 30px; text-align: left; }
.product-price { font-size: 1.8rem; font-weight: 900; margin-bottom: 25px; color: #0F172A; }
.product-price .old { font-size: 1.1rem; text-decoration: line-through; color: #CBD5E1; margin-right: 12px; }

/* Mobiel */
@media (max-width: 900px) {
  .home-slider { height: 55vh; }
  .home-hero-content { margin-top: -30px; padding: 30px 15px 10px; }
  .home-title span { padding: 0 8px; }
}