/* By Pretty — exacte design system
   Cormorant Garamond (h1/h2/h4) · Inter (h3/features) · Montserrat (body/UI/buttons)
   bg #fdf7f3 · tekst #3b2a22 · donker #2f211b · para #6a564e
*/

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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #fdf7f3;
  --donker: #2f211b;
  --tekst:  #3b2a22;
  --mid:    #c2a990;
  --beige:  #ede7e1;
  --licht:  #f5efe9;
  --wit:    #ffffff;
  --grijs:  #6a564e;   /* paragraaf / secundaire tekst */
  --muted:  #9a8880;   /* labels, badges, meta */
  --rood:   #a83030;
  --groen:  #3d7a52;
  --shadow: 0 2px 20px rgba(47,33,27,.08);
  --radius: 4px;
  --pill:   100px;
  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-i: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-weight: 300;
  background: var(--bg);
  color: var(--tekst);
  font-size: 1rem;        /* 16px */
  line-height: 1.75;      /* 28px */
  letter-spacing: 0.015em; /* 0.24px */
}

a { color: var(--donker); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Typografie ── */
h1 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 2.5rem;        /* 40px */
  color: var(--donker);
  text-transform: uppercase;
  letter-spacing: 0.12em;   /* 4.8px / 40px */
  line-height: 1.15;        /* ~46px */
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 2.5rem;        /* 40px */
  color: var(--donker);
  letter-spacing: 0.07em;   /* 2.8px / 40px */
  line-height: 1.15;
  margin-bottom: .75rem;
  /* NIET uppercase */
}

h3 {
  font-family: var(--font-i);
  font-weight: 600;
  font-size: 1.05rem;       /* 16.8px */
  color: var(--donker);
  letter-spacing: 0.03em;   /* 0.504px / 16.8px */
  line-height: 1.4;
  margin-bottom: .5rem;
  /* NIET uppercase */
}

h4 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 1rem;
  color: var(--donker);
  letter-spacing: 0.06em;
  margin-bottom: .3rem;
}

p {
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--grijs);
  font-weight: 300;
}
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── Knoppen ── */
.btn {
  display: inline-block;
  background: var(--donker);
  color: var(--bg);
  padding: .875rem 1.5rem;    /* 14px 24px */
  border-radius: var(--pill);
  border: 1.5px solid var(--donker);
  cursor: pointer;
  font-family: var(--font-b);
  font-size: .9rem;           /* 14.4px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;     /* 1.152px / 14.4px */
  transition: background .2s, color .2s, transform .1s;
  text-decoration: none;
}
.btn:hover  { background: transparent; color: var(--donker); text-decoration: none; }
.btn:active { transform: scale(.98); }

.btn-outline {
  background: transparent;
  color: var(--donker);
}
.btn-outline:hover { background: var(--donker); color: var(--bg); }

.btn-sm  { padding: .55rem 1.1rem; font-size: .78rem; }
.btn-full { width: 100%; text-align: center; }

.btn-danger {
  background: var(--rood);
  border-color: var(--rood);
  color: var(--wit);
}
.btn-danger:hover { background: transparent; color: var(--rood); }

/* ── Inner page header (contact, reviews, boeken) ── */
.inner-header {
  background: var(--bg);
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--beige);
}
.inner-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-header .logo-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
}
.inner-header .logo-img { height: 90px; width: auto; }
.inner-header .logo-title {
  font-family: var(--font-i);
  font-size: 1.2rem;          /* 19.2px */
  font-weight: 500;
  letter-spacing: 0.12em;     /* 2.304px / 19.2px */
  color: var(--donker);
  text-transform: uppercase;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--donker);
  padding: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--donker);
  transition: all .2s;
}

/* Mobile nav overlay */
.mobile-nav {
  background: var(--bg);
  border-top: 1px solid var(--beige);
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mobile-nav a {
  color: var(--tekst);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: .5rem 0;
  border-bottom: 1px solid var(--beige);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--donker); text-decoration: none; }

/* ── Legacy site-header (admin pages) ── */
.site-header {
  background: var(--bg);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--beige);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo img { height: 40px; }

.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a {
  color: var(--tekst);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color .2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--donker); text-decoration: none; }

.nav-book {
  background: var(--donker) !important;
  color: var(--bg) !important;
  padding: .6rem 1.4rem;
  border-radius: var(--pill);
  border: 1.5px solid var(--donker);
}
.nav-book:hover { background: transparent !important; color: var(--donker) !important; }

/* ── Hero ── */
.hero { background: var(--bg); }

.hero-gif {
  width: 100%;
  max-width: 638px;
  margin: 0 auto;
  display: block;
}

.hero-content {
  text-align: center;
  padding: 3rem 2rem 3.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.hero-content h1 {
  max-width: 565px;
  margin: 0 auto 1.25rem;
}
.hero-content > p {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--grijs);
  font-size: .9rem;
  line-height: 1.85;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Tweede afbeelding onder hero content */
.hero-img-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0 2rem 1rem;
}
.nagels-fig {
  display: block;
  width: 100%;
  max-width: min(620px, 100%);
  position: relative;
  margin: 0 auto;
  line-height: 0;
}
.nagels-fig img {
  width: 100%;
  height: auto;
  border-radius: 39px;
  display: block;
}

/* Sparkle animaties over nagels foto — exact van bypretty.nl */
.nagels-fig::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,255,255,.4) 40%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  top: 40%;
  left: 45%;
  animation: sparkleCenter1 3.5s ease-in-out 0s infinite;
  pointer-events: none;
  opacity: 0;
}
.nagels-fig::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,.8) 0%, rgba(255,255,255,.3) 40%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  top: 55%;
  left: 55%;
  animation: sparkleCenter2 4.2s ease-in-out 0s infinite;
  pointer-events: none;
  opacity: 0;
}

@keyframes sparkleCenter1 {
  0%   { transform: translate(0,0) scale(.4); opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: translate(40px,-20px) scale(1.2); opacity: .8; }
  80%  { opacity: .3; }
  100% { transform: translate(0,0) scale(.4); opacity: 0; }
}
@keyframes sparkleCenter2 {
  0%   { transform: translate(0,0) scale(.4); opacity: 0; }
  25%  { opacity: 1; }
  55%  { transform: translate(-30px,20px) scale(1.1); opacity: .7; }
  85%  { opacity: .2; }
  100% { transform: translate(0,0) scale(.4); opacity: 0; }
}

/* ── Container / Sections ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section     { padding: 5rem 0; background: var(--bg); }
.section-alt { padding: 5rem 0; background: var(--bg); }

/* ── Features sectie ── */
.features-section {
  padding: 6.4rem 0;   /* 102.4px */
  background: var(--bg);
}
.features-subtitle {
  max-width: 520px;
  margin: .5rem auto 2.5rem;
  color: var(--grijs);
  font-size: .9rem;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  text-align: left;
}
.feature-item { display: flex; flex-direction: column; }
.feature-header {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .6rem;
}
.feature-header h3 { margin-bottom: 0; }
.feature-icon {
  color: var(--tekst);   /* donker #3b2a22 zelfde als body tekst */
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.feature-item > p { font-size: .875rem; }

/* ── Card ── */
.card {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

/* ── Diensten ── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dienst-card {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-top: 3px solid var(--mid);
  transition: transform .2s;
}
.dienst-card:hover { transform: translateY(-4px); }
.dienst-card h3    { margin-bottom: .35rem; color: var(--donker); }
.dienst-card p     { flex: 1 0 auto; font-size: 1rem; line-height: 1.7; color: var(--tekst); font-weight: 400; }
.dienst-card .btn  { align-self: flex-start; }
.dienst-card .meta {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-family: var(--font-b);
  font-weight: 400;
}
.dienst-card .prijs {
  font-size: 1rem;
  font-weight: 600;
  color: var(--donker);
  font-family: var(--font-b);
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
.review-card .sterren { color: var(--mid); font-size: 1rem; margin-bottom: .75rem; }
.review-card p        { font-size: .9rem; line-height: 1.65; font-style: italic; font-family: var(--font-h); color: var(--grijs); letter-spacing: 0; }
.review-card .naam    { font-size: .75rem; color: var(--muted); margin-top: .75rem; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-b); }

/* ── Formulier ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  color: var(--tekst);
  margin-bottom: .4rem;
  font-weight: 400;
  font-family: var(--font-b);
  /* geen uppercase — zelfde als origineel */
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: .875rem;
  font-weight: 300;
  background: var(--wit);
  color: var(--tekst);
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(194,169,144,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { color: var(--rood); font-size: .75rem; margin-top: .3rem; letter-spacing: .02em; }

/* ── Footer ── (transparent, centered layout) */
.site-footer {
  background: var(--bg);
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid var(--beige);
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.footer-logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  margin: 0 auto;
  opacity: .9;
}
.footer-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--tekst);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--mid); text-decoration: none; }
.footer-bottom {
  max-width: 1080px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--beige);
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Booking stappen ── */
.booking-wrap {
  max-width: 680px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.booking-title { text-align: center; font-size: 1.8rem; margin-bottom: .3rem; }
.booking-sub {
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2rem;
  font-family: var(--font-b);
}

.step-indicator {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  align-items: center;
}
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  transition: background .3s, color .3s;
  position: relative;
  letter-spacing: 0;
  text-transform: none;
}
.step-dot.active   { background: var(--donker); color: var(--bg); }
.step-dot.done     { background: var(--mid); color: var(--wit); }
.step-dot::after {
  content: '';
  position: absolute;
  left: 100%;
  width: .5rem; height: 1px;
  background: var(--beige);
  top: 50%; transform: translateY(-50%);
}
.step-dot:last-child::after { display: none; }

.step-panel { display: none; }
.step-panel.active { display: block; }

.step-title { font-size: 1.4rem; margin-bottom: .3rem; }
.step-sub   { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.5rem; font-family: var(--font-b); }

/* Kalender */
.kalender-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
}
.kalender-nav button {
  background: none;
  border: 1px solid var(--beige);
  border-radius: var(--pill);
  padding: .35rem .75rem;
  cursor: pointer; font-size: .85rem; color: var(--donker);
  transition: background .15s;
}
.kalender-nav button:hover { background: var(--beige); }
.kalender-nav .maand-label {
  font-family: var(--font-b); font-size: .75rem;
  color: var(--tekst); text-transform: uppercase; letter-spacing: .1em; font-weight: 500;
}

.kalender {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 1.5rem;
}
.kal-header {
  text-align: center; font-size: .65rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em; padding: .4rem 0;
  font-family: var(--font-b);
}
.kal-dag {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: .85rem; cursor: default;
  background: transparent; color: var(--muted); border: 1px solid transparent;
  transition: background .15s, border-color .15s; user-select: none;
  font-family: var(--font-b);
}
.kal-dag.leeg        { background: transparent; }
.kal-dag.beschikbaar { background: var(--wit); color: var(--tekst); cursor: pointer; border-color: var(--mid); font-weight: 600; box-shadow: 0 1px 3px rgba(47,33,27,.06); }
.kal-dag.beschikbaar:hover { background: var(--licht); border-color: var(--donker); }
.kal-dag.geselecteerd { background: var(--donker); color: var(--bg); border-color: var(--donker); }
.kal-dag.vandaag     { font-weight: 600; }
.kal-dag.verleden    { color: #ddd2cb; }
/* Gesloten/volgeboekte dagen: duidelijk gedimd, niet aanklikbaar */
.kal-dag.gesloten    { color: #d3c7c0; background: transparent; cursor: not-allowed; }

/* Tijdslots */
.slots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: .5rem; margin-top: 1rem;
}
.slot-btn {
  padding: .55rem .4rem;
  border: 1px solid var(--beige); border-radius: var(--radius);
  background: var(--wit); font-family: var(--font-b); font-size: .8rem;
  color: var(--tekst); cursor: pointer; text-align: center;
  transition: background .15s, border-color .15s;
}
.slot-btn:hover        { background: var(--licht); }
.slot-btn.geselecteerd { background: var(--donker); color: var(--bg); border-color: var(--donker); }

.slots-leeg {
  font-size: .85rem; color: var(--muted); margin-top: 1rem; padding: 1rem;
  background: var(--licht); border-radius: var(--radius);
}

/* Dienst-keuze */
.dienst-keuze-list { display: grid; gap: .75rem; margin-top: 1rem; }
.dienst-keuze-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; border: 1px solid var(--beige); border-radius: var(--radius);
  cursor: pointer; background: var(--wit); transition: border-color .2s, background .2s;
}
.dienst-keuze-item:hover    { border-color: var(--mid); background: var(--bg); }
.dienst-keuze-item { position: relative; }
.dienst-keuze-item.selected { border-color: var(--donker); background: var(--licht); box-shadow: inset 0 0 0 2px var(--donker); }
.dienst-keuze-item.selected::after,
.dienst-variant.selected::after {
  content: "✓"; position: absolute; top: 8px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--donker); color: var(--bg);
  font-size: .7rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.dienst-variant { position: relative; }
.dienst-keuze-item .duur    { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-b); }
.dienst-keuze-item .prijs   { margin-left: auto; font-size: .85rem; color: var(--donker); font-family: var(--font-b); flex-shrink: 0; }
.dienst-keuze-item.heeft-desc { align-items: flex-start; }
.dienst-keuze-item .dienst-info { flex: 1; }
.dienst-keuze-item .dienst-desc { list-style: none; padding: 0; margin: .45rem 0 0; }
.dienst-keuze-item .dienst-desc li { font-size: .75rem; color: var(--muted); padding: .12rem 0; }
.dienst-keuze-item .dienst-desc li::before { content: "–"; margin-right: .4em; color: var(--accent, #7a5c44); }

/* Samenvatting */
.overzicht-box {
  background: var(--licht); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.overzicht-box .overzicht-rij {
  display: flex; justify-content: space-between;
  font-size: .85rem; padding: .4rem 0; border-bottom: 1px solid var(--beige);
}
.overzicht-box .overzicht-rij:last-child { border-bottom: none; }
.overzicht-box .label  { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: .7rem; font-family: var(--font-b); }
.overzicht-box .waarde { color: var(--tekst); font-weight: 500; font-family: var(--font-b); }

/* Wachtlijst */
.wachtlijst-banner {
  background: #fdf5e6; border: 1px solid var(--mid); border-radius: var(--radius);
  padding: 1rem 1.25rem; margin-top: 1.5rem; font-size: .85rem;
}
.wachtlijst-banner p { margin-bottom: .5rem; color: #6b4c30; }

/* ── Bevestiging / annulering ── */
.confirm-wrap {
  max-width: 520px; margin: 5rem auto; padding: 0 1.5rem; text-align: center;
}
.confirm-icon { font-size: 3rem; margin-bottom: 1rem; }
.confirm-box {
  background: var(--wit); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2rem; margin: 1.5rem 0; text-align: left;
}
.confirm-box .rij {
  display: flex; gap: 1rem; padding: .5rem 0;
  border-bottom: 1px solid var(--beige); font-size: .85rem;
}
.confirm-box .rij:last-child { border-bottom: none; }
.confirm-box .lbl { color: var(--muted); min-width: 130px; text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; font-family: var(--font-b); }

/* ── Admin layout ── */
.admin-wrap {
  display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 64px);
}
.admin-sidebar { background: var(--donker); color: rgba(253,247,243,.75); padding: 1.5rem 0; }
.admin-sidebar .logo { padding: .5rem 1.5rem 1.5rem; display: block; }
.admin-sidebar .logo img { height: 32px; }
.admin-nav a {
  display: flex; align-items: center; gap: .7rem; padding: .75rem 1.5rem;
  color: rgba(253,247,243,.65); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  transition: background .15s, color .15s; font-family: var(--font-b);
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,.08); color: var(--bg); text-decoration: none;
}
.admin-nav a i { width: 16px; text-align: center; font-size: .85rem; }
.admin-main { padding: 2rem; background: var(--bg); overflow-y: auto; }
.admin-header { margin-bottom: 1.5rem; }
.admin-header h1 { font-size: 1.5rem; margin-bottom: 0; }
.admin-kal-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; }
@media(max-width:900px) { .admin-kal-wrap { grid-template-columns: 1fr; } }

.admin-tabel { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-tabel th {
  text-align: left; padding: .65rem 1rem; border-bottom: 2px solid var(--beige);
  color: var(--muted); font-weight: 500; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-b);
}
.admin-tabel td { padding: .7rem 1rem; border-bottom: 1px solid var(--licht); vertical-align: top; color: var(--tekst); }
.admin-tabel tr:last-child td { border-bottom: none; }
.admin-tabel tr:hover td { background: var(--licht); }

/* Status badges */
.badge {
  display: inline-block; padding: .2rem .65rem; border-radius: var(--pill);
  font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-family: var(--font-b);
}
.badge-approved  { background: #e6f2ec; color: var(--groen); }
.badge-pending   { background: #fef8e6; color: #a07810; }
.badge-cancelled { background: #fae8e8; color: var(--rood); }
.badge-rejected  { background: #f0e6e6; color: #883030; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card {
  background: var(--wit); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.25rem; text-align: center;
}
.stat-card .getal { font-size: 2rem; color: var(--donker); font-family: var(--font-h); letter-spacing: .05em; }
.stat-card .label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; font-family: var(--font-b); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(47,33,27,.35); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--wit); border-radius: var(--radius); box-shadow: 0 8px 48px rgba(47,33,27,.18);
  padding: 2rem; max-width: 480px; width: 100%;
}
.modal h3 { margin-bottom: 1rem; }
.modal-actions { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem; }

/* ── Toast ── */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300; display: flex; flex-direction: column; gap: .5rem; }
.toast {
  background: var(--donker); color: var(--bg); padding: .75rem 1.25rem; border-radius: var(--pill);
  font-size: .8rem; box-shadow: 0 4px 20px rgba(47,33,27,.25); animation: toastIn .3s ease;
  max-width: 320px; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-b);
}
.toast.success { background: var(--groen); }
.toast.error   { background: var(--rood); }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Loader ── */
.spinner {
  width: 28px; height: 28px;
  border: 2px solid var(--beige); border-top-color: var(--donker);
  border-radius: 50%; animation: spin .7s linear infinite; margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Login ── */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem; background: var(--licht);
}
.login-card {
  background: var(--wit); border-radius: var(--radius); box-shadow: 0 8px 48px rgba(47,33,27,.12);
  padding: 2.5rem; width: 100%; max-width: 380px;
}
.login-card .logo { text-align: center; margin-bottom: 1.75rem; }
.login-card .logo img { height: 52px; margin: 0 auto; }
.login-card h2 { text-align: center; margin-bottom: 1.5rem; font-size: 1.1rem; }

/* ── Mijn afspraken ── */
.afspraak-card {
  background: var(--wit); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem; margin-bottom: 1rem; display: flex; gap: 1.5rem; align-items: flex-start;
}
.afspraak-datum {
  background: var(--donker); color: var(--bg); border-radius: var(--radius);
  padding: .75rem; text-align: center; min-width: 64px;
}
.afspraak-datum .dag  { font-size: 1.6rem; line-height: 1; font-family: var(--font-h); }
.afspraak-datum .mnd  { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; font-family: var(--font-b); }
.afspraak-info h4     { margin-bottom: .3rem; }
.afspraak-info .meta  { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-b); }
.afspraak-actions     { margin-left: auto; }

/* ── Responsive ── */
@media(max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .site-nav a:not(.nav-book) { display: none; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .afspraak-card { flex-direction: column; }
  .afspraak-actions { margin-left: 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── Inline editing (admin only) ── */
.bp-editable {
  position: relative;
  border-radius: 3px;
  transition: outline .15s;
}
.bp-editable:hover {
  outline: 2px dashed rgba(194,169,144,.55);
  outline-offset: 4px;
  cursor: text;
}
.bp-editable.bp-editing {
  outline: 2px solid var(--mid);
  outline-offset: 4px;
  background: rgba(194,169,144,.07);
}
.bp-pencil {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: var(--mid);
  color: var(--wit);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s, transform .15s;
  pointer-events: none;
  z-index: 10;
  padding: 0;
}
.bp-editable:hover .bp-pencil,
.bp-editable.bp-editing .bp-pencil {
  opacity: 1;
  pointer-events: auto;
}
.bp-pencil:hover {
  transform: scale(1.15);
  background: var(--donker);
}

/* Toast */
.bp-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--donker);
  color: var(--wit);
  font-family: var(--font-b);
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .6rem 1.1rem;
  border-radius: var(--pill);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
  z-index: 9999;
  pointer-events: none;
}
.bp-toast.bp-toast-in {
  opacity: 1;
  transform: translateY(0);
}
.bp-toast.bp-toast-err {
  background: var(--rood);
}

/* ── Topbar (nieuw design — sticky, compact) ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  background: rgba(253,247,243,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige);
}
.topbar .brand { display: flex; align-items: center; gap: .6rem; }
.topbar .brand img { height: 30px; width: auto; }
.topbar .brand span {
  font-family: var(--font-i); font-size: .8rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--donker);
}
.topbar .menu {
  background: none; border: none; color: var(--donker); padding: .4rem;
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.topbar .menu span { display: block; width: 22px; height: 1.5px; background: var(--donker); }
.topbar-nav { display: none; }

/* ── Topbar (legacy admin) ── */
.site-topbar {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 50;
}
.topbar-login-btn {
  display: inline-block;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  color: var(--wit);
  border-radius: var(--pill);
  font-family: var(--font-b);
  font-size: .8rem;
  letter-spacing: .04em;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .15s;
}
.topbar-login-btn:hover {
  background: rgba(255,255,255,.28);
}

/* ── Instagram sectie ── */
.insta-sectie {
  padding: 5rem 0;
  background: var(--beige);
  text-align: center;
}
.insta-eyebrow {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: .5rem;
}
.insta-sectie h2 { margin-bottom: .25rem; }
.insta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

/* ── Modellen sectie (legacy) ── */
.modellen-sectie { background: var(--licht, #f5f0eb); }
.modellen-intro { font-size: 1.05rem; max-width: 480px; margin: .75rem auto 1.5rem; line-height: 1.7; color: var(--donker); }
.modellen-diensten { display: inline-block; text-align: left; margin: 0 auto 1.5rem; }
.modellen-diensten ul { list-style: none; padding: 0; margin: .5rem 0 0; }
.modellen-diensten ul li { padding: .25rem 0; color: var(--donker); }
.modellen-diensten ul li::before { content: "—"; margin-right: .5rem; color: var(--accent, #7a5c44); }
.modellen-info { max-width: 440px; margin: 0 auto 1.75rem; color: var(--muted, #6b5c50); font-size: .95rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   By Pretty v2 — Nieuw design systeem (2025)
   ═══════════════════════════════════════════════════ */

/* ── Page intro header ── */
.page-intro { text-align: center; padding: 2.5rem 1.5rem 1.5rem; }
.page-intro .eyebrow {
  font-family: var(--font-i); font-size: .62rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem;
}
.page-intro h1 {
  font-family: var(--font-h); font-weight: 500; font-size: 2.1rem;
  letter-spacing: .04em; color: var(--donker); line-height: 1.12; margin-bottom: .6rem;
}
.page-intro p { font-size: .85rem; line-height: 1.8; color: var(--grijs); max-width: 36ch; margin: 0 auto; }
.page-intro p a { color: var(--donker); text-decoration: underline; text-underline-offset: 2px; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-i); font-size: .62rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem;
}

/* ── Section frame ── */
.section-v2 { padding: 3.5rem 1.5rem; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head .eyebrow { margin-bottom: .6rem; }
.section-head h2 {
  font-family: var(--font-h); font-weight: 500; font-size: 1.85rem;
  letter-spacing: .05em; color: var(--donker); line-height: 1.15;
}
.section-head p { font-size: .84rem; color: var(--grijs); max-width: 36ch; margin: .7rem auto 0; }

/* ── Hero (v2) ── */
.hero-v2 { text-align: center; padding: 2.5rem 1.5rem 1rem; }
.hero-v2 .eyebrow { margin-bottom: 1.25rem; }
.hero-v2 h1 {
  font-family: var(--font-h); font-weight: 500; text-transform: uppercase;
  font-size: 2rem; line-height: 1.18; letter-spacing: .1em; color: var(--donker);
  margin: 0 auto 1rem; max-width: 14ch;
}
.hero-v2 p {
  font-size: .86rem; line-height: 1.85; color: var(--grijs);
  max-width: 34ch; margin: 0 auto 1.75rem;
}
.hero-buttons-v2 { display: flex; flex-direction: column; gap: .7rem; max-width: 18rem; margin: 0 auto; }

/* ── Hero foto (v2) ── */
.hero-photo { padding: 1.5rem 1.25rem 0; }
.nagels-fig-v2 {
  position: relative; margin: 0; line-height: 0;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(47,33,27,.12);
}
.nagels-fig-v2 img { width: 100%; display: block; }
.nagels-fig-v2::after, .nagels-fig-v2::before {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,255,255,.4) 40%, rgba(255,255,255,0) 70%);
}
.nagels-fig-v2::after { width: 14px; height: 14px; top: 38%; left: 44%; animation: spk1 3.5s ease-in-out infinite; }
.nagels-fig-v2::before { width: 10px; height: 10px; top: 56%; left: 56%; animation: spk2 4.2s ease-in-out infinite; }
@keyframes spk1 { 0%{transform:translate(0,0) scale(.4);opacity:0} 20%{opacity:1} 50%{transform:translate(34px,-18px) scale(1.2);opacity:.8} 80%{opacity:.3} 100%{transform:translate(0,0) scale(.4);opacity:0} }
@keyframes spk2 { 0%{transform:translate(0,0) scale(.4);opacity:0} 25%{opacity:1} 55%{transform:translate(-26px,18px) scale(1.1);opacity:.7} 85%{opacity:.2} 100%{transform:translate(0,0) scale(.4);opacity:0} }

/* ── btn-ghost ── */
.btn-ghost {
  background: transparent; border: none; color: var(--grijs);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem; text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer; font-family: var(--font-b);
}

/* ── Features lijst (v2) ── */
.features-v2 { display: flex; flex-direction: column; }
.feature-row {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--beige);
}
.feature-row:first-child { border-top: 1px solid var(--beige); }
.feature-row .ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--licht); border: 1px solid var(--beige);
  display: flex; align-items: center; justify-content: center; color: var(--tekst);
}
.feature-row .ic svg { width: 22px; height: 22px; }
.feature-row h3 {
  font-family: var(--font-i); font-weight: 600; font-size: .95rem;
  color: var(--donker); letter-spacing: .01em; margin-bottom: .2rem;
}
.feature-row p { font-size: .8rem; line-height: 1.6; color: var(--grijs); margin-bottom: 0; }

/* ── Dienst cards (v2) ── */
.diensten-v2 { display: flex; flex-direction: column; gap: 1rem; }
.dienst-card-v2 {
  background: var(--wit); border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(47,33,27,.06);
  border-top: 3px solid var(--mid); padding: 1.5rem 1.5rem 1.4rem;
}
.dienst-card-v2 .top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dienst-card-v2 h3 { font-family: var(--font-i); font-weight: 600; font-size: 1rem; color: var(--donker); margin-bottom: 0; }
.dienst-card-v2 .prijs { font-family: var(--font-b); font-weight: 600; font-size: 1rem; color: var(--donker); flex-shrink: 0; }
.dienst-card-v2 .meta {
  font-size: .66rem; color: var(--muted); letter-spacing: .1em;
  text-transform: uppercase; margin: .35rem 0 .7rem; font-weight: 400;
}
.dienst-card-v2 p { font-size: .8rem; line-height: 1.6; color: var(--grijs); margin-bottom: 1rem; }

/* ── Review cards (v2) ── */
.reviews-v2 { display: flex; flex-direction: column; gap: 1rem; }
.review-card-v2 {
  background: var(--wit); border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(47,33,27,.06); padding: 1.5rem;
}
.review-card-v2 .sterren { color: var(--mid); font-size: .95rem; letter-spacing: .15em; margin-bottom: .7rem; }
.review-card-v2 p { font-family: var(--font-h); font-style: italic; font-size: 1.05rem; line-height: 1.55; color: var(--tekst); margin-bottom: 0; }
.review-card-v2 .naam { font-family: var(--font-b); font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .85rem; }
.review-card-v2 .rol { font-family: var(--font-i); font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .15rem; }
.center { text-align: center; margin-top: 1.75rem; }

/* ── Reviews stat (reviews pagina) ── */
.reviews-stat { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: 2rem; }
.reviews-stat .score { font-family: var(--font-h); font-size: 2.4rem; font-weight: 500; color: var(--donker); line-height: 1; }
.reviews-stat .meta { text-align: left; }
.reviews-stat .stars { color: var(--mid); letter-spacing: .12em; font-size: .9rem; }
.reviews-stat .count { font-family: var(--font-i); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .15rem; }
.reviews-cta { text-align: center; margin-top: 2.5rem; padding: 2.5rem 1.5rem 0; border-top: 1px solid var(--beige); }
.reviews-cta h2 { font-family: var(--font-h); font-weight: 500; font-size: 1.85rem; letter-spacing: .04em; color: var(--donker); margin-bottom: .5rem; }
.reviews-cta p { font-size: .84rem; color: var(--grijs); max-width: 32ch; margin: 0 auto 1.5rem; }

/* ── Modellen sectie (v2) ── */
.modellen-v2 { background: var(--licht); text-align: center; }
.modellen-v2 .intro { font-family: var(--font-h); font-size: 1.2rem; line-height: 1.5; color: var(--donker); max-width: 30ch; margin: 0 auto 1.25rem; }
.modellen-v2 .intro strong { font-weight: 600; }
.modellen-v2 .diensten-list { display: inline-block; text-align: left; margin: 0 auto 1.5rem; }
.modellen-v2 .diensten-list p { font-family: var(--font-i); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.modellen-v2 .diensten-list ul { list-style: none; }
.modellen-v2 .diensten-list li { padding: .2rem 0; font-size: .88rem; color: var(--donker); }
.modellen-v2 .diensten-list li::before { content: "—"; margin-right: .55rem; color: var(--mid); }

/* ── CTA dark (v2) ── */
.cta-dark { background: var(--donker); text-align: center; color: var(--bg); }
.cta-dark h2 { font-family: var(--font-h); font-weight: 500; font-size: 1.95rem; letter-spacing: .05em; color: var(--bg); }
.cta-dark p { font-size: .84rem; color: rgba(253,247,243,.72); max-width: 30ch; margin: .7rem auto 1.75rem; }
.cta-dark .btn { background: var(--bg); color: var(--donker); border-color: var(--bg); }

/* ── Footer v2 ── */
.site-footer-v2 { background: var(--bg); text-align: center; padding: 3rem 1.5rem 2.25rem; border-top: 1px solid var(--beige); margin-top: 0; }
.site-footer-v2 .flogo { height: 80px; width: 80px; object-fit: contain; margin: 0 auto 1.5rem; opacity: .9; display: block; }
.footer-nav-v2 { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; justify-content: center; margin-bottom: 1.75rem; }
.footer-nav-v2 a { font-family: var(--font-b); font-size: .74rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--tekst); }
.footer-bottom-v2 { padding-top: 1.25rem; border-top: 1px solid var(--beige); font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── Contact pagina (v2) ── */
.contact-body { padding: 0 1.5rem; max-width: 520px; margin: 0 auto; }
.socials { display: flex; gap: .85rem; justify-content: center; margin: 0 0 2rem; }
.socials a {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--beige);
  background: var(--wit); display: flex; align-items: center; justify-content: center;
  color: var(--donker); transition: .2s;
}
.socials a:hover { background: var(--licht); border-color: var(--mid); text-decoration: none; }
.contact-note { text-align: center; font-size: .82rem; color: var(--grijs); margin-bottom: 1.75rem; }
.contact-note a { color: var(--donker); text-decoration: underline; text-underline-offset: 2px; }
.or-line { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.5rem; color: var(--muted); }
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: var(--beige); }
.or-line span { font-family: var(--font-i); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.form-succes { background: #e6f4ec; border-radius: var(--radius); padding: .85rem 1rem; color: var(--groen); font-size: .82rem; line-height: 1.5; }

/* ── Bevestigd (v2) ── */
.confirm-wrap-v2 { max-width: 460px; margin: 0 auto; padding: 3rem 1.5rem 0; text-align: center; }
.confirm-icon-v2 {
  width: 72px; height: 72px; border-radius: 50%; background: #e6f4ec; color: var(--groen);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.confirm-icon-v2 svg { width: 34px; height: 34px; }
.confirm-wrap-v2 h1 { font-family: var(--font-h); font-weight: 500; font-size: 2.1rem; letter-spacing: .04em; color: var(--donker); margin-bottom: .5rem; }
.confirm-wrap-v2 .lead { font-size: .86rem; color: var(--grijs); margin-bottom: 1.75rem; }
.confirm-box-v2 {
  background: var(--wit); border-radius: 12px;
  box-shadow: 0 2px 22px rgba(47,33,27,.06); padding: .5rem 1.4rem; margin-bottom: 1.75rem; text-align: left;
}
.confirm-rij { display: flex; gap: 1rem; justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--beige); }
.confirm-rij:last-child { border-bottom: none; }
.confirm-rij .lbl { font-family: var(--font-i); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.confirm-rij .val { font-family: var(--font-b); font-size: .86rem; font-weight: 500; color: var(--tekst); text-align: right; }
.confirm-note { font-size: .78rem; color: var(--grijs); line-height: 1.65; margin-bottom: 1.75rem; max-width: 34ch; margin-left: auto; margin-right: auto; }

/* ── Booking wrap (v2) ── */
.booking-wrap-v2 { padding: 1.75rem 1.25rem 0; }
.step-indicator-v2 { display: flex; gap: .4rem; margin: 0 auto 2rem; justify-content: center; align-items: center; }
.step-dot-v2 {
  width: 30px; height: 30px; border-radius: 50%; background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-i); font-size: .72rem; font-weight: 600; color: var(--muted);
  transition: .3s; position: relative;
}
.step-dot-v2.active { background: var(--donker); color: var(--bg); }
.step-dot-v2.done { background: var(--mid); color: var(--wit); }
.step-dot-v2::after { content: ''; position: absolute; left: 100%; width: .85rem; height: 1px; background: var(--beige); top: 50%; transform: translateY(-50%); }
.step-dot-v2:last-child::after { display: none; }
.dienst-list-v2 { display: flex; flex-direction: column; gap: .7rem; }
.dienst-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem;
  border: 1px solid var(--beige); border-radius: var(--radius); cursor: pointer;
  background: var(--wit); transition: .2s;
}
.dienst-item:hover { border-color: var(--mid); }
.dienst-item.selected { border-color: var(--donker); background: var(--licht); box-shadow: 0 0 0 1px var(--donker) inset; }
.dienst-item .info { flex: 1; }
.dienst-item h3 { font-family: var(--font-i); font-weight: 600; font-size: .92rem; color: var(--donker); margin-bottom: 0; }
.dienst-item .duur { font-family: var(--font-i); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .15rem; }
.dienst-item .prijs { font-family: var(--font-b); font-weight: 600; font-size: .95rem; color: var(--donker); }
.overzicht-box-v2 { background: var(--licht); border-radius: var(--radius); padding: .5rem 1.25rem; margin-bottom: 1.4rem; }
.overzicht-rij-v2 { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--beige); }
.overzicht-rij-v2:last-child { border-bottom: none; }
.overzicht-rij-v2 .label { font-family: var(--font-i); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.overzicht-rij-v2 .waarde { font-family: var(--font-b); font-size: .84rem; font-weight: 500; color: var(--tekst); text-align: right; }
.nav-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.nav-row .right { margin-left: auto; }
.step-title-v2 { font-family: var(--font-h); font-weight: 500; font-size: 1.5rem; letter-spacing: .03em; color: var(--donker); margin-bottom: .2rem; }
.step-sub-v2 { font-family: var(--font-i); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 1.4rem; }

/* ══ Desktop breakpoint ≥ 769px ═══════════════════════════════════════════ */
@media (min-width: 769px) {

  /* ── Topbar: desktop nav zichtbaar, hamburger verborgen ── */
  .topbar { padding: 0 2.5rem; }
  .topbar-nav {
    display: flex !important; align-items: center; gap: 1.75rem;
    margin-left: auto; margin-right: 1.5rem;
  }
  .topbar-nav a {
    font-family: var(--font-i); font-size: .77rem; font-weight: 600;
    letter-spacing: .07em; text-transform: uppercase; color: var(--donker);
    text-decoration: none; transition: opacity .18s;
  }
  .topbar-nav a:hover { opacity: .5; text-decoration: none; }
  .topbar-nav .btn-topbar {
    padding: .42rem 1.15rem; border: 1.5px solid var(--donker); border-radius: 3rem;
    color: var(--donker); background: transparent;
    font-family: var(--font-i); font-size: .74rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; transition: .18s;
  }
  .topbar-nav .btn-topbar:hover { background: var(--donker); color: var(--bg); }
  .topbar .menu { display: none !important; }

  /* ── Hero wrap: naast elkaar ── */
  .hero-wrap {
    display: flex; align-items: center; gap: 2.5rem;
    max-width: 1120px; margin: 0 auto; padding: 3.5rem 3rem 1.5rem;
  }
  .hero-v2 {
    flex: 1; text-align: left; padding: 0; margin: 0;
    max-width: none;
  }
  .hero-v2 h1 { font-size: 3.2rem; max-width: 16ch; }
  .hero-v2 p { max-width: 40ch; }
  .hero-buttons-v2 { flex-direction: row; max-width: none; margin: 0; flex-wrap: wrap; }
  .hero-photo { flex: 1; padding: 0; max-width: 500px; }
  .nagels-fig-v2 { max-width: 100%; }

  /* ── Sections: meer ruimte, gecentreerd ── */
  .section-v2 { padding: 5rem 3rem; }
  .section-v2 .section-head { max-width: 640px; }
  .section-v2 .section-head h2 { font-size: 2.4rem; }

  /* ── Features: 2-kolom grid ── */
  .features-v2 { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; }
  .feature-row:nth-child(2) { border-top: 1px solid var(--beige); }

  /* ── Diensten-cards: 3-kolom ── */
  .diensten-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  /* ── Review-cards: 3-kolom ── */
  .reviews-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .reviews-v2 .review-card-v2 { margin: 0; }

  /* ── Modellen sectie breder ── */
  .modellen-inner-v2 { max-width: 900px; margin: 0 auto; }

  /* ── CTA dark ── */
  .cta-dark { padding: 6.5rem 3rem; }
  .cta-dark h2 { font-size: 2.75rem; }

  /* ── Footer ── */
  .site-footer-v2 { padding: 4rem 3rem 2.5rem; }

  /* ── Boekpagina desktop ── */
  .booking-wrap-v2 { max-width: 640px; margin: 0 auto; padding: 2.5rem 2rem 0; }
  /* Eén kolom: diensten mét omschrijving hebben de volle breedte nodig,
     anders breekt de tekst na elk paar woorden in een te smalle kolom. */
  .dienst-list-v2 { display: flex; flex-direction: column; gap: .8rem; }

  /* ── Contact desktop ── */
  .contact-body { padding: 0; }

  /* ── Bevestigd desktop ── */
  .confirm-wrap-v2 { padding: 5rem 2rem 0; }

  /* ── Reviews pagina desktop ── */
  .reviews-stat { gap: 2rem; padding: 2rem 0; }
  .reviews-cta { padding: 3rem 0; }
}

/* ── Extra large: inner content max-width centering ── */
@media (min-width: 1100px) {
  .section-v2 > * { max-width: 1060px; margin-left: auto; margin-right: auto; }
  .features-v2, .diensten-v2, .reviews-v2 { max-width: 1060px; margin-left: auto; margin-right: auto; }
}

/* ── Klanten / CRM (Module A) ──────────────────────────────────────────────── */
.klanten-zoek { margin-bottom: 1.25rem; }
.klanten-zoek input {
  width: 100%; max-width: 420px; padding: .6rem 1rem;
  border: 1px solid var(--beige); border-radius: var(--radius);
  font-family: var(--font-b); font-size: .85rem; background: var(--wit); color: var(--tekst);
}
.klanten-tabel .klant-rij { cursor: pointer; }
.klanten-tabel .klant-rij:hover td { background: var(--licht); }
.klant-tag {
  display: inline-block; background: var(--licht); color: var(--donker);
  border: 1px solid var(--beige); border-radius: var(--pill);
  font-size: .68rem; padding: .12rem .55rem; margin: .1rem .1rem 0 0;
  font-family: var(--font-b); letter-spacing: .02em; white-space: nowrap;
}

/* Bredere twee-koloms klant-modal */
.modal-klant { max-width: 860px; max-height: 90vh; overflow-y: auto; }
.klant-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.klant-modal-head h3 { margin-bottom: 0; }
.modal-x { background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 .25rem; }
.modal-x:hover { color: var(--donker); }
.klant-alert-banner {
  background: #f7e7e3; border: 1px solid var(--rood); color: var(--rood);
  border-radius: var(--radius); padding: .6rem .9rem; font-size: .85rem;
  font-weight: 500; margin-bottom: 1rem;
}
.klant-alert-banner.hidden { display: none; }
.klant-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.klant-col-kop {
  font-family: var(--font-b); font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: .75rem; font-weight: 600;
}
.km-historie-tabel { font-size: .8rem; }
.km-historie-tabel td { padding: .45rem .5rem; }

/* Notities */
.km-note { border-left: 3px solid var(--beige); padding: .5rem .75rem; margin-bottom: .6rem; background: var(--licht); border-radius: 0 var(--radius) var(--radius) 0; }
.km-note-body { font-size: .85rem; color: var(--tekst); line-height: 1.5; white-space: pre-wrap; }
.km-note-meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: .35rem; font-size: .7rem; color: var(--muted); }
.km-note-follow { color: var(--donker); font-weight: 500; }
.km-note-del { background: none; border: none; color: var(--muted); cursor: pointer; margin-left: auto; padding: 0 .2rem; }
.km-note-del:hover { color: var(--rood); }
.km-note-add { margin-top: .75rem; }
.km-note-add textarea { width: 100%; padding: .55rem .75rem; border: 1px solid var(--beige); border-radius: var(--radius); font-family: var(--font-b); font-size: .82rem; resize: vertical; }
.km-note-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .5rem; flex-wrap: wrap; }

@media (max-width: 720px) {
  .klant-cols { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Opt-in checkbox-rij (boekformulier) */
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin: .25rem 0 1rem; }
.form-check input[type="checkbox"] { width: auto; margin-top: .2rem; flex-shrink: 0; accent-color: var(--donker); }
.form-check label { font-size: .82rem; line-height: 1.5; color: var(--grijs); font-weight: 300; cursor: pointer; }

/* Kassa (Module C) */
.kassa-periode { display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.kassa-periode label { display: flex; flex-direction: column; gap: .3rem; font-size: .78rem; color: var(--grijs); }
.kassa-periode input { padding: .5rem .7rem; border: 1px solid var(--beige); border-radius: var(--radius); font-family: var(--font-b); font-size: .85rem; }
.kassa-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }

/* Diensten-categorie koppen */
.diensten-cat-kop { font-family: var(--font-h); font-size: 1.5rem; color: var(--donker); margin: 1rem 0 .25rem; text-align: center; }
.diensten-cat-kop:first-child { margin-top: 0; }
.dienst-cat-kop { grid-column: 1 / -1; font-family: var(--font-b); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 1.25rem 0 .25rem; }
.dienst-cat-kop:first-child { margin-top: 0; }
.dienst-cat-rij td { background: var(--licht); font-family: var(--font-b); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: .5rem 1rem !important; }

/* Dienst-varianten (boeking) */
.dienst-groep { border: 1px solid var(--beige); border-radius: var(--radius); padding: 1rem 1.2rem; background: var(--wit); }
.dienst-groep-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.dienst-groep-head strong { font-size: 1rem; color: var(--donker); }
.dienst-groep .vanaf { font-size: .8rem; color: var(--muted); font-family: var(--font-b); white-space: nowrap; }
.dienst-varianten { display: flex; flex-direction: column; gap: .4rem; margin-top: .6rem; }
.dienst-variant { display: flex; align-items: center; gap: .75rem; padding: .55rem .8rem; border: 1px solid var(--beige); border-radius: var(--radius); cursor: pointer; transition: border-color .15s, background .15s; }
.dienst-variant:hover { border-color: var(--mid); background: var(--bg); }
.dienst-variant.selected { border-color: var(--donker); background: var(--licht); }
.dienst-variant .v-naam { flex: 1; font-size: .9rem; color: var(--tekst); }
.dienst-variant .v-duur { font-size: .72rem; color: var(--muted); font-family: var(--font-b); }
.dienst-variant .v-prijs { font-size: .9rem; color: var(--donker); font-family: var(--font-b); font-weight: 600; min-width: 64px; text-align: right; }

/* Dienst-varianten (admin modal) */
.dm-variant-rij { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .4rem .6rem; background: var(--licht); border-radius: var(--radius); margin-bottom: .35rem; font-size: .82rem; }
.dm-variant-del { background: none; border: none; color: var(--muted); font-size: 1.2rem; line-height: 1; cursor: pointer; padding: 0 .3rem; }
.dm-variant-del:hover { color: var(--rood); }
.dm-variant-add { display: flex; gap: .4rem; align-items: center; }
.dm-variant-add input { padding: .4rem .55rem; border: 1px solid var(--beige); border-radius: var(--radius); font-size: .82rem; }

/* Klant-foto's (Module A) */
.km-fotos { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .5rem; margin: .25rem 0 .75rem; }
.km-foto { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--beige); }
.km-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.km-foto-badge { position: absolute; top: 4px; left: 4px; font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: .1rem .35rem; border-radius: var(--pill); color: #fff; }
.km-foto-before { background: rgba(122,92,68,.92); }
.km-foto-after  { background: rgba(31,122,77,.92); }
.km-foto-del { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border: none; border-radius: 50%; background: rgba(47,33,27,.6); color: #fff; font-size: 1rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.km-foto-del:hover { background: var(--rood); }
.km-foto-cap { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(47,33,27,.6); color: #fff; font-size: .62rem; padding: .15rem .3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.km-foto-add { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.km-foto-add select, .km-foto-add input[type="text"] { padding: .4rem .55rem; border: 1px solid var(--beige); border-radius: var(--radius); font-size: .8rem; font-family: var(--font-b); }
.km-foto-add input[type="text"] { flex: 1; min-width: 100px; }
.km-foto-btn { cursor: pointer; white-space: nowrap; }

/* Intake/consent (Module A) */
.km-form-rij { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .45rem .6rem; background: var(--licht); border-radius: var(--radius); margin-bottom: .35rem; font-size: .82rem; }
.km-intake-link-out { display: flex; gap: .4rem; margin-top: .5rem; }
.km-intake-link-out.hidden { display: none; }
.km-intake-link-out input { flex: 1; padding: .4rem .55rem; border: 1px solid var(--beige); border-radius: var(--radius); font-size: .76rem; font-family: var(--font-b); color: var(--grijs); }

/* Voorraad (Module D) */
.voorraad-bestel { background: #f7e7e3; border: 1px solid var(--rood); border-radius: var(--radius); padding: .7rem 1rem; margin-bottom: 1.25rem; font-size: .85rem; color: var(--rood); display: flex; flex-direction: column; gap: .25rem; }
.voorraad-bestel span { color: var(--tekst); font-size: .8rem; }
.admin-tabel tr.voorraad-laag td { background: #fcf2ef; }
.voorraad-knop { width: 26px; height: 26px; border: 1px solid var(--beige); background: var(--wit); border-radius: 6px; font-size: 1rem; line-height: 1; cursor: pointer; color: var(--donker); }
.voorraad-knop:hover { background: var(--licht); }
.voorraad-aantal { display: inline-block; min-width: 28px; text-align: center; font-weight: 600; }

/* Boekflow stap 1: "Volgende" altijd in beeld (lange dienstenlijst) */
#step-1 .nav-row {
  position: sticky;
  bottom: 0;
  background: linear-gradient(to top, var(--wit) 65%, rgba(255,255,255,0));
  padding: 1.1rem 0 .4rem;
  margin-top: .5rem;
  z-index: 5;
}

/* Instellingen — sectie-navigatie (#13) + automations-status (#14) */
.inst-subnav { position: sticky; top: 0; z-index: 5; display: flex; flex-wrap: wrap; gap: .4rem;
  padding: .5rem 0; margin-bottom: 1.25rem; background: var(--bg); border-bottom: 1px solid var(--beige); }
.inst-chip { font-family: var(--font-b); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: var(--pill); border: 1px solid var(--beige); background: var(--wit);
  color: var(--grijs); cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.inst-chip:hover { background: var(--licht); border-color: var(--mid); color: var(--donker); }
.inst-h3 { font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-b); color: var(--donker); scroll-margin-top: 64px; }
.inst-auto-status { font-size: .72rem; font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; margin-left: .5rem; }
