/* =========================================================
   Maze Thales — Elementor Kit styles
   Design tokens + custom-widget component styles.
   All component rules are scoped under .mtk so they never
   collide with the theme or other Elementor widgets.
   ========================================================= */
.mtk {
  --gold:        #CB9648;
  --gold-hover:  #b9863b;
  --gold-grad:      linear-gradient(90deg, #a9762f 0%, #e6bd77 50%, #a9762f 100%);
  --gold-grad-text: linear-gradient(90deg, #c28f3d 0%, #eac583 50%, #c28f3d 100%);
  --gold-tile:      linear-gradient(145deg, #e6bd77 0%, #cb9648 52%, #a9762f 100%);
  --bg:          #111111;
  --card:        #1A1A1A;
  --white:       #FFFFFF;
  --ink:         #111111;
  --text-on-dark:        rgba(255, 255, 255, 0.92);
  --text-on-dark-muted:  rgba(255, 255, 255, 0.60);
  --line-dark:   rgba(255, 255, 255, 0.10);
  --ff-wide:  "roc-grotesk-wide", "roc-grotesk", "Arial Narrow", sans-serif;
  --ff-base:  "roc-grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono:  "DM Mono", ui-monospace, "SFMono-Regular", monospace;
  --weight-heading: 600;
  --text-card: 1.375rem;
  --text-sm:   0.9375rem;
  --text-xs:   0.75rem;
  --radius:     16px;
  --radius-lg:  24px;
}
.mtk *,
.mtk *::before,
.mtk *::after { box-sizing: border-box; }

/* ---------- Sterren ---------- */
.mtk .stars { display: inline-flex; gap: 3px; }
.mtk .stars span {
  width: 15px; height: 15px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ---------- Review badge (avatars + sterren) ---------- */
.mtk .review-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px 10px 12px;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.mtk .review-badge--bare { background: transparent; border: 0; backdrop-filter: none; padding: 0; }
.mtk .review-badge__avatars { display: inline-flex; }
.mtk .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
  border: 2px solid #1d1d1d;
  margin-left: -10px;
}
.mtk .avatar:first-child { margin-left: 0; }
.mtk .review-badge__meta { text-align: left; }
.mtk .review-badge__label {
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin: 4px 0 0;
}

/* =========================================================
   Steps — 3D coverflow (Onze aanpak)
   ========================================================= */
.mtk .coverflow {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.mtk .coverflow__stage {
  position: relative;
  height: 400px;
  perspective: 1700px;
  cursor: grab;
  touch-action: pan-y;
}
.mtk .coverflow__stage.is-dragging { cursor: grabbing; }
.mtk .cf-card {
  position: absolute;
  top: 50%; left: 50%;
  width: min(560px, 88vw);
  height: 360px;
  margin: 0;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transform: translate(-50%, -50%);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, filter;
  user-select: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
}
.mtk .coverflow__stage.is-dragging .cf-card { transition: none; }
.mtk .cf-card.is-active { box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(203, 150, 72, 0.16); }
.mtk .cf-card:not(.is-active) { cursor: pointer; }
.mtk .cf-card > .tile-icon,
.mtk .cf-card > .cf-body { position: relative; z-index: 1; }
.mtk .cf-card .tile-icon { width: 60px; height: 60px; display: block; }
.mtk .cf-body { margin-top: auto; }
.mtk .cf-title {
  font-family: var(--ff-base);
  font-weight: var(--weight-heading);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: var(--white);
  margin: 0 0 14px;
}
.mtk .cf-text {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin: 0;
}
.mtk .cf-num {
  position: absolute;
  right: 28px;
  bottom: 20px;
  z-index: 0;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 10rem;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.mtk .coverflow__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.mtk .cf-arrow {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-dark);
  color: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.mtk .cf-arrow:hover { border-color: var(--gold); transform: translateY(-2px); }
.mtk .cf-dots { display: flex; gap: 10px; }
.mtk .cf-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(255, 255, 255, 0.2); transition: background-color 0.2s ease, transform 0.2s ease; cursor: pointer; }
.mtk .cf-dot.is-active { background: var(--gold-grad); transform: scale(1.2); }
/* Hard override: keep both nav arrows dark (kill theme/plugin button colors). */
.mtk .cf-arrow,
.mtk .cf-arrow:link,
.mtk .cf-arrow:visited,
.mtk .cf-arrow:hover,
.mtk .cf-arrow:focus,
.mtk .cf-arrow:active {
  background: #1A1A1A !important;
  background-image: none !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
  outline: none !important;
}
.mtk .cf-arrow:hover { border-color: var(--gold) !important; }

@media (max-width: 900px) {
  .mtk .coverflow__stage { perspective: 1200px; height: 420px; }
  .mtk .cf-card { width: min(380px, 78vw); height: 400px; padding: 28px; }
  .mtk .cf-text { font-size: 0.95rem; }
  .mtk .cf-num { font-size: 7.5rem; right: 22px; bottom: 16px; }
}
@media (max-width: 520px) {
  .mtk .coverflow__stage { height: 430px; }
  .mtk .cf-card { width: min(310px, 82vw); height: 410px; padding: 22px; }
  .mtk .cf-title { font-size: 1.4rem; margin-bottom: 8px; }
  .mtk .cf-text { font-size: 0.9rem; line-height: 1.5; }
  .mtk .cf-num { font-size: 6rem; right: 16px; bottom: 10px; }
  .mtk .coverflow__nav { gap: 14px; margin-top: 26px; }
}

/* =========================================================
   Reviews marquee (member-cards)
   ========================================================= */
.mtk .marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mtk .marquee__track { display: flex; gap: 24px; width: max-content; animation: mt-marquee-scroll 55s linear infinite; }
.mtk .marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes mt-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mtk .member-card {
  flex: 0 0 clamp(290px, 82vw, 380px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: var(--card);
}
.mtk .member-card--alt { background: #0e0e0e; }
.mtk .member-card__head { display: flex; align-items: center; gap: 14px; }
.mtk .member-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-tile);
  color: #2a1c07;
  font-family: var(--ff-base);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.mtk .member-card__name { font-family: var(--ff-base); font-weight: 600; font-size: 1.05rem; color: var(--white); margin: 0; }
.mtk .member-card__text { color: var(--text-on-dark); line-height: 1.65; font-size: var(--text-sm); margin: 0; flex: 1; font-family: var(--ff-body); }
@media (prefers-reduced-motion: reduce) { .mtk .marquee__track { animation: none; } }

/* =========================================================
   Offer — tabs + center slider (Ons aanbod)
   ========================================================= */
.mtk .mt-offer { --white: #FFFFFF; --text-on-light: #111111; --line-light: rgba(17,17,17,0.12); }
.mtk .offer__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.mtk .tab {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: -0.03em;
  padding: 12px 20px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #111111;
  border: 1px solid rgba(17,17,17,0.12);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.mtk .tab:hover { border-color: var(--gold); }
.mtk .tab.is-active { background: var(--gold-grad); color: var(--ink); border-color: transparent; }
/* Full-bleed viewport: breaks out of the Elementor container so the
   slider spans the full browser width and cards peek at both edges,
   exactly like the reference (where .offer__viewport sits outside .container). */
.mtk .mt-offer .offer__viewport {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.mtk .offer__viewport { overflow: hidden; }
.mtk .offer__track {
  display: flex;
  gap: 24px;
  padding-inline: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.mtk .offer-slide {
  position: relative;
  flex: 0 0 min(880px, 82vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1c1c1c;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.45;
  cursor: pointer;
}
.mtk .offer-slide.is-active { opacity: 1; }
.mtk .offer-slide__media { position: absolute; inset: 0; }
.mtk .offer-slide__media img { width: 100%; height: 100%; object-fit: cover; }
.mtk .offer-slide__card {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  max-width: min(440px, 70%);
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 28px;
}
.mtk .offer-slide__title { font-family: var(--ff-base); font-weight: var(--weight-heading); font-size: 1.5rem; color: var(--white); margin: 0; }
.mtk .offer-slide__text { font-size: var(--text-sm); color: var(--text-on-dark); margin: 14px 0 20px; font-family: var(--ff-body); }
.mtk .offer-slide__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.mtk .offer-slide--popular { box-shadow: 0 0 0 2px var(--gold); }
.mtk .offer-slide__card--popular { border-color: var(--gold); background: rgba(22, 17, 9, 0.82); }
.mtk .offer-slide__card--popular .offer-slide__title { color: var(--gold); }
.mtk .offer-slide__badge {
  position: absolute;
  top: 20px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-grad);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.mtk .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 600; letter-spacing: -0.03em;
  font-size: var(--text-sm); padding: 14px 24px; border-radius: 10px;
  border: 1px solid transparent; text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.mtk .btn--white { background: var(--white); color: var(--ink); }
.mtk .btn--white:hover { background: #ececec; transform: translateY(-2px); }
.mtk .link-underline {
  font-family: var(--ff-body); font-weight: 600; letter-spacing: -0.03em;
  font-size: var(--text-sm); color: var(--white); text-decoration: underline;
  text-underline-offset: 4px;
}
.mtk .link-underline:hover { color: var(--gold); }

/* Offer on tablet/mobile: portrait slide so the image fills and the card
   sits at the bottom full-width — the "Meest gekozen" badge stays on the
   image corner instead of overlapping the card text. */
@media (max-width: 1024px) {
  .mtk .offer__track { gap: 16px; padding-inline: 16px; }
  .mtk .offer-slide { aspect-ratio: 4 / 5; flex-basis: min(560px, 86vw); }
  .mtk .offer-slide__card { left: 16px; right: 16px; bottom: 16px; max-width: none; padding: 22px; }
  .mtk .offer-slide__badge { top: 16px; left: 16px; }
}
@media (max-width: 560px) {
  .mtk .offer-slide { aspect-ratio: 3 / 4; flex-basis: 86vw; }
}

/* =========================================================
   Brand SVG icon tiles at reference size inside icon-boxes.
   ========================================================= */
.elementor-widget-icon-box .elementor-icon img,
.elementor-widget-icon-box .elementor-icon svg { width: 60px !important; height: 60px !important; object-fit: contain; }
.elementor-widget-icon-box .elementor-icon { background: none !important; }

/* CTA checklist: small inline check + text (not big tiles) */
.mt-cta-check .elementor-icon img,
.mt-cta-check .elementor-icon svg { width: 24px !important; height: 24px !important; }
.mt-cta-check .elementor-icon i { font-size: 22px !important; }
.mt-cta-check .elementor-icon { color: var(--gold, #CB9648) !important; }

/* Contact cards: horizontal, gold tile ~52px left of the text */
.mt-contact-card .elementor-icon img,
.mt-contact-card .elementor-icon svg { width: 52px !important; height: 52px !important; }
.mt-contact-card .elementor-icon-box-content { text-align: left; }

/* =========================================================
   Shared footer (Theme Builder). Scoped under the location
   wrapper (always present) because custom container classes
   don't render on top-level Theme Builder containers.
   ========================================================= */
.elementor-location-footer { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.10); }
.elementor-location-footer .mt-foot-heading,
.elementor-location-footer .mt-foot-heading * { font-family: "DM Mono", monospace !important; font-size: 12px !important; letter-spacing: 0.06em; text-transform: uppercase; color: #CB9648 !important; margin-bottom: 14px; }
.elementor-location-footer .mt-foot-links a { display: block; font-family: "Inter", sans-serif; font-size: 15px; color: rgba(255,255,255,0.60); text-decoration: none; margin: 0 0 12px; }
.elementor-location-footer .mt-foot-links a:hover { color: #fff; }
.elementor-location-footer .mt-foot-desc, .elementor-location-footer .mt-foot-desc p { font-family: "Inter", sans-serif; font-size: 15px; color: rgba(255,255,255,0.60); line-height: 1.6; }
.elementor-location-footer .mt-foot-copy, .elementor-location-footer .mt-foot-copy p,
.elementor-location-footer .mt-foot-legalwrap a { font-family: "Inter", sans-serif; font-size: 15px; color: rgba(255,255,255,0.55); text-decoration: none; }
.elementor-location-footer .mt-foot-legalwrap a { margin-left: 24px; }
.elementor-location-footer .mt-foot-legalwrap a:hover { color: #fff; }
.mt-footer .mt-foot-bottom, .mt-footer .mt-foot-bottom a { font-family: "Inter", sans-serif; font-size: 15px; color: rgba(255,255,255,0.55); text-decoration: none; }
.mt-footer .mt-foot-bottom a:hover { color: #fff; }

/* Shared header (Theme Builder), scoped on the location wrapper */
.elementor-location-header { position: sticky; top: 0; z-index: 999; }
.elementor-location-header .mt-topbar, .elementor-location-header .mt-topbar p { margin: 0; text-align: center; }
.elementor-location-header .mt-topbar a { color: #111 !important; font-family: "Inter", sans-serif; font-size: 14px; text-decoration: none; margin: 0 10px; }
.elementor-location-header .mt-nav, .elementor-location-header .mt-nav p { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin: 0; }
.elementor-location-header .mt-nav a { color: rgba(255,255,255,0.86); font-family: "Inter", sans-serif; font-size: 15px; letter-spacing: -0.01em; text-decoration: none; }
.elementor-location-header .mt-nav a:hover { color: #CB9648; }
.elementor-location-header .mt-wa, .elementor-location-header .mt-wa p { margin: 0; }
.elementor-location-header .mt-wa a { color: rgba(255,255,255,0.86) !important; font-family: "Inter", sans-serif; font-size: 15px; text-decoration: none; }
.elementor-location-header .mt-wa a:hover { color: #fff !important; }
@media (max-width: 900px) { .elementor-location-header .mt-nav { display: none; } }

/* Eyebrow = pill (matches reference .eyebrow--pill) */
.mt-eyebrow .elementor-heading-title {
  display: inline-block;
  font-family: "DM Mono", monospace !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #CB9648 !important;
  padding: 8px 14px;
  border: 1px solid #CB9648;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}
.mt-ph-title { font-family: "roc-grotesk-wide", sans-serif !important; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.02em; }
.mt-check-list .elementor-icon-list-icon svg, .mt-check-list .elementor-icon-list-icon i { color: #CB9648 !important; }
.mt-price-card { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; }
.mt-price-card--featured { border-color: #CB9648; box-shadow: 0 0 0 1px #CB9648; }

/* =========================================================
   Editor: stop the infinite marquee animation so the Elementor
   editor stays responsive (no constant repaints).
   ========================================================= */
body.elementor-editor-active .mtk .marquee__track { animation: none !important; }

/* Content is never hidden by CSS. The reveal engine animates from a
   set state at runtime and always leaves elements fully visible, so a
   failed/blocked GSAP load can never make content disappear. */


/* ---- Hard override: price/compare-toggle knoppen (kill theme/plugin pink+hover) ---- */
.mtk .price-toggle__btn,
.mtk .price-toggle__btn:link,
.mtk .price-toggle__btn:visited,
.mtk .price-toggle__btn:hover,
.mtk .price-toggle__btn:focus,
.mtk .price-toggle__btn:active {
	background: transparent !important;
	background-image: none !important;
	color: rgba(255,255,255,0.6) !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
}
.mtk .price-toggle__btn.is-active,
.mtk .price-toggle__btn.is-active:hover,
.mtk .price-toggle__btn.is-active:focus {
	background-image: var(--gold-grad) !important;
	color: #111111 !important;
}
.mtk .price-toggle__btn--popular .price-toggle__tag { color: var(--gold) !important; }
.mtk .price-toggle__btn--popular.is-active .price-toggle__tag { color: #111111 !important; }


/* ---- Tarieventabel full-width, geen card ---- */
.mtk .compare.mt-compare--flush {
	width: 100%;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.mtk .compare.mt-compare--flush table { width: 100%; }


/* ---- Tarieventabel: prijskolom gecentreerd op mobiel ---- */
@media (max-width: 768px) {
	.mtk #priceTable.mt-compare--flush tbody td { text-align: center !important; }
	.mtk #priceTable.mt-compare--flush tbody td .t-sub { text-align: center !important; }
}


/* ---- Tarieventabel mobiel: fit + prijskolom gecentreerd (bulletproof) ---- */
@media (max-width: 768px) {
	.mtk #priceTable.mt-compare--flush { overflow: visible !important; }
	.mtk #priceTable.mt-compare--flush table { min-width: 0 !important; width: 100% !important; table-layout: fixed !important; }
	.mtk #priceTable.mt-compare--flush tbody th { width: 58% !important; }
	.mtk #priceTable.mt-compare--flush tbody td { width: 42% !important; text-align: center !important; }
	.mtk #priceTable.mt-compare--flush tbody td .t-sub { text-align: center !important; }
}


/* ---- Knoppen + FAQ-titels in Inter (site-breed) ---- */
.elementor-button, .mtk .btn, .mtk .btn--gold, .mtk .btn--white {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.e-n-accordion-item-title, .e-n-accordion-item-title-text, .elementor-widget-n-accordion .e-n-accordion-item-title-text {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}


/* ---- Kill stray theme/plugin purple/pink hover colors (site-breed) ---- */
body a:hover, body a:focus, body a:active { color: inherit; }
.contact-fab a:hover, .contact-fab a:hover *, .contact-fab a:focus, .contact-fab a:focus * { color: inherit !important; }
.contact-fab__toggle, .contact-fab__toggle:hover, .contact-fab__toggle:focus, .contact-fab__toggle:active { background: rgba(20,20,20,0.94) !important; }
.contact-fab__link:hover, .contact-fab__link:focus { background: rgba(255,255,255,0.05) !important; }

/* ---- FAQ-pagina (36): alles gecentreerd ---- */
.page-id-36 .elementor-widget-heading .elementor-heading-title { text-align: center !important; }
.page-id-36 .elementor-widget-text-editor { text-align: center !important; }
.page-id-36 .elementor-widget-text-editor .eyebrow { display: inline-block; }
.page-id-36 .elementor-element > .e-con-inner { align-items: center !important; }
.page-id-36 .elementor-widget-n-accordion { width: 100% !important; max-width: 880px; margin-left: auto !important; margin-right: auto !important; }


/* ---- Grain duidelijker + site-breed ---- */
body::after { opacity: 0.08 !important; z-index: 955 !important; }

/* ---- Header: sticky + transparant boven, donker bij scrollen (zoals origineel) ---- */
.elementor-location-header { position: sticky !important; top: 0; z-index: 999; transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
body.mt-scrolled .elementor-location-header { background: rgba(12,12,12,0.94) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }
.elementor-location-header .elementor-item:hover, .elementor-location-header .elementor-item.elementor-item-active { color: #CB9648 !important; }

/* ---- Submenu-panel als de reference .dropdown ---- */
.elementor-location-header .elementor-nav-menu--dropdown,
.elementor-location-header .sub-menu.elementor-nav-menu--dropdown {
	padding: 10px !important;
	background: rgba(26,26,26,0.98) !important;
	border: 1px solid rgba(255,255,255,0.10) !important;
	border-radius: 14px !important;
	box-shadow: 0 20px 60px rgba(0,0,0,0.45) !important;
	min-width: 260px;
}
.elementor-location-header .elementor-nav-menu--dropdown .elementor-sub-item {
	font-family: "Inter", -apple-system, sans-serif !important;
	font-size: 0.9375rem !important;
	letter-spacing: -0.03em;
	color: rgba(255,255,255,0.60) !important;
	padding: 11px 14px !important;
	border-radius: 9px !important;
	transition: background-color .2s ease, color .2s ease;
	background: transparent !important;
}
.elementor-location-header .elementor-nav-menu--dropdown .elementor-sub-item:hover {
	background: rgba(255,255,255,0.05) !important;
	color: #ffffff !important;
}
/* 'Meest gekozen'-tag op Small Group */
.elementor-location-header .elementor-nav-menu--dropdown a[href*="small-group-coaching"] {
	display: flex !important; align-items: center; justify-content: space-between; gap: 10px;
}
.elementor-location-header .elementor-nav-menu--dropdown a[href*="small-group-coaching"]::after {
	content: "Meest gekozen";
	flex: none;
	font-family: "DM Mono", ui-monospace, monospace;
	font-weight: 500; font-size: 0.6rem; letter-spacing: 0.04em; text-transform: uppercase;
	color: #111111;
	background: linear-gradient(90deg,#a9762f 0%,#e6bd77 50%,#a9762f 100%);
	padding: 2px 8px; border-radius: 999px;
}


/* ---- Mobiel: coverflow gouden glow niet afkappen ---- */
@media (max-width: 768px) {
	.mtk .coverflow { padding-top: 46px !important; padding-bottom: 46px !important; }
}

/* ---- Mobiel: offer-slider swipebaar (native scroll + snap) ---- */
@media (max-width: 768px) {
	.mtk .offer__viewport {
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.mtk .offer__viewport::-webkit-scrollbar { display: none; }
	.mtk .offer__track { transform: none !important; transition: none !important; }
	.mtk .offer-slide { scroll-snap-align: center; }
	.mtk .offer-slide.is-clone { display: none !important; }
}
