/* ============================================================
   KIOSKTOUCH — marketplace + app-detail
   Bouwt voort op css/style.css (tokens: --bg, --accent, --glass, …).
   Donker #0B0B0C · accent oranje #0d0d0e, spaarzaam · Inter Tight.
   ============================================================ */

/* actieve nav-link (Apps) */
.nav-links a.is-current { color: var(--ink); }
.nav-links a.is-current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ============================================================
   ACHTERGROND-ORBS — hergebruik .bg-orbs/.bg-orb uit style.css
   Elke marketplace- en app-detail-sectie krijgt dezelfde traag
   zwevende oranje gloed als de homepage. De sectie clipt en de
   inhoud (.wrap) staat boven de orbs (z-index 0).
   ============================================================ */
.mp-hero, .mp-grid-section, .mp-cta,
.pdp-hero, .pdp-feats, .pdp-steps-section, .pdp-cta { position: relative; overflow: hidden; }
.mp-hero > .wrap, .mp-grid-section > .wrap, .mp-cta > .wrap,
.pdp-hero > .wrap, .pdp-feats > .wrap, .pdp-steps-section > .wrap, .pdp-cta > .wrap {
  position: relative; z-index: 1;
}
/* de home-CTA-band vult de sectie zonder de extra top-marge uit style.css */
.mp-cta .big-cta, .pdp-cta .big-cta { margin-top: 0; }

/* ============================================================
   MARKETPLACE — hero
   ============================================================ */
.mp-hero {
  position: relative; padding-top: 150px; padding-bottom: clamp(30px, 5vw, 56px);
  overflow: hidden;
}
.mp-hero-glow {
  position: absolute; top: -14%; left: 50%; transform: translateX(-50%);
  width: 900px; max-width: 130vw; height: 560px; pointer-events: none; z-index: 0;
  background: radial-gradient(50% 50% at 50% 40%, rgba(13,13,14,.18), rgba(13,13,14,.04) 46%, transparent 72%);
  filter: blur(12px);
}
.mp-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.mp-hero h1 {
  font-size: clamp(38px, 6.4vw, 68px); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.045em; margin-top: 22px;
}
.mp-hero h1 em { font-style: normal; color: var(--accent); }
.mp-hero p {
  color: var(--ink-dim); font-size: clamp(17px, 2.1vw, 20px); line-height: 1.5;
  margin-top: 24px; max-width: 560px;
}

/* ============================================================
   MARKETPLACE — grid
   ============================================================ */
.mp-grid-section { padding-block: clamp(30px, 5vw, 56px) clamp(20px, 3vw, 34px); }
/* 24 apps: net 4-koloms raster (desktop). Breekt gradueel af op smallere schermen. */
.mp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1100px) { .mp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .mp-grid { grid-template-columns: repeat(2, 1fr); } }
.mp-card {
  --app: #32B393;
  position: relative; display: flex; flex-direction: column;
  padding: 28px 26px 26px; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden; min-height: 250px;
}
/* hover-gloed volgt de eigen app-kleur (--app, gezet per kaart in js/apps.js) */
.mp-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease);
  background: radial-gradient(120% 90% at 0 0, color-mix(in srgb, var(--app) 15%, transparent), transparent 55%);
}
.mp-card:hover {
  transform: translateY(-6px) scale(1.03); background: var(--glass-2); border-color: var(--line);
  box-shadow: 0 34px 66px -30px rgba(0,0,0,.7), 0 0 0 1px color-mix(in srgb, var(--app) 22%, transparent);
}
.mp-card:hover::before { opacity: 1; }
.mp-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.mp-card-top {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 22px;
}
/* monochroom oranje-op-donker icoon, GEEN oranje blok-achtergrond */
.mp-card-ico { width: 40px; height: 40px; display: grid; place-items: center; }
.mp-card-ico svg { width: 30px; height: 30px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.mp-card-ico-letter {
  font-size: 24px; font-weight: 600; letter-spacing: -0.03em; color: var(--accent);
}
/* echt app-logo (gekleurde tegel) — afgeronde tegel, schaduw volgt de eigen kleur */
.mp-card-ico-img {
  width: 52px; height: 52px;
  filter: drop-shadow(0 8px 18px color-mix(in srgb, var(--app, #32B393) 32%, transparent));
}
.mp-card-ico-img img {
  width: 100%; height: 100%; border-radius: 13px; display: block;
  transition: transform .35s var(--ease);
}
.mp-card:hover .mp-card-ico-img img { transform: scale(1.06) rotate(-2deg); }
.mp-card-soon .mp-card-ico-img { filter: drop-shadow(0 8px 18px rgba(13,13,14,.16)); opacity: .9; }
.mp-card-h {
  position: relative; z-index: 1;
  font-size: 21px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
}
.mp-card-tag {
  position: relative; z-index: 1; color: var(--ink-dim); font-size: 14.5px;
  margin-top: 10px; line-height: 1.5; flex: 1 1 auto;
}
.mp-card-cta {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.mp-card-cta svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.mp-card:hover .mp-card-cta { color: var(--accent-2); }
.mp-card:hover .mp-card-cta svg { transform: translateX(4px); }

/* app die er nog niet is: iets gedempter, badge zegt 'binnenkort' */
.mp-card-soon .mp-card-h, .mp-card-soon .mp-card-ico svg { opacity: .8; }
.mp-card-soon .mp-card-cta { color: var(--ink-dim); }

/* badges — inbegrepen (oranje-getint), betaald (neutraal), binnenkort (fijn) */
.mp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 100px; white-space: nowrap; line-height: 1;
}
.mp-badge-incl { color: var(--accent-2); background: rgba(13,13,14,.1); border: 1px solid rgba(13,13,14,.32); }
.mp-badge-incl::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.mp-badge-paid { color: var(--ink); background: var(--glass-2); border: 1px solid var(--line); }
.mp-badge-soon { color: var(--ink-dim); background: rgba(255,255,255,.03); border: 1px dashed var(--line); }

.mp-note {
  margin-top: 30px; text-align: center; color: var(--ink-dim); font-size: 15.5px;
}
.mp-note b { color: var(--ink); font-weight: 600; }

/* ============================================================
   MARKETPLACE — CTA-strook
   ============================================================ */
.mp-cta { position: relative; padding-block: clamp(60px, 9vw, 110px); overflow: hidden; }
.mp-cta-glow {
  position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 900px; max-width: 130vw; height: 560px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(13,13,14,.12), transparent 70%);
  filter: blur(10px);
}
.mp-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: clamp(30px, 4vw, 46px); border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(13,13,14,.1), rgba(255,255,255,.04) 52%);
  border: 1px solid rgba(13,13,14,.3);
}
.mp-cta-copy h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; }
.mp-cta-copy p { color: var(--ink-dim); font-size: clamp(15px, 1.9vw, 17px); margin-top: 14px; max-width: 460px; line-height: 1.55; }
.mp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   APP-DETAIL — hero
   ============================================================ */
.pdp-hero { position: relative; padding-top: 128px; padding-bottom: clamp(40px, 6vw, 72px); overflow: hidden; }
.pdp-hero-glow {
  position: absolute; top: -12%; left: 60%; transform: translateX(-50%);
  width: 820px; max-width: 120vw; height: 560px; pointer-events: none; z-index: 0;
  background: radial-gradient(50% 50% at 50% 40%, rgba(13,13,14,.18), rgba(13,13,14,.04) 46%, transparent 72%);
  filter: blur(12px);
}
.pdp-back {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-dim);
  margin-bottom: clamp(26px, 4vw, 40px); transition: color .25s var(--ease);
}
.pdp-back svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.pdp-back:hover { color: var(--ink); }
.pdp-back:hover svg { transform: translateX(-3px); }

.pdp-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.pdp-hero-copy { max-width: 560px; }
.pdp-hero-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pdp-hero-copy h1 {
  font-size: clamp(38px, 6vw, 66px); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.045em; margin-top: 20px;
}
.pdp-tagline { color: var(--ink); font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; margin-top: 20px; letter-spacing: -0.02em; }
.pdp-omschrijving { color: var(--ink-dim); font-size: clamp(15px, 1.9vw, 17px); margin-top: 18px; line-height: 1.6; max-width: 520px; }
.pdp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- titelrij: app-icoon naast de H1 ---------- */
.pdp-title-row { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.pdp-title-row h1 { margin-top: 0; }
.pdp-title-ico {
  --app: #32B393;
  flex: none; width: 60px; height: 60px; display: grid; place-items: center;
  filter: drop-shadow(0 12px 26px color-mix(in srgb, var(--app) 42%, transparent));
}
.pdp-title-ico img { width: 100%; height: 100%; display: block; }
.pdp-title-ico-letter {
  width: 60px; height: 60px; border-radius: 15px;
  font-size: 28px; font-weight: 600; letter-spacing: -0.04em; color: #fff;
  background: linear-gradient(160deg, color-mix(in srgb, var(--app) 74%, #fff), var(--app));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

/* ---------- portret-toestel met realistisch app-scherm ---------- */
.pdp-hero-visual { position: relative; }
.pdp-dev-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.pdp-dev-glow {
  position: absolute; z-index: 0; left: 50%; top: 44%; transform: translate(-50%, -50%);
  width: 122%; height: 98%; pointer-events: none;
  background: radial-gradient(48% 52% at 50% 44%, rgba(13,13,14,.24), rgba(13,13,14,.05) 46%, transparent 72%);
  filter: blur(18px);
}
.pdp-dev { position: relative; z-index: 1; width: 100%; max-width: 384px; }
/* de toestel-rand (bezel) rond het scherm */
.pdp-dev-bezel {
  position: relative; border-radius: 30px; padding: 12px;
  background: linear-gradient(158deg, #232327 0%, #101013 62%, #0a0a0c 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.5),
    0 2px 3px rgba(0,0,0,.45),
    0 50px 90px -40px rgba(0,0,0,.9),
    0 26px 54px -32px rgba(0,0,0,.65);
}
/* het LICHTE app-scherm: donkere inkt op wit, los van de donkere site-tokens */
.pdp-scr {
  /* Geen vaste aspect meer: het scherm krijgt een portret-ondergrens (min-height)
     en groeit met zijn inhoud mee. Korte schermen vullen de bezel netjes (inhoud
     verticaal gecentreerd, zie .sc-body), lange schermen (kiezen/producten) rekken
     uit zonder afkappen. Zo nooit een grote lege witte band. */
  position: relative; width: 100%; min-height: 428px; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  font-family: var(--font);
  --bg: #FFFFFF; --bg-off: #FAFAFA; --bg-mist: #F4F4F5; --bg-fog: #ECECEE;
  --ink: #0A0A0B; --ink-soft: #1A1A1C; --muted: #6B6B70; --muted-2: #9A9AA0;
  --scr-accent: #32B393;
  background: var(--bg); color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.30);
}
.pdp-scr-gloss {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 10;
  background: linear-gradient(145deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 46%);
}
.pdp-mock-label {
  position: relative; z-index: 1; margin-top: 18px; font-size: 13px; color: var(--ink-faint);
  letter-spacing: .04em;
}

/* ============================================================
   APP-SCHERMEN — gedeelde stijlen (per-app mockup)
   Geport uit de echte productpagina. Alles binnen .pdp-scr, dus het
   lichte palet hierboven bepaalt de kleuren. Namespace: .sc-*
   ============================================================ */
.sc-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px 10px; border-bottom: 1px solid rgba(10,10,11,.07);
  background: #FFFFFF; flex: none;
}
.sc-bar-brand { font-size: .58rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.sc-bar-brand b { color: var(--scr-accent); font-weight: 800; }
.sc-bar-time {
  font-size: .55rem; font-weight: 600; color: var(--muted-2); letter-spacing: .02em;
  font-feature-settings: "tnum";
}
.sc-body {
  flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: center;
  padding: 16px 16px 16px;
}
/* gedeelde scherm-kop (producten/kiezen/afspraak/formulier) */
.sc-scr-h { font-size: .7rem; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 2px; }
.sc-scr-sub { font-size: .5rem; color: var(--muted); }

/* gedeelde donkere actieknop */
.sc-go-btn {
  height: 30px; border-radius: 9px; background: linear-gradient(180deg, #1C1C20, #0A0A0B);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: -0.01em;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 18px -8px rgba(10,10,11,.5);
}

/* ── MEDEWERKER ── */
.sc-medewerker { background: #FAFAFA; }
.sc-med-head { text-align: center; margin-bottom: 14px; }
.sc-med-title { font-size: .78rem; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.15; margin-bottom: 4px; }
.sc-med-sub { font-size: .5rem; color: var(--muted); letter-spacing: .01em; }
.sc-med-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(145deg, #e8e8ea, #f4f4f5);
  border: 1.5px solid rgba(10,10,11,.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  box-shadow: 0 2px 0 rgba(255,255,255,.9) inset, 0 8px 20px -8px rgba(10,10,11,.18);
}
.sc-med-avatar svg { width: 22px; height: 22px; color: #4B4B50; }
.sc-med-big-btn {
  height: 42px; border-radius: 13px; background: linear-gradient(180deg, #1C1C20, #0A0A0B);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: -0.015em;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 24px -8px rgba(10,10,11,.55);
  margin-bottom: 8px;
}
.sc-med-big-btn svg { width: 13px; height: 13px; flex: none; }
.sc-med-hint {
  display: flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 9px;
  background: rgba(10,10,11,.04); border: 1px solid rgba(10,10,11,.07);
}
.sc-med-hint-dot { width: 6px; height: 6px; border-radius: 50%; background: #34C759; flex: none; box-shadow: 0 0 0 2px rgba(52,199,89,.2); }
.sc-med-hint-text { flex: 1; height: 4px; border-radius: 2px; background: rgba(10,10,11,.12); }

/* ── gedeelde velden ── */
.sc-fld-label { font-size: .48rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.sc-fld-wrap { display: flex; flex-direction: column; gap: 9px; margin-bottom: 9px; }
.sc-fld {
  height: 28px; border-radius: 8px; background: #fff; border: 1px solid rgba(10,10,11,.10);
  display: flex; align-items: center; gap: 7px; padding: 0 10px; box-shadow: 0 1px 3px rgba(10,10,11,.06);
}
.sc-fld-line { height: 4px; border-radius: 2px; background: #E4E4E6; width: 52%; }
.sc-fld.active { border-color: rgba(10,10,11,.28); box-shadow: 0 0 0 2px rgba(10,10,11,.09), 0 1px 3px rgba(10,10,11,.06); }
.sc-fld.active .sc-fld-line { background: rgba(10,10,11,.2); width: 62%; }
.sc-fld .sc-caret { margin-left: auto; width: 1.5px; height: 11px; background: var(--ink); border-radius: 1px; opacity: .8; animation: caretBlink 1.1s ease-in-out infinite; }
@keyframes caretBlink { 0%,100%{opacity:.8} 50%{opacity:0} }

/* ── INFO ── */
.sc-info { background: #FAFAFA; }
.sc-info-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.sc-info-logo-box {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, #1C1C20, #0A0A0B);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px -4px rgba(10,10,11,.5);
}
.sc-info-logo-box svg { width: 16px; height: 16px; color: #fff; }
.sc-info-welcome { font-size: .78rem; font-weight: 800; letter-spacing: -0.028em; color: var(--ink); text-align: center; margin-bottom: 3px; }
.sc-info-msg { font-size: .5rem; color: var(--muted); text-align: center; margin-bottom: 12px; line-height: 1.45; }
.sc-info-rows { display: flex; flex-direction: column; gap: 5px; }
.sc-info-row {
  display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; border-radius: 9px;
  background: #fff; border: 1px solid rgba(10,10,11,.08); box-shadow: 0 1px 3px rgba(10,10,11,.05);
}
.sc-info-day { font-size: .52rem; font-weight: 500; color: var(--muted); }
.sc-info-hours { font-size: .52rem; font-weight: 700; color: var(--ink); }
.sc-info-closed { font-size: .52rem; font-weight: 500; color: var(--muted-2); }

/* ── PRODUCTEN ── */
.sc-producten-head { margin-bottom: 10px; }
.sc-producten-search {
  height: 26px; border-radius: 8px; background: #fff; border: 1px solid rgba(10,10,11,.10);
  display: flex; align-items: center; gap: 7px; padding: 0 9px; margin-bottom: 9px; box-shadow: 0 1px 3px rgba(10,10,11,.05);
}
.sc-producten-search svg { width: 10px; height: 10px; color: var(--muted); flex: none; }
.sc-producten-search-line { height: 4px; border-radius: 2px; background: #E4E4E6; width: 50%; }
.sc-producten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sc-prod-cell {
  border-radius: 9px; background: #fff; border: 1px solid rgba(10,10,11,.08); overflow: hidden;
  box-shadow: 0 1px 3px rgba(10,10,11,.06);
}
.sc-prod-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, #F0F0F2, #E4E4E6); }
.sc-prod-cell.sel .sc-prod-thumb { background: linear-gradient(135deg, #2A2A2E, #0A0A0B); }
.sc-prod-meta { padding: 5px 8px 7px; }
.sc-prod-lbl { font-size: .5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-prod-price { font-size: .48rem; font-weight: 600; color: var(--muted); font-feature-settings: "tnum"; }

/* ── BESTELLEN ── */
.sc-bestellen { background: #FAFAFA; }
.sc-bestellen-head { margin-bottom: 10px; }
.sc-bestellen-title { font-size: .75rem; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 2px; }
.sc-bestellen-sub { font-size: .5rem; color: var(--muted); }
.sc-bestellen-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 9px; }
.sc-order-row {
  display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 9px;
  background: #fff; border: 1px solid rgba(10,10,11,.08); box-shadow: 0 1px 3px rgba(10,10,11,.05);
}
.sc-order-thumb { width: 28px; height: 28px; border-radius: 7px; background: linear-gradient(135deg, #2A2A2E, #141416); flex: none; }
.sc-order-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sc-order-name { font-size: .58rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-order-price { font-size: .5rem; font-weight: 600; color: var(--muted); letter-spacing: .01em; font-feature-settings: "tnum"; }
.sc-order-qty { font-size: .48rem; font-weight: 700; color: var(--muted-2); background: rgba(10,10,11,.05); border-radius: 4px; padding: 2px 5px; flex: none; }
.sc-order-row.sel { border-color: rgba(10,10,11,.24); box-shadow: 0 0 0 1.5px rgba(10,10,11,.18), 0 4px 12px -6px rgba(10,10,11,.3); }
.sc-total-row {
  display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 9px;
  background: rgba(10,10,11,.04); border: 1px solid rgba(10,10,11,.08); margin-bottom: 7px;
}
.sc-total-lbl { font-size: .55rem; font-weight: 600; color: var(--muted); letter-spacing: -0.01em; }
.sc-total-amt { font-size: .64rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; font-feature-settings: "tnum"; }

/* ── KIEZEN ── */
.sc-kiezen-head { margin-bottom: 10px; }
.sc-kiezen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sc-kies-tile {
  border-radius: 10px; background: #fff; border: 1px solid rgba(10,10,11,.09); padding: 9px;
  display: flex; flex-direction: column; gap: 6px; box-shadow: 0 1px 3px rgba(10,10,11,.06);
  font-size: .52rem; font-weight: 600; color: var(--ink-soft); letter-spacing: -0.01em;
  aspect-ratio: 1.1 / 1; justify-content: flex-end;
}
.sc-kies-tile.sel {
  background: #0A0A0B; border-color: #0A0A0B; color: rgba(255,255,255,.85);
  box-shadow: 0 0 0 1.5px rgba(10,10,11,.5), 0 8px 20px -8px rgba(10,10,11,.5);
}
.sc-kies-tile svg { width: 14px; height: 14px; }

/* ── AFSPRAAK ── */
.sc-afspraak-head { margin-bottom: 11px; }
.sc-day-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 13px; }
.sc-day {
  border-radius: 9px; background: #fff; border: 1px solid rgba(10,10,11,.09); padding: 6px 0;
  display: flex; flex-direction: column; align-items: center; gap: 2px; box-shadow: 0 1px 3px rgba(10,10,11,.05);
}
.sc-day-dow { font-size: .42rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); }
.sc-day-num { font-size: .62rem; font-weight: 800; color: var(--ink-soft); letter-spacing: -0.02em; font-feature-settings: "tnum"; }
.sc-day.sel { background: linear-gradient(180deg, #1C1C20, #0A0A0B); border-color: #0A0A0B; box-shadow: 0 6px 16px -8px rgba(10,10,11,.5); }
.sc-day.sel .sc-day-dow { color: rgba(255,255,255,.6); }
.sc-day.sel .sc-day-num { color: #fff; }
.sc-slot-label { font-size: .48rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.sc-slot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 11px; }
.sc-slot {
  height: 30px; border-radius: 9px; background: #fff; border: 1px solid rgba(10,10,11,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; color: var(--ink-soft); letter-spacing: -0.01em;
  font-feature-settings: "tnum"; box-shadow: 0 1px 3px rgba(10,10,11,.05);
}
.sc-slot.sel {
  background: color-mix(in srgb, var(--scr-accent) 12%, #fff);
  border-color: color-mix(in srgb, var(--scr-accent) 55%, transparent);
  color: var(--scr-accent);
  box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--scr-accent) 38%, transparent), 0 4px 12px -6px color-mix(in srgb, var(--scr-accent) 45%, transparent);
}

/* ── FORMULIER (velden + beoordeling) ── */
.sc-form-head { margin-bottom: 12px; }
.sc-rating { display: flex; gap: 5px; align-items: center; height: 28px; }
.sc-rating i { width: 18px; height: 18px; border-radius: 5px; background: #ECECEE; border: 1px solid rgba(10,10,11,.06); display: block; }
.sc-rating i.on {
  background: color-mix(in srgb, var(--scr-accent) 88%, #fff);
  border-color: color-mix(in srgb, var(--scr-accent) 55%, transparent);
  box-shadow: 0 2px 6px -2px color-mix(in srgb, var(--scr-accent) 55%, transparent);
}

/* ── scherm-intro-animatie ── */
@keyframes screenEnter { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.pdp-dev-wrap { animation: screenEnter 1s cubic-bezier(.16,1,.3,1) .2s both; }

/* ============================================================
   APP-DETAIL — kenmerken
   ============================================================ */
.pdp-feats { padding-block: clamp(50px, 8vw, 100px); background: var(--bg-2); }
.pdp-feats-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.pdp-feats-head h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; margin-top: 16px; }
.pdp-feats-list { list-style: none; display: grid; gap: 16px; }
.pdp-feats-list li {
  display: flex; gap: 15px; align-items: flex-start; font-size: clamp(15px, 1.9vw, 17px);
  color: var(--ink); padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); line-height: 1.5;
}
.pdp-feats-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pdp-tick {
  flex: none; width: 24px; height: 24px; border-radius: 8px; margin-top: 1px;
  background: rgba(13,13,14,.14); border: 1px solid rgba(13,13,14,.32);
  display: grid; place-items: center;
}
.pdp-tick svg { width: 13px; height: 13px; stroke: var(--accent); }

/* ============================================================
   APP-DETAIL — stappen
   ============================================================ */
.pdp-steps-section { padding-block: clamp(60px, 9vw, 120px); }
.pdp-steps-section .section-head { max-width: 560px; }
.pdp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pdp-step {
  position: relative; padding: 32px 26px 34px; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease), box-shadow .4s var(--ease);
}
.pdp-step:hover {
  transform: translateY(-6px) scale(1.02); border-color: var(--line); background: var(--glass-2);
  box-shadow: 0 30px 58px -30px rgba(0,0,0,.6);
}
.pdp-step-n {
  display: inline-flex; align-items: center; margin-bottom: 20px;
}
.pdp-step-n span {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  font-size: 15px; font-weight: 600; color: var(--accent);
  background: rgba(13,13,14,.1); border: 1px solid rgba(13,13,14,.3);
}
.pdp-step h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.pdp-step p { color: var(--ink-dim); font-size: 15px; margin-top: 10px; line-height: 1.55; }

/* ============================================================
   APP-DETAIL — CTA
   ============================================================ */
.pdp-cta { position: relative; padding-block: clamp(70px, 10vw, 130px); background: var(--bg-2); overflow: hidden; }
.pdp-cta-glow {
  position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 900px; max-width: 130vw; height: 560px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(13,13,14,.14), transparent 70%);
  filter: blur(10px);
}
.pdp-cta-inner {
  position: relative; z-index: 1; text-align: center; max-width: 620px; margin-inline: auto;
}
.pdp-cta-inner h2 { font-size: clamp(28px, 4.4vw, 46px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; }
.pdp-cta-inner p { color: var(--ink-dim); font-size: clamp(16px, 1.9vw, 18px); margin: 18px auto 0; max-width: 480px; line-height: 1.55; }
.pdp-cta-actions { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================================
   SCHERM-DETAIL — specifieke stijlen (.sdp-*)
   Hergebruikt alle .pdp-* basisstijlen; voegt scherm-eigen
   elementen toe: foto-placeholder, specs-tabel, aanrader-badge.
   ============================================================ */

/* naam-kop: iets kleiner dan app-kop (geen icoon-tegel) */
.sdp-naam {
  font-size: clamp(36px, 5.6vw, 62px); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.045em; margin-top: 20px;
}

/* aanrader-badge: hergebruikt .mp-badge-incl */
.sdp-badge-aanrader { vertical-align: middle; }

/* download-knop in de hero: iets rustiger dan de accent-knop */
.sdp-fiche-btn { display: inline-flex; align-items: center; gap: 8px; }
.sdp-fiche-btn svg { width: 17px; height: 17px; flex: none; }

/* foto-kolom: niet breder dan het scherm zelf waard is */
.sdp-visual-col { display: flex; justify-content: center; align-items: center; }

/* foto als er wél een bestand is */
.sdp-photo-wrap { width: 100%; max-width: 480px; border-radius: var(--r-lg); overflow: hidden; }
.sdp-photo { width: 100%; height: auto; display: block; border-radius: var(--r-lg); }

/* placeholder-box: lichte landscape-screenvorm */
.sdp-photo-placeholder {
  width: 100%; max-width: 480px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: var(--glass); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sdp-photo-placeholder-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; width: 100%; height: 100%; position: relative; z-index: 1;
}
.sdp-photo-screen-frame {
  width: 70%; max-width: 260px; aspect-ratio: 16 / 9;
  border-radius: 10px; border: 2px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.1);
}
.sdp-photo-screen-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 40%, rgba(13,13,14,.14), transparent 70%);
}
.sdp-photo-screen-body {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.sdp-photo-wordmark {
  font-size: clamp(12px, 1.8vw, 17px); font-weight: 700; letter-spacing: -0.02em;
  color: rgba(255,255,255,.6);
}
.sdp-photo-wordmark b { color: var(--accent); font-weight: 800; }
.sdp-photo-maat {
  font-size: clamp(22px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.04em;
  color: rgba(255,255,255,.35); line-height: 1;
}
.sdp-photo-hint {
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 500;
}

/* specs-sectie: bredere grid (kop + tabel naast elkaar, zelfde als pdp-feats-grid) */
.sdp-specs-grid { grid-template-columns: 1fr 1.6fr; align-items: start; gap: clamp(30px, 5vw, 70px); }

/* specs-tabel */
.sdp-specs-table-wrap { display: flex; flex-direction: column; gap: 28px; }
.sdp-specs-table { width: 100%; border-collapse: collapse; }
.sdp-spec-row { border-bottom: 1px solid var(--line-soft); }
.sdp-spec-row:last-child { border-bottom: none; }
.sdp-spec-label {
  padding: 13px 0; font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-dim); text-align: left; vertical-align: top; width: 40%;
  padding-right: 16px; white-space: nowrap;
}
.sdp-spec-waarde {
  padding: 13px 0; font-size: 15px; font-weight: 500;
  color: var(--ink); text-align: left; vertical-align: top; line-height: 1.45;
}

/* download-link onder de tabel */
.sdp-fiche-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-dim);
  transition: color .25s var(--ease);
}
.sdp-fiche-link svg { width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.sdp-fiche-link:hover { color: var(--ink); }
.sdp-fiche-link:hover svg { transform: translateY(2px); }

/* responsive aanpassingen */
@media (max-width: 980px) {
  .sdp-specs-grid { grid-template-columns: 1fr; gap: 26px; }
  .sdp-photo-placeholder { max-width: 380px; margin-inline: auto; }
}
@media (max-width: 520px) {
  .sdp-spec-label { font-size: 12px; width: 38%; }
  .sdp-spec-waarde { font-size: 14px; }
}

/* ============================================================
   SCHERM-DETAIL RIJK — hero-intro, chips, galerij, spec-groepen
   Bouwt door op alle .sdp-* / .pdp-* stijlen hierboven.
   Accent uitsluitend via var(--accent) / var(--accent-2).
   ============================================================ */

/* hero: intro-alinea onder de tagline */
.sdp-intro {
  color: var(--ink-dim); font-size: clamp(15px, 1.75vw, 17px);
  line-height: 1.6; margin-top: 18px; max-width: 540px;
}

/* op-aanvraag-badge: neutraal (geen accent) */
.sdp-badge-aanvraag {
  color: var(--ink-dim); background: var(--glass); border: 1px solid var(--line);
}

/* highlight-chips */
.sdp-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px;
}
.sdp-chip {
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-dim);
  padding: 7px 13px 7px 11px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line);
  display: inline-flex; align-items: center;
}
.sdp-chip::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; margin-right: 8px;
  background: var(--accent); box-shadow: 0 0 8px var(--accent-glow);
}

/* ---- fotogalerij: lichte lightbox-kaart + klikbare thumbnails ---- */
.sdp-gallery {
  width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 14px;
  /* hoogte-plafond van het hoofdbeeld; de frame-breedte volgt hieruit + de
     beeldverhouding, zodat het kader nooit absurd hoog wordt bij een staand beeld */
  --sdp-maxh: clamp(320px, 54vh, 560px);
}
/* hoofdbeeld: het kader ADEMT MEE met de beeldverhouding (--sdp-ar, gezet door
   scherm-detail.js op basis van de natuurlijke afmetingen van de getoonde foto).
   Liggend blijft liggend, staand blijft staand -- geen letterbox, geen crop. */
.sdp-gallery-main {
  position: relative; margin-inline: auto;
  width: 100%;
  aspect-ratio: 4 / 3;              /* VAST kader — verandert nooit, ook niet bij portret/landscape */
  max-height: var(--sdp-maxh);
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, #fafafa, #ececee);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.5);
}
.sdp-gallery-img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  padding: 14px; display: block; transition: opacity .28s var(--ease);
}
.sdp-gallery-img.is-swapping { opacity: 0; }
.sdp-gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; }
.sdp-thumb {
  flex: 0 0 auto; width: clamp(70px, 18vw, 92px); aspect-ratio: 1 / 1;
  border-radius: 12px; overflow: hidden; padding: 0; cursor: pointer;
  background: linear-gradient(160deg, #fafafa, #ececee); border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sdp-thumb-img { width: 100%; height: 100%; object-fit: contain; padding: 6px; display: block; }
.sdp-thumb:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.24); }
.sdp-thumb.is-active {
  border: 3px solid var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), 0 12px 26px -12px var(--accent-glow);
  transform: translateY(-2px);
}
.sdp-thumb:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* lege beeld-plek (geen foto) -- erft het mee-ademende kader, landscape default */
.sdp-gallery-placeholder {
  flex-direction: column; gap: 8px;
  background: var(--glass);
}

/* ---- spec-sectie: kop + groepen-grid ---- */
.sdp-specs-head { max-width: 620px; margin-bottom: clamp(28px, 4vw, 46px); }
.sdp-specs-head h2 {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.06; margin-top: 14px;
}
.sdp-specgroups {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px); align-items: start;
}
.sdp-specgroup {
  background: var(--glass); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(20px, 2.4vw, 28px);
}
.sdp-specgroup-title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-2);
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.sdp-specgroup .sdp-specs-table { margin-top: 4px; }
.sdp-specgroup .sdp-spec-label { white-space: normal; }

/* fiche-download onder de groepen */
.sdp-specs-fiche { margin-top: clamp(26px, 4vw, 42px); }

/* responsive */
@media (max-width: 980px) {
  .sdp-gallery { margin-inline: auto; }
}
@media (max-width: 860px) {
  .sdp-specgroups { grid-template-columns: 1fr; }
}

/* ============================================================
   APP-DETAIL — niet gevonden
   ============================================================ */
.pdp-notfound { padding-top: 180px; padding-bottom: 140px; text-align: center; }
.pdp-notfound-inner { max-width: 480px; margin-inline: auto; }
.pdp-notfound-inner h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 600; letter-spacing: -0.035em; }
.pdp-notfound-inner p { color: var(--ink-dim); font-size: 17px; margin: 18px 0 30px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  /* mp-grid houdt 3 per rij (2 gecentreerd op rij 2) tot de mobiele breakpoint */
  .pdp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-hero-visual { order: -1; max-width: 400px; margin-inline: auto; width: 100%; }
  .pdp-feats-grid { grid-template-columns: 1fr; gap: 26px; }
  .pdp-steps { grid-template-columns: 1fr; }
  .nav-links a.is-current::after { display: none; }
}

@media (max-width: 520px) {
  .mp-grid { grid-template-columns: 1fr; }
  .mp-card { min-height: 0; }
  .pdp-title-row { gap: 13px; }
  .pdp-title-ico, .pdp-title-ico-letter { width: 48px; height: 48px; }
  .pdp-title-ico-letter { font-size: 23px; }
}
@media (max-width: 720px) {
  .mp-cta-inner { flex-direction: column; align-items: flex-start; }
  .mp-cta-actions { width: 100%; }
  .mp-cta-actions .btn { flex: 1; }
}

/* ============================================================
   BORDEAUX ACCENT — 2026-08-13
   Kernaccent: bordeaux #32B393 (--accent) / #5BC2A9 (--accent-2).
   ============================================================ */

/* Glow-elementen: bordeaux glows */
.mp-hero-glow {
  background: radial-gradient(50% 50% at 50% 40%, rgba(50,179,147,.12), rgba(50,179,147,.03) 46%, transparent 72%);
}
.pdp-hero-glow {
  background: radial-gradient(50% 50% at 50% 40%, rgba(50,179,147,.12), rgba(50,179,147,.03) 46%, transparent 72%);
}
.pdp-dev-glow {
  background: radial-gradient(48% 52% at 50% 44%, rgba(50,179,147,.14), rgba(50,179,147,.03) 46%, transparent 72%);
}
.mp-cta-glow {
  background: radial-gradient(50% 50% at 50% 50%, rgba(50,179,147,.10), transparent 70%);
}
.pdp-cta-glow {
  background: radial-gradient(50% 50% at 50% 50%, rgba(50,179,147,.10), transparent 70%);
}

/* CTA inner panel: glas-witte border (neutraal — geen accent) */
.mp-cta-inner {
  background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.02) 52%);
  border-color: rgba(255,255,255,.09);
}

/* Badges — "inbegrepen": bordeaux-tint */
.mp-badge-incl {
  color: var(--accent-2);
  background: rgba(50,179,147,.08);
  border-color: rgba(50,179,147,.22);
}
.mp-badge-incl::before {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Kenmerken-vinkjes: bordeaux-tint */
.pdp-tick {
  background: rgba(50,179,147,.08);
  border-color: rgba(50,179,147,.20);
}

/* Stap-nummers: bordeaux-tint */
.pdp-step-n span {
  color: var(--accent);
  background: rgba(50,179,147,.08);
  border-color: rgba(50,179,147,.18);
}

/* mp-card: bordeaux hover-glow */
.mp-card { --app: #32B393; }
.mp-card-soon .mp-card-ico-img {
  filter: drop-shadow(0 8px 18px rgba(50,179,147,.12));
}

/* sf-chip (keuze-chip): bordeaux-tint */
.sf-chip {
  color: var(--accent-2);
  background: rgba(50,179,147,.07);
  border-color: rgba(50,179,147,.20);
}
.sf-chip::before { background: var(--accent); }

/* ============================================================
   APP-DETAIL — LANDSCAPE KIOSK FRAME (v250818c)
   16:9 donkere bezel met echt schermshot. Vervangt het portret-
   CSS-mockup voor de drie apps met echte screenshots.
   ============================================================ */

/* hero-grid: portrait-variant — copy left, device portrait right.
   Device column is narrower so the tall 9:16 kiosk fits without
   dominating. On desktop the device is naturally taller than the copy
   block; align-items:start anchors copy to the top so it doesn't
   float midway. */
.pdp-hero-grid-landscape {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.pdp-kiosk-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: screenEnter 1s cubic-bezier(.16,1,.3,1) .2s both;
  /* constrain the portrait device so it doesn't tower above the fold */
  max-width: 320px;
  margin-inline: auto;
}

.pdp-kiosk-glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 90%;
  pointer-events: none;
  background: radial-gradient(48% 52% at 50% 50%, rgba(50,179,147,.18), rgba(50,179,147,.04) 46%, transparent 72%);
  filter: blur(26px);
}

.pdp-kiosk-bezel {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(158deg, #232327 0%, #101013 62%, #0a0a0c 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.5),
    0 2px 4px rgba(0,0,0,.45),
    0 50px 90px -40px rgba(0,0,0,.9),
    0 26px 54px -32px rgba(0,0,0,.65);
}

.pdp-kiosk-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.3);
}

.pdp-kiosk-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-kiosk-label {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: .04em;
  text-align: center;
}

/* ============================================================
   APP-DETAIL — SCREENSHOT GALERIJ
   Sectie "Zo ziet het eruit": 3 landscape frames op een rij.
   ============================================================ */

.pdp-gallery-section {
  position: relative;
  padding-block: clamp(50px, 8vw, 90px);
  overflow: hidden;
  background: var(--bg-2);
}

.pdp-gallery-section > .wrap {
  position: relative;
  z-index: 1;
}

.pdp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 24px);
  margin-top: clamp(28px, 4vw, 44px);
}

.pdp-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-gallery-frame {
  position: relative;
  border-radius: 10px;
  padding: 6px;
  background: linear-gradient(158deg, #232327, #0a0a0c);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 16px 44px -22px rgba(0,0,0,.7);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.pdp-gallery-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px -26px rgba(0,0,0,.8);
}

.pdp-gallery-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.pdp-gallery-caption {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
  text-align: center;
  padding-inline: 4px;
}

/* ============================================================
   APP-DETAIL — INTEGRATIE-CHIPS
   Rij kleine chips met merk-logo in eigen kleur.
   ============================================================ */

.pdp-int-wrap {
  margin-top: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-int-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 14px;
}

.pdp-int-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

.pdp-int-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pdp-int-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 10px;
  border-radius: 9px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  cursor: default;
  user-select: none;
}

.pdp-int-chip:hover {
  background: var(--glass-2);
  border-color: var(--line);
}

.pdp-int-chip svg {
  flex: none;
  display: block;
}

/* ============================================================
   RESPONSIVE — galerij + kiosk frame
   ============================================================ */

@media (max-width: 980px) {
  .pdp-hero-grid-landscape {
    grid-template-columns: 1fr;
    align-items: center;
  }
  /* portrait device: keep it compact when stacked */
  .pdp-kiosk-wrap {
    max-width: 260px;
    margin-inline: auto;
    width: 100%;
    order: -1;
  }
}

@media (max-width: 760px) {
  /* gallery: 3-col portrait frames still work at 760px+ since frames are narrow;
     below 480px they stack to 1 column for readability */
  .pdp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .pdp-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .pdp-kiosk-bezel {
    border-radius: 16px;
    padding: 7px;
  }
  .pdp-kiosk-screen {
    border-radius: 10px;
  }
}
