/* ═══════════════════════════════════════════════════════
   PRIME MOMENTS — design.css
   Visuele verbeteringen:
   1. Cinematische letterbox op de hero
   2. Diagonale sectieovergangen
   3. Werkwijze als visuele timeline
   4. Grote decoratieve nummers
═══════════════════════════════════════════════════════ */


/* ════════════════════════════════
   1. CINEMATISCHE LETTERBOX
   Twee zwarte balken schuiven de hero in,
   zoals bij een echte film in 2.39:1.
════════════════════════════════ */

.hero-letterbox {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  z-index: 6;
  pointer-events: none;
}

.hero-letterbox-top {
  top: 0;
  height: clamp(48px, 9.5vh, 110px);
  transform: translateY(-100%);
  animation: lbDown 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-letterbox-bottom {
  bottom: 0;
  height: clamp(48px, 9.5vh, 110px);
  transform: translateY(100%);
  animation: lbUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes lbDown { to { transform: translateY(0); } }
@keyframes lbUp   { to { transform: translateY(0); } }

/* Zorg dat de hero-content boven de balken valt */
.hero-content {
  z-index: 7 !important;
}

.hero-scroll-indicator {
  z-index: 7 !important;
}

/* Reduced motion: geen animatie, balken direct zichtbaar */
@media (prefers-reduced-motion: reduce) {
  .hero-letterbox-top,
  .hero-letterbox-bottom {
    transform: translateY(0);
    animation: none;
  }
}

/* Op zeer kleine schermen iets dunner */
@media (max-width: 480px) {
  .hero-letterbox-top,
  .hero-letterbox-bottom {
    height: clamp(36px, 7vh, 60px);
  }
}


/* ════════════════════════════════
   2. DIAGONALE SECTIEOVERGANGEN
   SVG-driehoeken onderaan elke sectie
   die de kleur van de volgende sectie dragen.
   Geen clip-path op de sectie zelf —
   zodat content nooit geknipt wordt.
════════════════════════════════ */

.section-diagonal {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 64px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.section-diagonal svg {
  display: block;
  width: 100%;
  height: 100%;
  preserveAspectRatio: none;
}

/* Secties die een diagonaal krijgen: relative nodig */
.hero-section,
.section-about-services,
.section-packages,
.section-addons,
.section-why {
  position: relative;
}

/* Extra padding onderaan zodat inhoud niet achter de diagonaal valt */
.section-about-services  { padding-bottom: calc(95px + 40px); }
.section-packages        { padding-bottom: calc(62px + 40px); }
.section-addons          { padding-bottom: calc(95px + 40px); }
.section-why             { padding-bottom: calc(90px + 40px); }


/* ════════════════════════════════
   3 & 4. WERKWIJZE TIMELINE
   Horizontale lijn door genummerde cirkels.
   Grote decoratieve ghost-nummers op de achtergrond.
════════════════════════════════ */

/* Timeline-container */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: 24px;
}

/* Horizontale verbindingslijn */
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px; /* midden van de cirkel-node */
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 137, 122, 0.35) 8%,
    rgba(196, 137, 122, 0.35) 92%,
    transparent 100%
  );
  z-index: 0;
}

/* Elke kaart: geen eigen achtergrond meer, open layout */
.process-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 20px 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: none;
}

.process-card:hover {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Cirkel-node boven de lijn */
.process-number {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 137, 122, 0.65);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease;
}

/* Hover: node licht op */
.process-card:hover .process-number {
  background: rgba(196, 137, 122, 0.12);
  border-color: var(--rose);
  box-shadow: 0 0 0 6px rgba(196, 137, 122, 0.08);
}

/* Groot decoratief ghost-getal achter elke stap */
.process-card:nth-child(1) .process-number::before { content: '01'; }
.process-card:nth-child(2) .process-number::before { content: '02'; }
.process-card:nth-child(3) .process-number::before { content: '03'; }
.process-card:nth-child(4) .process-number::before { content: '04'; }

.process-number::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%) translateY(-30px);
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  letter-spacing: -0.04em;
}

/* Titels en beschrijvingen netjes gecentreerd */
.process-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.process-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 200px;
  margin: 0 auto;
}

/* Hover: tekst iets lichter */
.process-card:hover .process-title {
  color: var(--rose);
  transition: color 0.3s ease;
}

/* ── Highlights balk eronder ── */
.process-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 14px;
  margin-top: 8px;
}

/* ── MOBILE: verticale timeline ── */
@media (max-width: 768px) {

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

  /* Verticale lijn links */
  .process-grid::before {
    top: 27px;
    bottom: 27px;
    left: 26px; /* midden van de cirkel */
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(196, 137, 122, 0.35) 8%,
      rgba(196, 137, 122, 0.35) 92%,
      transparent 100%
    );
  }

  .process-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0 0 36px 0;
  }

  .process-card:last-child {
    padding-bottom: 0;
  }

  .process-number {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 54px;
    height: 54px;
  }

  /* Ghost getal op mobile verbergen (te groot) */
  .process-number::before {
    display: none;
  }

  .process-desc {
    max-width: 100%;
    margin: 0;
  }

  .process-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .process-highlight-wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .process-highlights {
    grid-template-columns: 1fr 1fr;
  }
}


/* ════════════════════════════════
   5. FOOTER REDESIGN
   Drie kolommen: merk · navigatie · socials
   Rose gradient scheidingslijn + copyright balk.
════════════════════════════════ */

/* Override minimale bestaande footer-stijlen */
.site-footer {
  padding: 60px 0 0;
  border-top: none !important;
}

/* Driekoloms hoofdrij */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* ── Links: merk ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px !important;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-logo:hover {
  color: var(--rose) !important;
}

.footer-tagline {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.75;
  margin: 0;
}

/* ── Midden: navigatie ── */
.footer-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.footer-nav-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
  display: block;
}

.footer-nav a {
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--rose) !important;
}

/* ── Rechts: socials & contact ── */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s ease;
}

.footer-instagram:hover {
  color: var(--rose);
}

.footer-instagram svg {
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.footer-email {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  word-break: break-all;
}

.footer-email:hover {
  color: var(--rose);
}

/* ── Rose gradient scheidingslijn ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 137, 122, 0.18) 15%,
    rgba(196, 137, 122, 0.55) 50%,
    rgba(196, 137, 122, 0.18) 85%,
    transparent 100%
  );
  margin: 0;
}

/* ── Onderste balk: copyright ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px !important;
  color: rgba(255,255,255,0.22) !important;
  margin: 0 !important;
}

/* ── TABLET ── */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
    align-items: center;
  }

  .footer-nav {
    align-items: center !important;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 16px 0 24px;
  }
}


/* ════════════════════════════════
   6. TERUG NAAR BOVEN KNOP
   Verschijnt rechtsonder na 400px scrollen.
   Boven de mobile CTA bar op kleine schermen.
════════════════════════════════ */

/* ════════════════════════════════
   7. SUCCES OVERLAY
════════════════════════════════ */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 10, 8, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-card {
  background: rgba(30, 22, 18, 0.95);
  border: 1px solid rgba(196, 137, 122, 0.18);
  border-radius: 24px;
  padding: 56px 48px 48px;
  max-width: 460px;
  width: calc(100% - 48px);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,137,122,0.08);
}
.success-overlay.active .success-card {
  transform: translateY(0) scale(1);
}

/* SVG checkmark animatie */
.success-icon-wrap {
  margin: 0 auto 28px;
  width: 72px;
  height: 72px;
}
.success-circle {
  width: 72px;
  height: 72px;
  overflow: visible;
}
.success-circle-bg {
  stroke: rgba(196, 137, 122, 0.12);
}
.success-circle-ring {
  stroke: var(--rose);
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  stroke-linecap: round;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.success-check {
  stroke: var(--rose);
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  transition: stroke-dashoffset 0.4s ease 0.75s;
  fill: none;
}
.success-overlay.active .success-circle-ring {
  stroke-dashoffset: 0;
}
.success-overlay.active .success-check {
  stroke-dashoffset: 0;
}

.success-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.success-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 36px;
}
.success-sub strong {
  color: var(--rose);
  font-weight: 600;
}
.success-close {
  width: 100%;
  justify-content: center;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 500;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 137, 122, 0.45);
  background: rgba(23, 19, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--rose);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Verborgen toestand */
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s var(--ease),
              transform 0.35s var(--ease),
              border-color 0.25s ease,
              background 0.25s ease;
}

.back-to-top.btt-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(196, 137, 122, 0.14);
  border-color: var(--rose);
}

.back-to-top:active {
  transform: scale(0.92);
}

/* Op mobile: boven de floating CTA bar */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 86px;
    right: 16px;
  }
}


/* ════════════════════════════════
   7. HEADER KRIMPT BIJ SCROLLEN
   Navbar wordt compacter na 40px scroll.
════════════════════════════════ */

#navbar {
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease !important;
}

#navbar.scrolled {
  height: 54px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

/* Logo tekst krimpt mee */
#navbar.scrolled .logo-text {
  font-size: 16px;
}

/* Nav-links iets compacter */
#navbar.scrolled .nav-links {
  gap: 24px;
}

/* CTA knop kleiner */
#navbar.scrolled .nav-cta {
  padding: 10px 20px;
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  #navbar { transition: background 0.4s ease, border-color 0.4s ease !important; }
}


/* ════════════════════════════════
   8. SHINE-ANIMATIE OP CTA-KNOPPEN
   Lichtstreep zweeft over de knop.
   Periodiek elke ~4s, ook bij hover.
════════════════════════════════ */

.btn-green {
  position: relative;
  overflow: hidden;
}

.btn-green::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;

  /* Periodieke animatie */
  animation: btnShine 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes btnShine {
  0%   { left: -75%; opacity: 1; }
  35%  { left: 125%; opacity: 1; }
  36%  { opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

/* Directe shine bij hover */
.btn-green:hover::after {
  animation: btnShineHover 0.55s ease forwards;
}

@keyframes btnShineHover {
  from { left: -75%; opacity: 1; }
  to   { left: 125%; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-green::after { display: none; }
}


/* ════════════════════════════════
   9. PULSERENDE GLOW OP "POPULAIR"
   Badge pulseert zachtjes.
════════════════════════════════ */

.pkg-badge {
  animation: badgePulse 2.8s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(196, 137, 122, 0.24),
                0 0 0 0 rgba(196, 137, 122, 0);
  }
  50% {
    box-shadow: 0 12px 28px rgba(196, 137, 122, 0.35),
                0 0 0 8px rgba(196, 137, 122, 0);
  }
  25% {
    box-shadow: 0 12px 28px rgba(196, 137, 122, 0.30),
                0 0 0 6px rgba(196, 137, 122, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pkg-badge { animation: none; }
}


/* ════════════════════════════════
   10. GLASSMORPHISM PAKKET-KAARTEN
   Frosted glass met subtiele blur en border.
════════════════════════════════ */

.pkg-card {
  background: rgba(30, 22, 18, 0.88) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(196, 137, 122, 0.22) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.pkg-card:hover {
  background: rgba(44, 30, 23, 0.94) !important;
  border-color: rgba(196, 137, 122, 0.45) !important;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34),
              inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.pkg-card.featured {
  background: rgba(50, 33, 24, 0.92) !important;
  border: 2px solid rgba(196, 137, 122, 0.65) !important;
  box-shadow: 0 28px 72px rgba(196, 137, 122, 0.20),
              inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

/* Subtiele bovenrand highlight — typisch glassmorphism detail */
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.10) 30%,
    rgba(255, 255, 255, 0.10) 70%,
    transparent
  );
  border-radius: 999px;
  pointer-events: none;
}


/* ════════════════════════════════
   11. FORMULIER — FLOATING LABELS
   Label zweeft omhoog bij focus of ingevuld veld.
   Sectie-headers, pakket-badge, karakterteller.
════════════════════════════════ */

/* ── Sectie-headers ── */
.form-section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.9;
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196, 137, 122, 0.18);
}

.form-section-title:first-of-type {
  margin-top: 8px;
}

/* ── Floating label container ── */
.form-group.fl {
  position: relative;
}

/* Label: altijd bovenaan klein en rose — geen floating gedrag */
.fl-label {
  position: absolute;
  left: 16px;
  top: 9px;
  transform: none;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--rose);
  opacity: 0.85;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 32px);
}

/* Textarea: iets meer ruimte bovenaan */
.form-group-textarea .fl-label {
  top: 10px;
  transform: none;
}

/* Input/select met extra ruimte voor zwevend label */
.fl-input {
  padding-top: 20px !important;
  padding-bottom: 6px !important;
}

/* Textarea speciale hoogte */
.fl-input.form-textarea {
  padding-top: 28px !important;
  min-height: 110px;
}

/* Label zweeft omhoog bij focus of waarde */
.fl-input:focus ~ .fl-label,
.fl-input:not(:placeholder-shown) ~ .fl-label,
.fl-input.fl-has-value ~ .fl-label {
  top: 9px;
  transform: none;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--rose);
  opacity: 0.85;
}

/* Textarea: al omhoog bij begin */
.form-group-textarea .fl-input:focus ~ .fl-label,
.form-group-textarea .fl-input:not(:placeholder-shown) ~ .fl-label,
.form-group-textarea .fl-input.fl-has-value ~ .fl-label {
  top: 10px;
}

/* Select: label zweeft bij .fl-has-value class (gezet via JS) */
.fl-select.fl-has-value ~ .fl-label {
  top: 9px;
  transform: none;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--rose);
  opacity: 0.85;
}

/* Focus-ring op het veld */
.fl-input:focus {
  border-color: rgba(196, 137, 122, 0.6) !important;
}

/* ── Karakterteller ── */
.form-char-count {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-char-count.nearly-full {
  color: var(--rose);
}

/* ── Geselecteerd pakket badge ── */
.form-pkg-badge[hidden] {
  display: none !important;
}

.form-pkg-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 137, 122, 0.10);
  border: 1px solid rgba(196, 137, 122, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12.5px;
  color: var(--rose);
  margin-bottom: 20px;
  width: fit-content;
  animation: fadeSlideIn 0.35s ease forwards;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-pkg-badge-clear {
  background: none;
  border: none;
  color: rgba(196, 137, 122, 0.5);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 4px 4px 8px;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.form-pkg-badge-clear:hover {
  color: var(--rose);
}

/* ── Multiselect container (erft fl positioning) ── */
.form-group-multiselect {
  position: relative;
}

/* ── Multi-select dropdown ── */
.multiselect {
  position: relative;
  width: 100%;
}

.multiselect-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  padding-top: 20px !important;
  padding-bottom: 6px !important;
}

.multiselect-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}

.multiselect-label.placeholder {
  color: rgba(255,255,255,0.38);
}

.multiselect-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: transform 0.25s ease;
}

.multiselect.open .multiselect-chevron {
  transform: rotate(180deg);
}

.multiselect-dropdown[hidden] {
  display: none !important;
}

.multiselect-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #1E1510;
  border: 1px solid rgba(196,137,122,0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  animation: dropdownIn 0.2s cubic-bezier(0.16,1,0.3,1);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.multiselect-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.multiselect-option:last-child {
  border-bottom: none;
}

.multiselect-option:hover {
  background: rgba(196,137,122,0.08);
  color: rgba(255,255,255,0.9);
}

.multiselect-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.multiselect-check-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}

.multiselect-check-box::after {
  content: '';
  width: 8px;
  height: 4.5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}

.multiselect-option input:checked ~ .multiselect-check-box {
  background: linear-gradient(135deg, var(--rose), var(--bronze));
  border-color: transparent;
}

.multiselect-option input:checked ~ .multiselect-check-box::after {
  opacity: 1;
}

.multiselect-option:has(input:checked) {
  color: var(--white);
  background: rgba(196,137,122,0.06);
}


.addon-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.addon-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  user-select: none;
}

.addon-check:hover {
  border-color: rgba(196, 137, 122, 0.35);
  background: rgba(196, 137, 122, 0.05);
  color: rgba(255, 255, 255, 0.85);
}

/* Verberg native checkbox */
.addon-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox box */
.addon-check-box {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

/* Checkmark via ::after */
.addon-check-box::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Aangevinkte staat */
.addon-check input[type="checkbox"]:checked ~ .addon-check-box {
  background: linear-gradient(135deg, var(--rose), var(--bronze));
  border-color: transparent;
}

.addon-check input[type="checkbox"]:checked ~ .addon-check-box::after {
  opacity: 1;
}

.addon-check:has(input:checked) {
  border-color: rgba(196, 137, 122, 0.5);
  background: rgba(196, 137, 122, 0.08);
  color: var(--white);
}

/* Focus-ring voor toetsenbord-navigatie */
.addon-check input[type="checkbox"]:focus-visible ~ .addon-check-box {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* Events & Business heeft 7 add-ons → allemaal naast elkaar (desktop only) */
@media (min-width: 641px) {
  #addonpanel-events .addon-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

.addon-check-desc {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  line-height: 1.4;
}

.addon-check:has(input:checked) .addon-check-desc {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
  .addon-checks {
    grid-template-columns: 1fr;
  }
}
