/* =========================================================
   Fonifix Booking Flow (SCOPED)
   Alles binnen #fxScope om Astra/Elementor te ontwijken.
   ========================================================= */

#fxScope{
  --bg:#e8f2f9;
  --text:#1E293B;
  --muted: rgba(15,41,64,.65);
  --muted2: rgba(15,41,64,.55);
  --line: rgba(30,41,59,.10);
  --line2: rgba(30,41,59,.08);
  --card: rgba(255,255,255,.92);
  --card2: rgba(255,255,255,.82);
  --shadow: 0 10px 26px rgba(30,41,59,.08);
  --radius: 22px;

  /* Oranje als primaire accentkleur (module-wide) */
  --accent:#FF6B3B;
  --accent-hover:#FF6B3B;
  --accent-soft: rgba(255,107,59,.10);

  --orange:#FF6B3B;
  --orange-soft: rgba(255,107,59,.12);
  --orange-ring: rgba(255,107,59,.18);

  --focus: 0 0 0 3px rgba(255,107,59,.18);

  --edit-accent-bg: rgba(255,107,59,.08);
  --active-bg: rgba(255,107,59,.03);

  color: var(--text);
}

#fxScope, #fxScope *{ box-sizing:border-box; }
#fxScope a{ color:inherit; text-decoration:none; }
#fxScope button{ font-family:inherit; }
#fxScope input, #fxScope select, #fxScope textarea{ font-family:inherit; }

/* ===================== LAYOUT ===================== */
#fxScope .fxBookingGrid{
  display:grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap:18px;
  align-items:start;
}
@media (max-width:980px){
  #fxScope .fxBookingGrid{ grid-template-columns:1fr; }
  #fxScope .fxBookingOverview{ order:2; }
  #fxScope .fxBookingSteps{ order:1; }
}

/* ===================== SHARED UTILS ===================== */
#fxScope .fxPricePill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  /* prijzen nooit oranje: neutraal (lichtblauw) label */
  background: rgba(232,242,249,.70);
  border:1px solid rgba(15,41,64,.14);
  font-weight:900;
  color: var(--text);
  font-size:12px;
  line-height:1;
  white-space:nowrap;
}
#fxScope .fxStepChip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:10px;
  padding:6px 10px;
  border-radius:999px;
  /* prijzen/info chips niet oranje */
  background: rgba(232,242,249,.70);
  border:1px solid rgba(15,41,64,.14);
  font-weight:900;
  color: var(--text);
  font-size:12px;
  line-height:1;
}
#fxScope .fxStepChipDot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(15,41,64,.25);
  border:1px solid rgba(15,41,64,.18);
}
#fxScope .fxStepChipCheck{ color:rgba(15,41,64,.7); font-weight:900; }
#fxScope .fxStepHelp{
  margin:0 0 12px 0;
  color: var(--muted);
  font-size:14px;
  line-height:1.35;
}

/* ===================== OVERVIEW / MANDJE ===================== */
#fxScope .book-card{
  background: var(--card2);
  border:1px solid rgba(30,41,59,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
}
#fxScope .sticky{ position:sticky; top:16px; }
@media(max-width:980px){ #fxScope .sticky{ position:static; } }

#fxScope .kicker{
  margin:0 0 10px 0;
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
  color: rgba(15,41,64,.55);
}
#fxScope .title-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
#fxScope .title{
  margin:0;
  font-size:18px;
  font-weight:1000;
}
#fxScope .edit-text{
  background:transparent;
  border:0;
  padding:6px 8px;
  font-weight:900;
  color: var(--accent);
  border-radius:10px;
  cursor:pointer;
}
#fxScope .edit-text:hover{ background: var(--accent-soft); }

#fxScope .meta{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-bottom:12px;
}
#fxScope .metaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(30,41,59,.10);
  border-radius:16px;
  padding:10px 12px;
}
#fxScope .metaK{ font-weight:900; color: rgba(15,41,64,.55); font-size:12px; }
#fxScope .metaV{ font-weight:1000; color: var(--text); font-size:13px; }

#fxScope .header-row{
  display:grid;
  grid-template-columns:90px minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}
#fxScope .img-wrap{
  width:90px; height:106px;
  /* Geen grijze rand/canvas zichtbaar */
  border-radius:0;
  background: transparent;
  border:0;
  overflow:visible;
}
#fxScope .img-wrap img{ width:100%; height:100%; object-fit:contain; display:block; }
#fxScope .brand{ font-weight:900; color: rgba(15,41,64,.55); font-size:12px; margin-bottom:2px; }
#fxScope .model-row strong{ font-weight:1000; font-size:15px; }
#fxScope .color-row{
  display:flex; align-items:center; gap:10px;
  margin-top:8px;
  padding:8px 10px;
  border-radius:14px;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(30,41,59,.10);
}
#fxScope .color-dot{
  width:12px; height:12px; border-radius:999px;
  border:1px solid rgba(15,41,64,.18);
  background: rgba(15,41,64,.25);
}
#fxScope .color-txt{ font-size:13px; color: var(--muted); }
#fxScope .color-txt span:last-child{ font-weight:1000; color: var(--text); }

#fxScope .divider{
  height:1px;
  background: var(--line2);
  margin:12px 0;
}

#fxScope .fxTotals{
  display:grid;
  gap:8px;
}
#fxScope .fxTotRow{
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px;
  color: var(--muted);
}
#fxScope .fxTotRow .k{ font-weight:900; }
#fxScope .fxTotRow .v{ font-weight:1000; color: var(--text); }
#fxScope .fxTotRow.total{
  padding-top:8px;
  border-top:1px dashed rgba(30,41,59,.18);
  margin-top:4px;
}
#fxScope .fxClickableAmount{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(232,242,249,.70);
  border:1px solid rgba(15,41,64,.14);
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}

#fxScope .plan-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--line2);
}
#fxScope .plan-k{ font-weight:900; font-size:12px; color: rgba(15,41,64,.55); }
#fxScope .plan-v{ font-weight:1000; font-size:13px; color: var(--text); }

#fxScope .consent{ margin-top:12px; }
#fxScope .checkrow{
  display:flex; align-items:center; gap:10px;
  font-size:13px; color: var(--muted);
  user-select:none;
}
#fxScope .checkrow input{ width:16px; height:16px; accent-color: var(--accent); }

#fxScope .form{ margin-top:12px; }
#fxScope .fonifix-cta-btn{
  width:100%;
  background: var(--orange);
  color:#fff;
  border:0;
  border-radius:14px;
  font-weight:1000;
  padding:12px 14px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
#fxScope .fonifix-cta-btn:hover{
  /* ✅ blijft oranje (geen andere hover-kleur) */
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15,41,64,.14);
}
#fxScope .fonifix-cta-btn:focus,
#fxScope .fonifix-cta-btn:focus-visible{
  outline:none !important;
  box-shadow: 0 0 0 3px rgba(15,41,64,.18), 0 14px 30px rgba(15,41,64,.14);
}
#fxScope .fonifix-cta-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}
#fxScope .after-cta{
  margin-top:8px;
  font-size:12px;
  color: rgba(15,41,64,.55);
}

#fxScope .fxEditFocus{
  transition: background .12s ease, box-shadow .12s ease, transform .12s ease;
}
#fxScope .book-card.is-edit .fxEditFocus{
  background: var(--edit-accent-bg) !important;
  box-shadow: var(--focus) !important;
}
#fxScope .is-clickable{ cursor:pointer; }
#fxScope .is-clickable:hover{ transform: translateY(-1px); }

/* ===================== STEPS ===================== */
#fxScope .fxStep{
  border:1px solid rgba(30,41,59,.12);
  border-radius:18px;
  background: var(--card);
  margin-bottom:14px;
  overflow:hidden;
  transition:.15s ease;
}
#fxScope .fxStep:not([open]):hover{
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,59,.12);
}
#fxScope .fxStep[open]{
  /* actief = dezelfde feel als protectors: oranje rand + zachte peach background */
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-ring), 0 14px 30px rgba(15,41,64,.10);
  background: #fff
}
#fxScope .fxStep summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  font-weight:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
#fxScope .fxStep summary::-webkit-details-marker{ display:none; }

#fxScope .fxStepTitle{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  flex-wrap:wrap;
}
#fxScope .fxStepKicker{
  font-size:11px;
  font-weight:1000;
  color: rgba(15,41,64,.55);
  text-transform:uppercase;
  letter-spacing:.02em;
}
#fxScope .fxStepH{
  font-size:15px;
  font-weight:1000;
  color: var(--text);
}
#fxScope .fxStepPlus{
  width:32px;height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(30,41,59,.10);
  flex:0 0 auto;
}
#fxScope .fxStepPlus::before{ content:"+"; font-weight:1000; color: var(--accent); }
#fxScope details[open] .fxStepPlus::before{ content:"–"; }

#fxScope .fxStepBody{
  padding:16px;
  border-top:1px solid rgba(30,41,59,.08);
}

/* ===================== START: COLOR ===================== */
#fxScope .fxColorRow{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media(max-width:720px){
  #fxScope .fxColorRow{ grid-template-columns:1fr; }
}
#fxScope .fxColorMedia{
  border-radius:18px;
  border:1px solid rgba(30,41,59,.10);
  background: rgba(255,255,255,.7);
  overflow:hidden;
}
#fxScope .fxColorImg{ width:90px; height:106px; margin:14px auto 0; }
#fxScope .fxColorImg img{ width:100%; height:100%; object-fit:contain; display:block; }
#fxScope .fxColorPicked{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-top:1px solid rgba(30,41,59,.08);
}
#fxScope .fxColorPicked .left{ display:flex; align-items:center; gap:10px; }
#fxScope .fxColorPickedDot{
  width:12px; height:12px; border-radius:999px;
  border:1px solid rgba(15,41,64,.18);
  background: rgba(15,41,64,.25);
}
#fxScope .fxColorPickedName{ font-weight:1000; color: var(--text); font-size:13px; }

#fxScope .fxColorPanel{
  /* Links uitlijnen (op de plek waar vroeger de media-box stond) */
  justify-self:start;
  max-width:560px;
  border-radius:18px;
  border:1px solid rgba(30,41,59,.10);
  background: rgba(255,255,255,.7);
  padding:12px;
}
#fxScope .fxColorLabel{ font-weight:1000; color: rgba(15,41,64,.55); font-size:12px; text-transform:uppercase; letter-spacing:.02em; }
#fxScope .fxColorPickerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:10px;
}
#fxScope .fxColorDots{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
#fxScope .fxDot{
  width:34px;height:34px;
  border-radius:999px;
  border:1px solid rgba(15,41,64,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:#fff;
  position:relative;
}
#fxScope .fxDot input{ position:absolute; opacity:0; pointer-events:none; }
#fxScope .fxDot .sw{
  width:22px;height:22px;
  border-radius:999px;
  border:1px solid rgba(15,41,64,.18);
}
#fxScope .fxDot.is-selected{
  box-shadow: var(--focus);
  border-color: rgba(15,41,64,.28);
}
#fxScope .fxOtherToggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(15,41,64,.14);
  background:#fff;
  font-weight:1000;
  color: var(--accent);
  cursor:pointer;
}
#fxScope .fxOtherToggle:hover{ background: none; }
#fxScope .fxOtherWrap{
  margin-top:10px;
  display:none;
  gap:8px;
}
#fxScope .fxOtherWrap.is-open{ display:grid; }
#fxScope .fxOtherWrap label{ font-size:12px; font-weight:900; color: rgba(15,41,64,.55); }
#fxScope .fxOtherInput{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(30,41,59,.12);
  background:#fff;
  outline:none;
}
#fxScope .fxOtherInput:focus{ box-shadow: var(--focus); border-color: rgba(15,41,64,.22); }

/* ===================== STEP 1: QUALITY ===================== */
#fxScope .fxQualTopRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
#fxScope .fxCompareBtn{
  /* light-blue label button (niet oranje) */
  background: rgba(232,242,249,.70);
  border:1px solid rgba(15,41,64,.14);
  border-radius:14px;
  padding:9px 10px;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}
#fxScope .fxCompareBtn:hover{
  background: rgba(232,242,249,.85);
  border-color: rgba(15,41,64,.14);
  box-shadow: none;
  transform: translateY(-1px);
}

#fxScope .fxQualGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
#fxScope .fxQualOpt{
  /* match tile look (image): clean card + subtle border */
  display:block;
  position:relative;
  border:1px solid rgba(15,41,64,.12);
  border-radius:18px;
  padding:18px;
  background:#fff;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#fxScope .fxQualOpt input{ position:absolute; opacity:0; pointer-events:none; }
#fxScope .fxQualOpt:hover{
  /* ✅ hover = enkel oranje gloed (geen oranje rand) */
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(255,107,59,.12), 0 14px 30px rgba(15,41,64,.12);
}
#fxScope .fxQualOpt:has(input:checked){
  /* ✅ identiek gedrag als Step 3 checkbox: selectie via vinkje + zachte bg,
     maar géén blijvende oranje rand rond de volledige kaart */
  border-color: rgba(15,41,64,.12);
  box-shadow: none;
  transform: none;
  background: var(--active-bg, rgba(255,107,59,.03));
}
#fxScope .fxQualNameRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
#fxScope .fxQualLine{ display:block; }
#fxScope .fxQualMain{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  width:100%;
}
#fxScope .fxQualPrice{
  /* ✅ right aligned in its row (same baseline as 'extra services' prices) */
  margin-left:auto;
  text-align:right;
  font-weight:1000;
  color: var(--text);
  white-space:nowrap;
}
#fxScope .fxQualNameLeft{ display:flex; align-items:center; gap:8px; min-width:0; }

#fxScope .fxQualName{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
#fxScope .fxQualTick{
  width:18px;
  height:18px;
  border-radius:4px;
  border:1px solid rgba(15,41,64,.18);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 18px;
  box-shadow:none;
}
#fxScope .fxQualOpt:has(input:checked) .fxQualTick{
  border-color: var(--orange);
  background:#fff;
}
#fxScope .fxQualOpt:has(input:checked) .fxQualTick::after{
  content:"✓";
  font-weight:1000;
  font-size:13px;
  line-height:1;
  color: var(--orange);
  transform: translateY(-0.5px);
}

#fxScope .fxQualName{ font-weight:1000; color: var(--text); }
#fxScope .fxQualHint{
  display:block;
  margin-top:6px;
  color: var(--muted);
  font-size:13px;
  line-height:1.35;
}
/* ✅ Aanrader badge = inline naast titel (niet bij prijs) */
#fxScope .fxQualOpt.is-reco .fxQualName{ padding-right:0; }

#fxScope .fxRecoBadge{
  position:static;
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(255,107,59,.14);
  border:1px solid rgba(255,107,59,.28);
  color: var(--orange);
  font-weight:1000;
  font-size:11px;
  line-height:1;
  white-space:nowrap;
}

#fxScope .fxComboBadge{
  /* zelfde stijl als 'Aanrader' */
  position:static;
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(255,107,59,.14);
  border:1px solid rgba(255,107,59,.28);
  color: var(--orange);
  font-weight:1000;
  font-size:11px;
  line-height:1;
  white-space:nowrap;
}

/* (veilig) eventueel overgebleven mobile badge markup verbergen */
#fxScope .fxRecoBadgeMobile{ display:none !important; }

/* Modal compare */
#fxScope .fxModal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  align-items:center;
  justify-content:center;
  padding:18px;
}
#fxScope .fxModal.is-open{ display:flex; }
#fxScope .fxModalBackdrop{
  position:absolute;
  inset:0;
  background: rgba(15,41,64,.45);
}
#fxScope .fxModalPanel{
  position:relative;
  width:min(900px, 100%);
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(30,41,59,.12);
  box-shadow: 0 20px 60px rgba(15,41,64,.25);
  padding:14px;
}
#fxScope .fxModalTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:6px 6px 12px 6px;
}
#fxScope .fxModalTitle{ margin:0; font-weight:1000; font-size:16px; }
#fxScope .fxModalSub{ margin:4px 0 0 0; color: var(--muted); font-size:13px; line-height:1.35; }
#fxScope .fxModalClose{
  background:#fff;
  border:1px solid rgba(15,41,64,.14);
  border-radius:14px;
  padding:8px 10px;
  font-weight:1000;
  color: var(--accent);
  cursor:pointer;
}
#fxScope .fxModalClose:hover{ background: var(--bg); }

#fxScope .fxCompareTable{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  padding:6px;
}
@media(max-width:720px){
  #fxScope .fxCompareTable{ grid-template-columns:1fr; }
}
#fxScope .fxCompareCard{
  border:1px solid rgba(30,41,59,.12);
  border-radius:18px;
  padding:12px;
  background: rgba(232,242,249,.30);
}
#fxScope .fxCompareHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
#fxScope .fxCompareName{ font-weight:1000; }
#fxScope .fxCompareBullets{ color: var(--muted); font-size:13px; line-height:1.5; }

/* ===================== STEP 2: EXTRAS ===================== */
#fxScope .fxS2HeaderRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
#fxScope .fxS2Hint{ margin:0; color: var(--muted); font-size:13px; }
#fxScope .fxS2ToggleAll{
  /* "Toon alle services" = light-blue label */
  background: rgba(232,242,249,.70);
  border:1px solid rgba(15,41,64,.14);
  border-radius:14px;
  padding:9px 10px;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}
#fxScope .fxS2ToggleAll:hover{
  background: rgba(232,242,249,.85);
  border-color: rgba(15,41,64,.14);
  box-shadow: none;
}

#fxScope .fxS2List,
#fxScope .fxS2MoreWrap{
  display:grid;
  gap:10px;
}
#fxScope .fxS2MoreWrap{ display:none; margin-top:10px; }
#fxScope .fxS2MoreWrap.is-show{ display:grid; }

#fxScope .fxS2Item{
  border:1px solid rgba(30,41,59,.12);
  border-radius:18px;
  padding:12px;
  background:#fff;
  transition:.15s ease;
  cursor:pointer;
}
#fxScope .fxS2Item:hover{
  transform: translateY(-2px);
  /* ✅ hover = enkel oranje gloed (geen oranje rand) */
  box-shadow: 0 0 0 3px rgba(255,107,59,.12), 0 14px 30px rgba(15,41,64,.12);
  border-color: rgba(30,41,59,.12);
}
#fxScope .fxS2Item.is-active{
  border-color: rgba(30,41,59,.12);
  background: var(--active-bg, rgba(255,107,59,.03));
  box-shadow: none;
  transform: none;
}
#fxScope .fxS2Top{
  display:grid;
  grid-template-columns: 18px minmax(0,1fr) auto;
  gap:10px;
  align-items:start;
}
#fxScope .fxS2Top input[type="checkbox"]{
  -webkit-appearance:none;
  appearance:none;
  width:18px;height:18px;
  border-radius:4px;
  border:1px solid rgba(15,41,64,.18);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
  margin-top:2px;
  cursor:pointer;
}
#fxScope .fxS2Top input[type="checkbox"]:checked{
  border-color: var(--orange);
}
#fxScope .fxS2Top input[type="checkbox"]:checked::after{
  content:"✓";
  font-weight:1000;
  font-size:13px;
  line-height:1;
  color: var(--orange);
  transform: translateY(-0.5px);
}

#fxScope .fxS2Title{ font-weight:1000; margin-bottom:2px; }
#fxScope .fxS2Desc{ color: var(--muted); font-size:13px; line-height:1.35; }

#fxScope .fxPricePack{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  white-space:nowrap;
}
#fxScope .fxWas{
  font-size:12px;
  font-weight:900;
  color: rgba(15,41,64,.55);
  text-decoration:line-through;
}
#fxScope .fxNow{
  font-size:14px;
  font-weight:1000;
  color: var(--text);
}

/* Plain price ... */
#fxScope .fxChipPrice,
#fxScope .fxS2Total{
  font-weight:1000;
  color: var(--text);
}

#fxScope .fxS2Foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(30,41,59,.18);
}
@media(max-width:560px){
  #fxScope .fxS2Foot{ flex-direction:column; align-items:stretch; }
}
#fxScope .fxS2TotalLine{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight:900;
  color: var(--muted);
}
#fxScope .fxS2Next,
#fxScope .fxS4Next{
  appearance:none;
  background:transparent;
  border:0;
  padding:0;
  border-radius:0;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  box-shadow:none;
  transform:none;
}
#fxScope .fxS2Next::after,
#fxScope .fxS4Next::after{
  content:"→";
  color: var(--orange);
  font-weight:1000;
}
#fxScope .fxS2Next:hover,
#fxScope .fxS4Next:hover{
  transform: translateY(-1px);
}
#fxScope .fxS2Next:focus,
#fxScope .fxS2Next:focus-visible,
#fxScope .fxS4Next:focus,
#fxScope .fxS4Next:focus-visible{
  outline:none;
  box-shadow: var(--focus);
}


/* ===================== STEP 4: PROTECT ===================== */
#fxScope .fxCard{
  border:1px solid rgba(30,41,59,.12);
  border-radius:18px;
  padding:12px;
  background:#fff;
  margin-bottom:10px;
  transition:.15s ease;
}
#fxScope .fxCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15,41,64,.12);
  border-color: rgba(30,41,59,.12);
}
#fxScope .fxCard.is-active,
#fxScope .fxCard.is-open{
  border-color: rgba(30,41,59,.12);
  background: var(--active-bg, rgba(255,107,59,.03));
  box-shadow: none;
  transform: none;
}
#fxScope .fxRow{
  display:grid;
  grid-template-columns: 18px minmax(0,1fr) 0;
  gap:10px;
  align-items:start;
}
#fxScope .fxRow input[type="checkbox"]{
  -webkit-appearance:none;
  appearance:none;
  width:18px;height:18px;
  border-radius:4px;
  border:1px solid rgba(15,41,64,.18);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
  margin-top:2px;
  cursor:pointer;
}
#fxScope .fxRow input[type="checkbox"]:checked{
  border-color: var(--orange);
}
#fxScope .fxRow input[type="checkbox"]:checked::after{
  content:"✓";
  font-weight:1000;
  font-size:13px;
  line-height:1;
  color: var(--orange);
  transform: translateY(-0.5px);
}

#fxScope .fxTitleRow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
#fxScope .fxTitle{ font-weight:1000; }
#fxScope .fxDesc{ margin-top:6px; color: var(--muted); font-size:13px; line-height:1.35; }
#fxScope .fxPrice{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  font-weight:1000;
  /* prijzen nooit oranje */
  color: var(--text);
  white-space:nowrap;
}
#fxScope .fxPrice .fxWas{
  font-size:12px;
  font-weight:900;
  color: rgba(15,41,64,.55);
  text-decoration:line-through;
}
#fxScope .fxPrice > span:not(.fxWas){
  font-size:14px;
  font-weight:1000;
}

#fxScope .fxOpts{
  margin-top:10px;
  display:none;
  border-top:1px solid rgba(30,41,59,.10);
  padding-top:10px;
}
#fxScope .fxCloseRow{ display:flex; justify-content:flex-end; }
#fxScope .fxCloseBtn{
  background:#fff;
  border:1px solid rgba(15,41,64,.14);
  border-radius:12px;
  padding:7px 10px;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}
#fxScope .fxCloseBtn:hover{ background: var(--bg); }

#fxScope .fxOptList{ display:grid; gap:8px; margin-top:10px; }
#fxScope .fxOpt{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(30,41,59,.12);
  background:#fff;
  cursor:pointer;
}
/* ✅ Screenprotector opties: exact dezelfde oranje rand/gevoel als kwaliteit-tegels */
#fxScope .fxOpt:hover{
  background:#fff;
  border-color: rgba(30,41,59,.12);
  /* ✅ hover = enkel oranje gloed (geen oranje rand) */
  box-shadow: 0 0 0 3px rgba(255,107,59,.12), 0 14px 30px rgba(15,41,64,.12);
  transform: translateY(-2px);
}
#fxScope .fxOptLeft{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
#fxScope .fxOptLeft strong{ font-weight:1000; display:block; }
#fxScope .fxOptLeft small{ display:block; color: var(--muted); font-size:12px; margin-top:2px; }
#fxScope .fxRadio{
  width:18px;height:18px;border-radius:999px;
  border:2px solid rgba(15,41,64,.24);
  margin-top:2px;
  position:relative;
}
#fxScope .fxOpt.is-selected{
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-ring);
  background:#fff;
}
#fxScope .fxOpt.is-selected .fxRadio{ border-color: var(--orange); }
#fxScope .fxOpt.is-selected .fxRadio::after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:999px;
  background: var(--orange);
}
#fxScope .fxMiniNote{
  margin:8px 0 12px 0;
  color: var(--muted);
  font-size:13px;
}
#fxScope .fxS4Foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(30,41,59,.18);
}
@media(max-width:560px){
  #fxScope .fxS4Foot{ flex-direction:column; align-items:stretch; }
}
#fxScope .fxS4TotalLine{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight:900;
  color: var(--muted);
}
#fxScope .fxS4TotalPill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: var(--bg);
  border:1px solid rgba(15,41,64,.12);
  font-weight:1000;
  color: var(--text);
}
#fxScope .fxS4Next{
  /* Secondary CTA: mag nooit concurreren met de hoofd-CTA */
  background:#fff;
  color: var(--text);
  border:1px solid rgba(255,107,59,.35);
  border-radius:14px;
  padding:11px 12px;
  font-weight:1000;
  cursor:pointer;
}
#fxScope .fxS4Next:hover{ background: var(--orange-soft); border-color: rgba(255,107,59,.45); }
#fxScope .fxS4Next:focus,
#fxScope .fxS4Next:focus-visible{ outline:none; box-shadow: var(--focus); }
#fxScope .fxS4Next:focus,
#fxScope .fxS4Next:focus-visible{ outline:none; box-shadow: var(--focus); }

/* ===================== STEP 5: PLANNING ===================== */
#fxScope .fxS5Title{
  margin:0 0 10px 0;
  font-weight:1000;
}
#fxScope .fxDatebar{
  display:grid;
  grid-template-columns: 44px minmax(0,1fr) 44px;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
  padding:0 6px; /* chevrons niet tegen de rand */
}
#fxScope .fxChev{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(15,41,64,.14);
  background:#fff;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}
#fxScope .fxChev:disabled{ opacity:.35; cursor:not-allowed; }
#fxScope .fxChev:hover{
  background:#fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,59,.12);
}
#fxScope .fxDates{
  display:flex;
  gap:12px;
  overflow:hidden;
  justify-content:center;
}
#fxScope .fxDatepill{
  flex:0 0 auto;
  padding:11px 14px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(15,41,64,.14);
  background:#fff;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}
#fxScope .fxDatepill:hover{
  background:#fff;
  border-color: rgba(30,41,59,.12);
  box-shadow: 0 14px 30px rgba(15,41,64,.12);
  transform: translateY(-2px);
}
#fxScope .fxDatepill.is-active{
  background: var(--active-bg, rgba(255,107,59,.03));
  border-color: rgba(30,41,59,.12);
  box-shadow: none;
  transform: none;
}

#fxScope .fxSlotNote{
  margin:8px 0 8px 0;
  color: var(--muted);
  font-size:13px;
}
#fxScope .fxSlots{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
@media(max-width:640px){
  #fxScope .fxSlots{ grid-template-columns:1fr; }
}
#fxScope .fxSlot{
  border:1px solid rgba(30,41,59,.12);
  border-radius:18px;
  padding:12px;
  background:#fff;
  cursor:pointer;
  text-align:center;
  font-weight:1000;
  color: var(--text);
}
#fxScope .fxSlot:hover{
  background:#fff;
  border-color: rgba(30,41,59,.12);
  box-shadow: 0 14px 30px rgba(15,41,64,.12);
  transform: translateY(-2px);
}
#fxScope .fxSlot.is-active{
  background: var(--active-bg, rgba(255,107,59,.03));
  border-color: rgba(30,41,59,.12);
  box-shadow: none;
  transform: none;
}

#fxScope .fxMore{ margin-top:10px; }
#fxScope .fxMoreBtn{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(15,41,64,.14);
  background:#fff;
  padding:10px 12px;
  font-weight:1000;
  color: var(--text);
  cursor:pointer;
}
#fxScope .fxMoreBtn:hover{
  background: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,59,.12);
}

#fxScope .fxRule{
  margin:12px 0 0 0;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(232,242,249,.65);
  border:1px solid rgba(15,41,64,.14);
  color: var(--muted);
  font-size:13px;
  line-height:1.4;
}

#fxScope .fxContact{
  display:none;
  gap:10px;
  margin-top:12px;
}
#fxScope .fxContact.is-show{ display:grid; }
#fxScope .fxField label{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  font-weight:1000;
  color: rgba(15,41,64,.55);
}
#fxScope .fxInput{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(30,41,59,.12);
  background:#fff;
  outline:none;
}
#fxScope .fxInput:focus{ box-shadow: var(--focus); border-color: rgba(15,41,64,.22); }

#fxScope .fxS5Foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(30,41,59,.18);
}
@media(max-width:560px){
  #fxScope .fxS5Foot{ flex-direction:column; align-items:stretch; }
}
#fxScope .fxSubmit{
  background: var(--accent);
  color:#fff;
  border:0;
  border-radius:14px;
  padding:11px 12px;
  font-weight:1000;
  cursor:pointer;
}
#fxScope .fxSubmit:hover{ background: var(--accent-hover); }
#fxScope .fxSubmit:disabled{ opacity:.45; cursor:not-allowed; }

/* === Single-quality repairs (no choice UI) === */
#fxScope .fxSingleChoiceLine{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px dashed rgba(30,41,59,.18);
  border-radius:14px;
  background: rgba(255,255,255,.55);
}
#fxScope .fxSingleCheck{
  display:inline-flex;
  width:22px;height:22px;
  align-items:center;justify-content:center;
  border-radius:999px;
  border:1px solid rgba(15,41,64,.18);
  font-weight:900;
}
#fxScope .fxQualOpt--hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* Plain price (no pill) in quality options */
#fxScope .fxQualPrice{
  margin-left:auto;
  text-align:right;
  font-weight:1000;
  color: var(--text);
  white-space:nowrap;
}

/* Book button clarity when disabled */
#fxScope .fxSubmit.is-disabled{
  opacity:.55;
  cursor:not-allowed;
}
#fxScope .fxBookHint{
  display:block;
  margin-top:10px;
  font-size:14px;
  color: rgba(30,41,59,.85);
  visibility: visible;
  opacity: 1;
  transition: opacity .12s ease;
}
#fxScope .fxBookHint.is-hidden{
  visibility: hidden;
  opacity: 0;
}


.fxStepChipPrice{ margin-left:10px; font-weight:900; }


/* ===================== START (Winkel) ===================== */
#fxScope .fxStep--store summary.is-locked{ cursor:default; }
#fxScope .fxStep--store summary.is-locked .fxStepPlus{ display:none; }

#fxScope .fxStoreGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
@media (max-width: 720px){
  #fxScope .fxStoreGrid{ grid-template-columns: 1fr; }
}
#fxScope .fxStoreCard{
  appearance:none;
  border:1px solid rgba(30,41,59,.16);
  background:#fff;
  border-radius:16px;
  /* ruimte voor het vinkje links (zelfde feel als step 2) */
  padding:14px 14px 12px 46px;
  text-align:left;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  position:relative;
}

/* ✅ check-box visual (zelfde als step 2) */
#fxScope .fxStoreCard::before{
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:18px;
  height:18px;
  border-radius:4px;
  border:1px solid rgba(15,41,64,.18);
  background:#fff;
}
#fxScope .fxStoreCard:hover{
  transform: translateY(-1px);
  /* ✅ hover = enkel oranje gloed (geen oranje rand) */
  box-shadow: 0 0 0 3px rgba(255,107,59,.12), 0 10px 24px rgba(15,41,64,.10);
  border-color: rgba(30,41,59,.16);
}
#fxScope .fxStoreCard.is-active,
#fxScope .fxStoreCard[aria-selected="true"],
#fxScope .fxStoreCard[aria-pressed="true"]{
  border-color: rgba(30,41,59,.16);
  background: var(--active-bg, rgba(255,107,59,.03));
  box-shadow: none;
  transform: none;
}

/* ✓ in het vinkje bij selectie */
#fxScope .fxStoreCard.is-active::after,
#fxScope .fxStoreCard[aria-selected="true"]::after,
#fxScope .fxStoreCard[aria-pressed="true"]::after{
  content:"✓";
  position:absolute;
  left:20px;
  top:18px;
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  font-size:13px;
  line-height:1;
  color: var(--orange);
}

#fxScope .fxStoreCard.is-active::before,
#fxScope .fxStoreCard[aria-selected="true"]::before,
#fxScope .fxStoreCard[aria-pressed="true"]::before{
  border-color: var(--orange);
}

#fxScope .fxStoreName{
  font-weight:1000;
  color: var(--text);
  margin-bottom:4px;
}
#fxScope .fxStoreMeta{
  font-size:13px;
  color: rgba(15,41,64,.72);
  margin-bottom:6px;
}
#fxScope .fxStoreHours{
  font-size:12px;
  font-weight:900;
  color: rgba(15,41,64,.62);
}
#fxScope .fxStoreLocked{
  border:1px solid rgba(30,41,59,.12);
  background: rgba(232,242,249,.35);
  border-radius:16px;
  padding:14px;
}
#fxScope .fxStoreLine{ margin:2px 0; }
#fxScope .fxGateNotice{
  margin-top:10px;
  border:1px dashed rgba(30,41,59,.22);
  background: rgba(232,242,249,.35);
  border-radius:14px;
  padding:10px 12px;
  font-size:13px;
  color: rgba(15,41,64,.80);
}


/* ✅ sub-CTA arrow (protectie / planning) */
#fxScope .fxS2Next::after,
#fxScope .fxS4Next::after{
  content:" →";
  color: var(--orange);
  font-weight:1000;
}
/* =========================================================
   OVERRIDES: enkel oranje boord, GEEN gloed
   Plak dit ONDERAAN je huidige CSS
   ========================================================= */

/* --- 1) Globaal: geen orange "ring"/glow via box-shadow op hover/focus tenzij je het expliciet wil --- */
#fxScope .fxStep,
#fxScope .fxQualOpt,
#fxScope .fxS2Item,
#fxScope .fxOpt,
#fxScope .fxStoreCard,
#fxScope .fxCard,
#fxScope .fxSlot,
#fxScope .fxDatepill,
#fxScope .fxChev,
#fxScope .fxMoreBtn{
  box-shadow: none !important;
}

/* --- 2) Hover states: enkel oranje border, geen shadow --- */
#fxScope .fxStep:not([open]):hover,
#fxScope .fxQualOpt:hover,
#fxScope .fxS2Item:hover,
#fxScope .fxOpt:hover,
#fxScope .fxStoreCard:hover,
#fxScope .fxCard:hover,
#fxScope .fxSlot:hover,
#fxScope .fxDatepill:hover,
#fxScope .fxChev:hover,
#fxScope .fxMoreBtn:hover{
  border-color: var(--orange) !important;
  box-shadow: none !important;
}

/* (optioneel) Als je ook geen "lift" wil op hover, zet dit aan: */
/*
#fxScope .fxQualOpt:hover,
#fxScope .fxS2Item:hover,
#fxScope .fxOpt:hover,
#fxScope .fxStoreCard:hover,
#fxScope .fxCard:hover,
#fxScope .fxSlot:hover,
#fxScope .fxDatepill:hover{
  transform: none !important;
}
*/

/* --- 3) Actieve/open step: enkel oranje boord, GEEN glow, GEEN extra shadow --- */
#fxScope .fxStep[open]{
  border-color: var(--orange) !important;
  box-shadow: none !important;
  background: #fff !important; /* of var(--card) als je dat liever hebt */
}

/* --- 4) Active/selected cards (extras/protect/store) houden we zonder glow --- */
#fxScope .fxS2Item.is-active,
#fxScope .fxCard.is-active,
#fxScope .fxCard.is-open,
#fxScope .fxSlot.is-active,
#fxScope .fxDatepill.is-active,
#fxScope .fxStoreCard.is-active,
#fxScope .fxStoreCard[aria-selected="true"],
#fxScope .fxStoreCard[aria-pressed="true"],
#fxScope .fxOpt.is-selected{
  box-shadow: none !important;
}

/* --- 5) CTA focus: ook geen glow? (nu haal ik de grote gloed weg) --- */
#fxScope .fonifix-cta-btn:hover,
#fxScope .fonifix-cta-btn:focus,
#fxScope .fonifix-cta-btn:focus-visible{
  box-shadow: none !important;
}

/* Wil je bij CTA wél enkel een oranje boord op hover/focus? Zet dit aan: */
/*
#fxScope .fonifix-cta-btn:hover,
#fxScope .fonifix-cta-btn:focus,
#fxScope .fonifix-cta-btn:focus-visible{
  outline: none !important;
  border: 2px solid var(--orange) !important;
}
*/
/* =========================================================
   ACTIVE STATES: Datepill + Slot = oranje bg + oranje border
   (geen glow)
   ========================================================= */

#fxScope .fxDatepill.is-active,
#fxScope .fxSlot.is-active{
  background: var(--active-bg, rgba(255,107,59,.03)) !important; /* jouw huidige 'oranje' achtergrond */
  border-color: var(--orange) !important;                        /* ✅ oranje boord erbij */
  box-shadow: none !important;                                   /* ✅ geen gloed */
}
#fxScope .fxDatepill[aria-selected="true"],
#fxScope .fxSlot[aria-selected="true"]{
  background: var(--active-bg, rgba(255,107,59,.03)) !important;
  border-color: var(--orange) !important;
  box-shadow: none !important;
}
