:root {
    /* Atlas Works — light, retail-friendly palette anchored to Atlas navy */
    --navy-900: #0E2A47;
    --navy-800: #143560;
    --navy-700: #1B477F;
    --navy-600: #2456A0;
    --navy-500: #2E80FF; /* brand link/active */
    --navy-50:  #F4F7FB;
    --ink-1: #0E1726;
    --ink-2: #2A3648;
    --ink-3: #5B6678;
    --ink-4: #8A95A6;
    --line:  #E6EBF2;
    --line-2:#D4DDEA;
    --paper: #FFFFFF;
    --cream: #FAFBFD;
    --warm:  #FFF7EE;
    --orange:#E76A1E;
    --green: #1F8A52;
    --green-bg: #E8F5EE;
    --pill-bg: #F2F5FA;
    --shadow-1: 0 1px 0 rgba(14,42,71,0.04), 0 4px 12px rgba(14,42,71,0.04);
    --shadow-2: 0 6px 20px rgba(14,42,71,0.08), 0 1px 0 rgba(14,42,71,0.04);
    --shadow-3: 0 14px 40px rgba(14,42,71,0.12);

    --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Space Grotesk", "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--cream);
    color: var(--ink-1);
    font-family: var(--font-sans);
    font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: rgba(46,128,255,0.2); color: var(--navy-900); }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  .wrap { width: min(1240px, 100% - 40px); margin-inline: auto; }

  /* ─── Promo strip ─── */
  .promo {
    background: var(--navy-900); color: #DCE6F2;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .promo-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 9px 0;
    overflow: hidden;
  }
  .promo-strip { display: flex; gap: 28px; }
  .promo-strip span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
  .promo-strip svg { color: #6FA3F0; }
  .promo-pay { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); }
  .promo-pay .chip { padding: 2px 8px; border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; font-weight: 500; color: #fff; font-size: 11px; }

  /* ─── Header ─── */
  header.top {
    position: sticky; top: 0; z-index: 40;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .top-row { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
  .brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
  .brand-mark {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--navy-900);
    display: grid; place-items: center;
    color: #fff;
  }
  .brand-name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 19px; letter-spacing: -0.005em;
    color: var(--navy-900);
  }
  .brand-name .light { color: var(--ink-3); font-weight: 500; }

  .search {
    flex: 1; max-width: 560px;
    position: relative;
  }
  .search input {
    width: 100%; padding: 11px 14px 11px 42px;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    background: var(--paper);
    font: 500 14px/1.4 var(--font-sans);
    color: var(--ink-1);
    transition: border-color .15s, box-shadow .15s;
  }
  .search input::placeholder { color: var(--ink-4); font-weight: 400; }
  .search input:focus { outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(46,128,255,0.18); }
  .search .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-4); pointer-events: none; }
  .search .suggest {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    background: var(--paper); border: 1px solid var(--line-2);
    border-radius: 10px; box-shadow: var(--shadow-3);
    overflow: hidden;
  }
  .search .suggest-row {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer;
    border-bottom: 1px solid var(--line);
  }
  .search .suggest-row:last-child { border-bottom: none; }
  .search .suggest-row:hover { background: var(--cream); }
  .search .suggest-row .thumb {
    width: 36px; height: 36px; border-radius: 6px;
    background: linear-gradient(135deg, #EAF1FB, #DDE7F4);
    display: grid; place-items: center; color: var(--navy-700); flex: 0 0 auto;
  }
  .search .suggest-row .name { font-size: 13.5px; color: var(--ink-1); }
  .search .suggest-row .price { margin-left: auto; font-weight: 600; font-size: 13px; color: var(--navy-900); }

  .top-actions { display: inline-flex; align-items: center; gap: 4px; }
  .icon-btn {
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid transparent; background: transparent;
    display: grid; place-items: center; color: var(--ink-2); cursor: pointer;
    position: relative;
    transition: background .15s, border-color .15s;
  }
  .icon-btn:hover { background: var(--navy-50); border-color: var(--line); }
  .icon-btn .badge {
    position: absolute; top: 4px; right: 4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--orange); color: #fff;
    border-radius: 999px; font-size: 10px; font-weight: 700;
    display: grid; place-items: center; line-height: 1;
  }

  .nav { display: flex; gap: 4px; padding: 4px 0 12px; align-items: center; flex-wrap: wrap; }
  .nav a {
    padding: 7px 12px; border-radius: 8px;
    color: var(--ink-2); font-size: 14px; font-weight: 500;
    transition: background .15s, color .15s;
  }
  .nav a:hover { background: var(--navy-50); color: var(--navy-900); }
  .nav a.active { color: var(--navy-900); background: var(--navy-50); }
  .nav a.cta {
    margin-left: auto; padding: 9px 16px;
    background: var(--navy-900); color: #fff; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .nav a.cta:hover { background: var(--navy-800); color: #fff; }

  /* ─── Hero ─── */
  .hero { padding: 56px 0 64px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--navy-50); color: var(--navy-700);
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    border: 1px solid var(--line-2);
  }
  .hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,138,82,0.15); }
  .hero-eyebrow__star { font-size: 9px; vertical-align: middle; display: inline-block; line-height: 1; position: relative; top: -1px; color: inherit; }
  .hero h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02; letter-spacing: -0.025em;
    color: var(--navy-900);
    margin: 18px 0 22px; text-wrap: balance;
  }
  .hero h1 em {
    font-style: normal; color: var(--orange);
  }
  .hero p.lead {
    font-size: 19px; line-height: 1.55;
    color: var(--ink-2); max-width: 50ch; text-wrap: pretty;
    margin: 0 0 32px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px; border-radius: 10px;
    font-size: 14.5px; font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer; transition: all .15s ease;
  }
  .btn-primary { background: var(--atlas-blue, #3B82F6); color: #fff; } /* P2: aligned to atlas-blue */
  .btn-primary:hover { background: var(--atlas-blue-600, #2f6fe0); transform: translateY(-1px); box-shadow: var(--shadow-2); } /* P2 */
  .btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink-1); }
  .btn-ghost:hover { background: var(--paper); border-color: var(--ink-3); }
  .btn-orange { background: var(--orange); color: #fff; }
  .btn-orange:hover { background: #C75812; }

  .hero-trust {
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(4, auto); gap: 28px; justify-content: start;
  }
  .hero-trust .item { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: 13.5px; }
  .hero-trust svg { color: var(--green); flex: 0 0 auto; }

  /* Hero visual */
  .hero-visual {
    position: relative; aspect-ratio: 4 / 5; min-height: 480px;
  }
  .hero-card {
    position: absolute;
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 18px; box-shadow: var(--shadow-3);
    overflow: hidden;
  }
  .hv-laptop {
    inset: 4% 6% 18% 8%;
    background: linear-gradient(160deg, #F0F4FA 0%, #DEE7F4 100%);
    padding: 28px;
    display: flex; flex-direction: column;
  }
  .hv-laptop .tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: var(--paper); color: var(--navy-700);
    font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
    width: fit-content; border: 1px solid var(--line-2);
  }
  .hv-laptop .name { margin-top: auto; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); line-height: 1.15; letter-spacing: -0.01em; }
  .hv-laptop .specs { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); font-family: var(--font-mono); }
  .hv-laptop .price { margin-top: 14px; display: flex; align-items: baseline; gap: 10px; }
  .hv-laptop .price .now { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--navy-900); }
  .hv-laptop .price .was { font-size: 13px; color: var(--ink-4); text-decoration: line-through; }
  .hv-laptop .laptop-art {
    margin: 14px -12px 0;
    aspect-ratio: 16/10; border-radius: 10px;
    background:
      radial-gradient(120% 70% at 50% 0%, rgba(255,255,255,0.7), transparent 60%),
      linear-gradient(180deg, #2A3648, #0E1726);
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow: inset 0 0 0 4px #1A2230, 0 12px 30px rgba(14,23,38,0.25);
    display: grid; place-items: center;
    position: relative;
  }
  .hv-laptop .laptop-art::before {
    content: ""; position: absolute; left: 50%; top: 8px; width: 40px; height: 4px;
    background: rgba(255,255,255,0.06); border-radius: 2px; transform: translateX(-50%);
  }
  .hv-laptop .laptop-art .screen {
    width: 86%; height: 78%; border-radius: 4px;
    background: linear-gradient(135deg, #1B477F, #2E80FF 60%, #4EA0FF);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.35);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.9); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.06em;
    font-size: 13px;
  }
  .hv-pos {
    right: 0; bottom: 6%; width: 58%;
    padding: 18px;
    background: var(--paper);
  }
  .hv-pos .label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--orange);
  }
  .hv-pos h4 { margin: 4px 0 10px; font-size: 16px; color: var(--navy-900); font-weight: 700; }
  .hv-pos .pos-screen {
    aspect-ratio: 4/3; border-radius: 8px;
    background: linear-gradient(160deg, #0E2A47, #143560);
    padding: 12px; color: #fff; display: flex; flex-direction: column; gap: 6px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .hv-pos .pos-row { display: flex; justify-content: space-between; font-size: 11px; font-family: var(--font-mono); color: rgba(255,255,255,0.85); }
  .hv-pos .pos-row.total { padding-top: 6px; border-top: 1px dashed rgba(255,255,255,0.2); margin-top: auto; font-size: 13px; font-weight: 700; }
  .hv-pos .pos-keypad { margin-top: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .hv-pos .pos-keypad span {
    aspect-ratio: 1.6; border-radius: 6px; background: rgba(255,255,255,0.06);
    display: grid; place-items: center; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  }
  .hv-pos .pos-keypad span.pay { background: var(--orange); color: #fff; grid-column: span 3; aspect-ratio: 4; font-size: 13px; }

  .hv-stamp {
    left: -8px; top: 12%; width: 100px; height: 100px;
    border-radius: 50%; background: var(--orange); color: #fff;
    display: grid; place-items: center; text-align: center;
    transform: rotate(-12deg); box-shadow: var(--shadow-2);
    border: 1px solid #C75812;
  }
  .hv-stamp .big { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1; }
  .hv-stamp .sm  { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; margin-top: 2px; }

  /* ─── Section base ─── */
  section.sec { padding: 80px 0; }
  section.sec.alt { background: var(--paper); border-block: 1px solid var(--line); }
  .sec-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 36px; gap: 24px; flex-wrap: wrap; }
  .sec-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--atlas-blue, #3B82F6); margin-bottom: 6px; } /* P2: aligned */
  .sec-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.02em; line-height: 1.1;
    color: var(--navy-900); margin: 0; text-wrap: balance;
  }
  .sec-sub { color: var(--ink-3); font-size: 16px; margin-top: 8px; max-width: 56ch; }
  .sec-link { color: var(--navy-900); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
  .sec-link:hover { color: var(--navy-700); }

  /* ─── Brand strip ─── */
  .brands {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    border: 1px solid var(--line); border-radius: 14px;
    background: var(--paper); overflow: hidden;
  }
  .brand-cell {
    padding: 22px; border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 4px;
    cursor: pointer;
    transition: background .15s;
  }
  .brand-cell:last-child { border-right: none; }
  .brand-cell:hover { background: var(--navy-50); }
  .brand-cell .name {
    font-family: var(--font-display); font-weight: 700; font-size: 22px;
    color: var(--navy-900); letter-spacing: -0.01em;
  }
  .brand-cell .count { font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); }
  .brand-cell.disabled .name { color: var(--ink-4); }
  .brand-cell.disabled .count { color: var(--ink-4); }

  /* ─── Services ─── */
  .services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .svc-card {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; padding: 26px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
  }
  .svc-card:hover { transform: translateY(-2px); border-color: var(--line-2); box-shadow: var(--shadow-2); }
  .svc-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--navy-50); color: var(--navy-700);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .svc-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy-900); margin: 0 0 6px; letter-spacing: -0.005em; }
  .svc-card .lede { font-size: 14px; color: var(--ink-2); margin: 0 0 4px; }
  .svc-card p { font-size: 14px; color: var(--ink-3); margin: 0; }

  /* ─── Compare table (Wat je meestal krijgt vs Atlas Works) ─── */
  .compare {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .compare-card {
    border-radius: 16px; padding: 26px 26px 22px;
    border: 1px solid var(--line); background: var(--paper);
  }
  .compare-card.bad { background: #FAFBFD; }
  .compare-card.good { background: var(--paper); border-color: var(--navy-900); box-shadow: 0 0 0 2px var(--navy-900); position: relative; }
  .compare-card.good::before {
    content: "Atlas Works"; position: absolute; top: -12px; left: 22px;
    background: var(--navy-900); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 5px;
  }
  .compare-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); margin: 0 0 14px; }
  .compare-card.bad h4 { color: var(--ink-3); }
  .compare-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .compare-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
  .compare-card.bad li { color: var(--ink-3); }
  .compare-card.good li { color: var(--ink-1); }
  .compare-list .ic {
    width: 22px; height: 22px; border-radius: 50%;
    display: grid; place-items: center; flex: 0 0 auto;
  }
  .compare-card.bad .ic { background: #F3D7D7; color: #B23A3A; }
  .compare-card.good .ic { background: var(--green-bg); color: var(--green); }

  /* ─── Process / werkwijze ─── */
  .process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--paper); }
  .step { padding: 26px; border-right: 1px solid var(--line); position: relative; }
  .step:last-child { border-right: none; }
  .step .num {
    font-family: var(--font-mono); font-size: 11px; color: var(--orange);
    font-weight: 600; letter-spacing: 0.16em;
  }
  .step h4 { margin: 12px 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy-900); }
  .step p { margin: 0; font-size: 14px; color: var(--ink-3); }

  /* ─── Products grid ─── */
  .products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .product {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; overflow: hidden; cursor: pointer;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .product:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
  .product .img {
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, #F0F4FA, #DEE7F4);
    position: relative; display: grid; place-items: center;
    border-bottom: 1px solid var(--line);
  }
  .product .img .stamp {
    position: absolute; left: 12px; top: 12px;
    padding: 4px 9px; border-radius: 6px;
    background: var(--green-bg); color: var(--green);
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .product .img .stamp .dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
  .product .img .cond {
    position: absolute; right: 12px; top: 12px;
    padding: 3px 9px; border-radius: 6px;
    background: var(--paper); border: 1px solid var(--line-2);
    font-size: 11px; font-weight: 600; color: var(--ink-2);
  }
  .product .img .cond.new { background: var(--navy-50); color: var(--navy-700); border-color: var(--navy-50); }
  .product .body {
    padding: 16px 18px 18px;
    display: flex; flex-direction: column; gap: 8px; flex: 1;
  }
  .product .name {
    font-size: 14.5px; font-weight: 600; line-height: 1.35;
    color: var(--navy-900); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 38px;
  }
  .product .specs { display: flex; gap: 6px; flex-wrap: wrap; }
  .product .specs span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); padding: 2px 7px; border: 1px solid var(--line); border-radius: 4px; background: var(--cream); }
  .product .price-row {
    display: flex; align-items: baseline; gap: 10px; margin-top: auto;
    padding-top: 12px; border-top: 1px dashed var(--line);
  }
  .product .price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); letter-spacing: -0.01em; }
  .product .was { font-size: 12.5px; color: var(--ink-4); text-decoration: line-through; }
  .product .in3 { font-size: 11px; color: var(--ink-3); margin-left: auto; font-family: var(--font-mono); }
  .product .add {
    margin-top: 4px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px; border-radius: 8px; background: var(--cream);
    border: 1px solid var(--line);
    font-size: 13px; font-weight: 600; color: var(--navy-900);
    transition: background .15s;
  }
  .product .add:hover { background: var(--navy-50); }
  .product .add.added { background: var(--green-bg); color: var(--green); border-color: #BFE2D0; }

  /* Hero quick categories */
  .quick-cats {
    margin-top: 40px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  }
  .qc {
    padding: 18px 20px; border: 1px solid var(--line);
    border-radius: 12px; background: var(--paper);
    cursor: pointer;
    display: flex; align-items: center; gap: 14px;
    transition: border-color .15s, background .15s;
  }
  .qc:hover { border-color: var(--navy-900); background: var(--navy-50); }
  .qc .ic {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--navy-50); color: var(--navy-700);
    display: grid; place-items: center; flex: 0 0 auto;
  }
  .qc .lbl { font-size: 13.5px; font-weight: 600; color: var(--navy-900); line-height: 1.25; }
  .qc .sub { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }

  /* ─── Reviews ─── */
  .reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .review {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; padding: 28px;
  }
  .stars { color: #F1A82C; font-size: 13px; letter-spacing: 1px; }
  .review h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); margin: 14px 0 10px; }
  .review p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.6; }
  .review .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
  .review .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
    color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px;
  }
  .review .who .name { font-size: 14px; font-weight: 600; color: var(--ink-1); }
  .review .who .role { font-size: 12.5px; color: var(--ink-3); }

  /* ─── FAQ ─── */
  .faq { display: grid; gap: 8px; }
  .faq-item {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden;
  }
  details.faq-item[open] { border-color: var(--navy-900); }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q { cursor: pointer;
    padding: 18px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 15.5px; font-weight: 600; color: var(--navy-900);
    gap: 16px;
  }
  .faq-q .plus { width: 22px; height: 22px; border-radius: 50%; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; transition: transform .2s; }
  details.faq-item[open] .faq-q .plus { transform: rotate(45deg); background: var(--navy-900); color: #fff; }
  .faq-a {
    transition: max-height .28s ease;
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  details.faq-item[open] .faq-a { max-height: 600px; }
  .faq-a-inner {
    padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6;
  }

  /* ─── Contact ─── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; }
  .contact-info { background: var(--navy-900); color: #fff; border-radius: 16px; padding: 36px; position: relative; overflow: hidden; }
  .contact-info::before {
    content: ""; position: absolute; right: -80px; top: -80px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(46,128,255,0.4), transparent 70%);
  }
  .contact-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 0 0 8px; letter-spacing: -0.015em; }
  .contact-info > p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0 0 28px; max-width: 38ch; }
  .ci-row { padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; gap: 14px; }
  .ci-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .ci-row .ic {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); color: #fff; display: grid; place-items: center; flex: 0 0 auto;
  }
  .ci-row .lbl { font-size: 11.5px; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
  .ci-row .val { font-size: 15px; color: #fff; font-weight: 500; margin-top: 2px; }

  .contact-google {
    margin-top: 22px; padding: 14px 18px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; display: flex; align-items: center; gap: 12px;
  }
  .contact-google .stars { font-size: 14px; }
  .contact-google .label { font-size: 13px; color: rgba(255,255,255,0.85); }
  .contact-google .arrow { margin-left: auto; color: rgba(255,255,255,0.7); }

  .contact-form {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 16px; padding: 36px;
  }
  .contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin: 0 0 6px; letter-spacing: -0.01em; }
  .contact-form > p { font-size: 14px; color: var(--ink-3); margin: 0 0 22px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .field label { font-size: 12px; font-weight: 600; color: var(--ink-2); display: block; margin-bottom: 6px; }
  .field input, .field textarea {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--line-2); border-radius: 9px;
    background: var(--paper); font: 400 14px/1.4 var(--font-sans);
    color: var(--ink-1); resize: vertical;
  }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(46,128,255,0.16); }
  .field { margin-bottom: 12px; }
  .field-actions { margin-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
  .field-actions .note { font-size: 12px; color: var(--ink-4); font-family: var(--font-mono); }
  .form-success {
    padding: 14px 16px; border-radius: 10px; background: var(--green-bg); color: var(--green);
    border: 1px solid #BFE2D0; font-weight: 600; font-size: 14px;
    display: flex; align-items: center; gap: 10px;
  }

  /* ─── Footer ─── */
  footer {
    background: var(--navy-900); color: rgba(255,255,255,0.75);
    padding: 56px 0 28px;
    margin-top: 0;
  }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
  .foot-brand { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; margin-bottom: 8px; }
  .foot-brand-sub { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 32ch; }
  .foot-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
  .foot-col a { display: block; padding: 4px 0; font-size: 14px; color: rgba(255,255,255,0.7); }
  .foot-col a:hover { color: #fff; }
  .foot-bot {
    margin-top: 40px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.55);
    flex-wrap: wrap; gap: 14px;
  }

  /* ─── Cart drawer ─── */
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(14,42,71,0.4);
    z-index: 80; opacity: 0; pointer-events: none; transition: opacity .25s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: auto; }
  .cart-drawer {
    position: fixed; right: 0; top: 0; bottom: 0;
    width: min(420px, 100%);
    background: var(--paper); z-index: 81;
    box-shadow: -10px 0 40px rgba(14,42,71,0.18);
    transform: translateX(100%); transition: transform .3s ease;
    display: flex; flex-direction: column;
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-head { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
  .cart-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); margin: 0; }
  .cart-body { flex: 1; overflow: auto; padding: 8px 0; }
  .cart-row { padding: 14px 24px; display: flex; gap: 14px; border-bottom: 1px solid var(--line); }
  .cart-row .thumb { width: 56px; height: 56px; border-radius: 8px; background: var(--navy-50); display: grid; place-items: center; color: var(--navy-700); flex: 0 0 auto; }
  .cart-row .name { font-size: 13.5px; font-weight: 600; color: var(--navy-900); line-height: 1.35; }
  .cart-row .price { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--navy-900); margin-top: 6px; }
  .cart-row .qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; padding: 3px; background: var(--cream); border-radius: 6px; border: 1px solid var(--line); }
  .cart-row .qty button { width: 22px; height: 22px; border-radius: 4px; border: none; background: transparent; color: var(--navy-900); cursor: pointer; font-weight: 700; }
  .cart-row .qty button:hover { background: var(--navy-50); }
  .cart-row .qty span { font-size: 13px; min-width: 18px; text-align: center; font-variant-numeric: tabular-nums; }
  .cart-empty { padding: 60px 24px; text-align: center; color: var(--ink-3); }
  .cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
  .cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
  .cart-total .lbl { font-size: 13px; color: var(--ink-3); }
  .cart-total .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); }
  .cart-foot .btn { width: 100%; justify-content: center; }

  /* Toasts */
  .toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--navy-900); color: #fff; padding: 12px 18px;
    border-radius: 999px; font-size: 13.5px; font-weight: 500;
    box-shadow: var(--shadow-3); z-index: 90;
    opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
    display: flex; align-items: center; gap: 10px;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  .toast svg { color: #4EE599; }

  /* Reveal */
  .reveal { opacity: 1; transform: translateY(14px); transition: opacity .6s, transform .6s; }
  .reveal.in { opacity: 1; transform: none; }

  /* Responsive */
  @media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 460px; }
    .services, .products, .process, .quick-cats { grid-template-columns: 1fr 1fr; }
    .brands { grid-template-columns: 1fr 1fr 1fr; }
    .brand-cell:nth-child(3n) { border-right: none; }
    .compare, .reviews, .contact-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .hero-trust { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .promo-strip span:nth-child(n+3) { display: none; }
    .top-row { flex-wrap: wrap; }
    .search { order: 3; width: 100%; max-width: none; flex-basis: 100%; }
    .nav { display: none; }
    .services, .products, .process, .quick-cats, .brands { grid-template-columns: 1fr 1fr; }
    .step, .brand-cell { border-right: none; border-bottom: 1px solid var(--line); }
    .step:last-child, .brand-cell:last-child { border-bottom: none; }
    .foot-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
  }


/* ─── Page hero (compact) ─── */
.page-hero { padding: 40px 0 28px; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero .crumbs { font-size: 12.5px; color: var(--ink-3); display: flex; gap: 6px; align-items: center; }
.page-hero .crumbs a { color: var(--ink-3); }
.page-hero .crumbs a:hover { color: var(--navy-700); }
.page-hero .crumbs span.sep { color: var(--ink-4); }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em; line-height: 1.05;
  color: var(--navy-900); margin: 14px 0 10px; text-wrap: balance;
}
.page-hero .lead { font-size: 17px; color: var(--ink-2); max-width: 60ch; margin: 0; line-height: 1.55; }

/* ─── Shop layout (sidebar + grid) ─── */
.shop-layout { display: grid; grid-template-columns: 256px 1fr; gap: 32px; padding: 36px 0 80px; }
.shop-side .side-block { padding: 18px 0; border-top: 1px solid var(--line); }
.shop-side .side-block:first-child { border-top: none; padding-top: 4px; }
.shop-side h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 12px; }
.shop-side .filter { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: 14px; color: var(--ink-2); user-select: none; }
.shop-side .filter input { accent-color: var(--navy-900); width: 16px; height: 16px; }
.shop-side .filter:hover { color: var(--navy-900); }
.shop-side .filter .count { margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); }
.shop-side .price-range { display: flex; gap: 8px; }
.shop-side .price-range input { flex: 1; padding: 8px 10px; border: 1px solid var(--line-2); border-radius: 8px; font: 500 13px var(--font-sans); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap;
}
.shop-toolbar .left { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.shop-toolbar .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--navy-50); color: var(--navy-700);
  font-size: 12.5px; font-weight: 600; border: 1px solid var(--line-2);
}
.shop-toolbar .chip button { border: none; background: transparent; color: var(--navy-700); cursor: pointer; padding: 0; display: grid; place-items: center; }
.shop-toolbar .count-text { font-size: 14px; color: var(--ink-3); }
.shop-toolbar select { padding: 8px 32px 8px 12px; border: 1px solid var(--line-2); border-radius: 8px; font: 500 13.5px var(--font-sans); background: var(--paper); color: var(--ink-1); cursor: pointer; }

.shop-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.cat-tile {
  padding: 22px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s, transform .15s, background .15s;
}
.cat-tile:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.cat-tile.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.cat-tile.active .cat-count { color: rgba(255,255,255,0.6); }
.cat-tile .cat-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; }
.cat-tile.active .cat-ic { background: rgba(255,255,255,0.12); color: #fff; }
.cat-tile .cat-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: inherit; letter-spacing: -0.005em; }
.cat-tile .cat-count { font-size: 12px; color: var(--ink-4); font-family: var(--font-mono); }

/* ─── Deal banner ─── */
.deal-banner {
  margin: 28px 0;
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px;
  align-items: center;
  position: relative; overflow: hidden;
}
.deal-banner::before {
  content: ""; position: absolute; right: -120px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,106,30,0.4), transparent 70%);
}
.deal-banner .label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.deal-banner h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 36px); letter-spacing: -0.02em; line-height: 1.1;
  margin: 14px 0 10px;
  color: #fff; text-wrap: balance;
}
.deal-banner p { color: rgba(255,255,255,0.78); margin: 0 0 20px; font-size: 15px; max-width: 50ch; }
.deal-banner .countdown { display: flex; gap: 10px; }
.deal-banner .cd-cell {
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center; min-width: 64px;
  position: relative; z-index: 1;
}
.deal-banner .cd-cell .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; }
.deal-banner .cd-cell .l { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.deal-banner .cta-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

/* ─── Bundle card (deals + kassa) ─── */
.bundle {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px;
  display: grid; grid-template-columns: 1fr 1fr 0.8fr; gap: 24px; align-items: center;
}
.bundle .b-items { display: flex; gap: 14px; align-items: center; }
.bundle .b-thumb {
  width: 78px; height: 78px; border-radius: 10px;
  background: linear-gradient(160deg, #F0F4FA, #DEE7F4);
  display: grid; place-items: center; color: var(--navy-700);
  flex: 0 0 auto;
}
.bundle .plus { font-size: 22px; color: var(--ink-4); font-weight: 300; }
.bundle .b-meta h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); margin: 0 0 6px; }
.bundle .b-meta p { font-size: 13.5px; color: var(--ink-3); margin: 0; }
.bundle .b-price { text-align: right; }
.bundle .b-price .was { font-size: 13px; color: var(--ink-4); text-decoration: line-through; }
.bundle .b-price .now { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--navy-900); display: block; line-height: 1; margin: 4px 0; }
.bundle .b-price .save { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-bg); padding: 3px 8px; border-radius: 4px; margin-bottom: 10px; }

/* ─── Stat row ─── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-row .stat { padding: 0 22px; border-right: 1px solid var(--line); }
.stat-row .stat:last-child { border-right: none; }
.stat-row .v { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--navy-900); letter-spacing: -0.02em; line-height: 1; }
.stat-row .l { font-size: 13px; color: var(--ink-3); margin-top: 6px; }

/* ─── ROI calculator ─── */
.roi-card {
  background: var(--navy-900); color: #fff;
  border-radius: 18px; padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  position: relative; overflow: hidden;
}
.roi-card::before {
  content: ""; position: absolute; left: -120px; bottom: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,128,255,0.3), transparent 70%);
}
.roi-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; margin: 0 0 6px; letter-spacing: -0.01em; }
.roi-card > .left > p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0 0 22px; }
.roi-card .roi-input { margin-bottom: 16px; position: relative; z-index: 1; }
.roi-card .roi-input label { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.roi-card .roi-input label .v { color: #fff; font-family: var(--font-display); font-size: 18px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.roi-card input[type=range] { width: 100%; accent-color: var(--orange); }
.roi-card .roi-out { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 26px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.roi-card .roi-out .lbl { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.roi-card .roi-out .big { font-family: var(--font-display); font-weight: 700; font-size: 56px; color: var(--orange); letter-spacing: -0.02em; line-height: 1; margin: 8px 0; }
.roi-card .roi-out .sub { font-size: 14px; color: rgba(255,255,255,0.78); margin-bottom: 18px; }
.roi-card .roi-out .roi-detail { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roi-card .roi-out .roi-detail .item .l { font-size: 11px; color: rgba(255,255,255,0.55); }
.roi-card .roi-out .roi-detail .item .v { font-family: var(--font-display); font-size: 20px; color: #fff; font-weight: 700; margin-top: 2px; }

/* ─── Vertical pick (horeca / retail) ─── */
.vertical-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vp-card {
  padding: 32px; border-radius: 16px; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; gap: 14px; min-height: 260px;
}
.vp-card:hover { border-color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.vp-card .vp-tag { font-family: var(--font-mono); font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.vp-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--navy-900); margin: 0; letter-spacing: -0.015em; line-height: 1.1; }
.vp-card p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.vp-card ul { list-style: none; padding: 0; margin: auto 0 0; display: grid; gap: 6px; }
.vp-card ul li { font-size: 13.5px; color: var(--ink-2); display: flex; gap: 8px; align-items: center; }
.vp-card ul li svg { color: var(--green); flex: 0 0 auto; }
.vp-card .vp-foot { padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.vp-card .vp-from { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.vp-card .vp-from b { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin-left: 6px; }

/* ─── PDP ─── */
.pdp { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; padding: 36px 0; }
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-main {
  aspect-ratio: 4/3; border-radius: 16px; border: 1px solid var(--line);
  background: linear-gradient(160deg, #F0F4FA, #DEE7F4);
  display: grid; place-items: center; padding: 36px;
  position: relative;
}
.pdp-main img { width: 100%; height: 100%; object-fit: contain; }
.pdp-main .stamp {
  position: absolute; left: 16px; top: 16px;
  padding: 5px 11px; border-radius: 6px;
  background: var(--green-bg); color: var(--green);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-thumbs .t {
  aspect-ratio: 1; border-radius: 10px; border: 1px solid var(--line);
  background: linear-gradient(160deg, #F4F7FB, #E6EBF2);
  display: grid; place-items: center; cursor: pointer;
  color: var(--navy-700);
}
.pdp-thumbs .t.sel { border-color: var(--navy-900); border-width: 2px; }

.pdp-info .stars { color: #F1A82C; font-size: 14px; letter-spacing: 1px; }
.pdp-info .rate-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
.pdp-info h1 { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy-900); margin: 0 0 14px; }
.pdp-info .price-block { display: flex; align-items: baseline; gap: 14px; padding: 18px 0; border-block: 1px solid var(--line); margin-bottom: 22px; }
.pdp-info .price-now { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--navy-900); letter-spacing: -0.02em; line-height: 1; }
.pdp-info .price-was { font-size: 16px; color: var(--ink-4); text-decoration: line-through; }
.pdp-info .save-pill { background: var(--green-bg); color: var(--green); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.pdp-info .vat { margin-left: auto; font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); }

.pdp-options { display: grid; gap: 18px; margin-bottom: 22px; }
.pdp-opt h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 10px; }
.pdp-opt .opts { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-opt .o {
  padding: 10px 14px; border: 1px solid var(--line-2); border-radius: 8px;
  background: var(--paper); cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--ink-1);
  transition: border-color .15s, background .15s;
}
.pdp-opt .o:hover { border-color: var(--navy-700); }
.pdp-opt .o.sel { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.pdp-actions { display: flex; gap: 10px; align-items: center; margin-bottom: 24px; }
.qty-input { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.qty-input button { width: 42px; height: 44px; border: none; background: var(--paper); cursor: pointer; font-size: 16px; color: var(--navy-900); font-weight: 600; }
.qty-input button:hover { background: var(--navy-50); }
.qty-input input { width: 50px; height: 44px; border: none; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy-900); background: var(--paper); }
.qty-input input:focus { outline: none; }

.pdp-trust { display: grid; gap: 12px; padding: 20px; border-radius: 12px; background: var(--cream); border: 1px solid var(--line); }
.pdp-trust .item { display: flex; align-items: start; gap: 12px; font-size: 13.5px; color: var(--ink-2); }
.pdp-trust .item svg { color: var(--green); margin-top: 2px; flex: 0 0 auto; }
.pdp-trust .item b { color: var(--ink-1); display: block; font-weight: 600; margin-bottom: 1px; }

/* PDP details tabs */
.pdp-tabs { padding: 60px 0; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.tabs button {
  padding: 12px 18px; background: transparent; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--ink-3);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button.active { color: var(--navy-900); border-bottom-color: var(--navy-900); }
.tab-pane { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 12px 0; font-size: 14px; vertical-align: top; }
.spec-table td:first-child { width: 200px; font-weight: 600; color: var(--ink-2); }
.spec-table td:last-child { color: var(--ink-1); font-family: var(--font-mono); font-size: 13.5px; }

/* ─── Cart page ─── */
.cart-page { padding: 36px 0 80px; display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-list { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cart-line { padding: 22px; display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line:last-child { border-bottom: none; }
.cart-line .thumb {
  width: 96px; height: 96px; border-radius: 10px;
  background: linear-gradient(160deg, #F0F4FA, #DEE7F4);
  display: grid; place-items: center; color: var(--navy-700);
}
.cart-line .meta h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 6px; color: var(--navy-900); line-height: 1.3; }
.cart-line .meta .specs { font-size: 12.5px; color: var(--ink-3); font-family: var(--font-mono); margin-bottom: 10px; }
.cart-line .meta .controls { display: flex; gap: 10px; align-items: center; }
.cart-line .meta .controls button.del { border: none; background: transparent; color: var(--ink-3); font-size: 13px; cursor: pointer; padding: 0; }
.cart-line .meta .controls button.del:hover { color: var(--orange); }
.cart-line .price-col { text-align: right; }
.cart-line .price-col .price { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy-900); }
.cart-line .price-col .each { font-size: 11.5px; color: var(--ink-4); font-family: var(--font-mono); margin-top: 2px; }

.cart-summary { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px; position: sticky; top: 100px; }
.cart-summary h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); margin: 0 0 18px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-2); }
.cart-summary .row.tot { padding-top: 14px; border-top: 1px solid var(--line); margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); }
.cart-summary .vat { font-size: 11.5px; color: var(--ink-4); font-family: var(--font-mono); }
.cart-summary .promo-input { display: flex; gap: 8px; margin: 16px 0; }
.cart-summary .promo-input input { flex: 1; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: 8px; font-size: 13.5px; }
.cart-summary .promo-input button { padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--paper); cursor: pointer; font-weight: 600; font-size: 13px; color: var(--navy-900); }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 8px; }
.cart-summary .extras { display: flex; flex-direction: column; gap: 8px; padding-top: 18px; margin-top: 14px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); }
.cart-summary .extras span { display: flex; gap: 8px; align-items: center; }
.cart-summary .extras svg { color: var(--green); flex: 0 0 auto; }

/* Empty cart state */
.empty-state { padding: 80px 24px; text-align: center; }
.empty-state .ic { width: 72px; height: 72px; border-radius: 50%; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; margin: 0 auto 20px; }
.empty-state h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--navy-900); margin: 0 0 8px; }
.empty-state p { color: var(--ink-3); margin: 0 0 22px; }

/* ─── Checkout ─── */
.checkout { padding: 36px 0 80px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-steps { display: flex; gap: 0; margin-bottom: 28px; padding: 0; }
.checkout-steps .s {
  flex: 1; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  background: var(--paper); border: 1px solid var(--line);
  border-right: none;
  font-size: 13.5px; color: var(--ink-3); font-weight: 600;
}
.checkout-steps .s:first-child { border-radius: 12px 0 0 12px; }
.checkout-steps .s:last-child { border-right: 1px solid var(--line); border-radius: 0 12px 12px 0; }
.checkout-steps .s .num { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; }
.checkout-steps .s.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.checkout-steps .s.active .num { background: rgba(255,255,255,0.2); color: #fff; }
.checkout-steps .s.done { color: var(--green); }
.checkout-steps .s.done .num { background: var(--green-bg); color: var(--green); }

.checkout-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px; margin-bottom: 16px; }
.checkout-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); margin: 0 0 18px; }
.pay-method { display: grid; gap: 10px; }
.pay-row {
  padding: 14px 18px; border: 1px solid var(--line-2); border-radius: 10px;
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.pay-row:hover { border-color: var(--navy-700); }
.pay-row.sel { border-color: var(--navy-900); background: var(--navy-50); }
.pay-row .radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line-2); flex: 0 0 auto; position: relative; }
.pay-row.sel .radio { border-color: var(--navy-900); }
.pay-row.sel .radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--navy-900); }
.pay-row .pay-name { font-size: 14.5px; font-weight: 600; color: var(--navy-900); }
.pay-row .pay-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.pay-row .pay-logo { margin-left: auto; padding: 4px 10px; border: 1px solid var(--line); border-radius: 4px; font-size: 11px; font-weight: 700; color: var(--ink-3); font-family: var(--font-mono); }

.review-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); align-items: center; }
.review-line:last-child { border-bottom: none; }
.review-line .thumb { width: 56px; height: 56px; border-radius: 8px; background: linear-gradient(160deg, #F0F4FA, #DEE7F4); display: grid; place-items: center; color: var(--navy-700); }
.review-line .name { font-size: 13.5px; font-weight: 600; color: var(--navy-900); }
.review-line .qty-x { font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); margin-top: 2px; }
.review-line .ln-price { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy-900); }

/* ─── Bedankt ─── */
.thanks { padding: 80px 0; text-align: center; max-width: 640px; margin: 0 auto; }
.thanks .check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.thanks h1 { font-family: var(--font-display); font-weight: 700; font-size: 38px; color: var(--navy-900); margin: 0 0 12px; letter-spacing: -0.02em; }
.thanks .order-id { display: inline-block; padding: 8px 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 8px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); margin-bottom: 20px; }
.thanks p { font-size: 16px; color: var(--ink-2); margin: 0 0 28px; line-height: 1.6; }
.thanks .next-card { text-align: left; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; margin-top: 32px; }
.thanks .next-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy-900); margin: 0 0 14px; }
.thanks .next-card .step { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 8px 0; }
.thanks .next-card .step .num { width: 24px; height: 24px; border-radius: 50%; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; }

/* ─── Diensten / services hero (split) ─── */
.split-hero { padding: 56px 0; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.split-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.025em; line-height: 1.05; color: var(--navy-900); margin: 14px 0 18px; text-wrap: balance; }
.split-hero h1 em { font-style: normal; color: var(--orange); }
.split-hero .lead { font-size: 18px; color: var(--ink-2); max-width: 52ch; line-height: 1.55; }
.split-hero .visual { aspect-ratio: 4/3; background: var(--navy-900); border-radius: 18px; padding: 36px; color: #fff; position: relative; overflow: hidden; display: grid; align-content: end; }
.split-hero .visual::before { content: ""; position: absolute; inset: 0; background: var(--grid-overlay); opacity: 0.18; }
.split-hero .visual::after { content: ""; position: absolute; right: -100px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(46,128,255,0.4), transparent 70%); }
.split-hero .visual .vlabel { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.16em; text-transform: uppercase; position: relative; z-index: 1; }
.split-hero .visual .vh { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: #fff; margin: 8px 0 0; letter-spacing: -0.015em; line-height: 1.1; position: relative; z-index: 1; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-big {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px; min-height: 280px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.svc-big:hover { transform: translateY(-2px); border-color: var(--line-2); box-shadow: var(--shadow-2); }
.svc-big .num { font-family: var(--font-mono); font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: 0.2em; }
.svc-big .icon-big { width: 56px; height: 56px; border-radius: 12px; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; }
.svc-big h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin: 0; letter-spacing: -0.01em; }
.svc-big p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.svc-big ul { list-style: none; padding: 0; margin: auto 0 0; display: grid; gap: 6px; }
.svc-big ul li { font-size: 13px; color: var(--ink-3); display: flex; gap: 8px; align-items: center; }
.svc-big ul li::before { content: "—"; color: var(--ink-4); }

/* Sticky CTA */
.sticky-cta {
  position: sticky; bottom: 16px;
  margin: 40px 0;
  padding: 22px 28px;
  background: var(--navy-900); color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: var(--shadow-3);
  flex-wrap: wrap;
}
.sticky-cta .t { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; margin: 0 0 2px; }
.sticky-cta .s { font-size: 13.5px; color: rgba(255,255,255,0.7); }

/* Generic helpers */
.center { text-align: center; }
.muted { color: var(--ink-3); }
.kicker-block { text-align: center; padding-bottom: 28px; }
.kicker-block .sec-eyebrow { display: inline-block; }
.kicker-block .sec-title { margin: 8px auto 12px; }
.kicker-block .sec-sub { margin: 0 auto; }
.tag-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; background: var(--navy-50); color: var(--navy-700); border: 1px solid var(--line-2); }
.tag-pill.orange { background: #FFF3E6; color: var(--orange); border-color: #FCD9B6; }
.tag-pill.green { background: var(--green-bg); color: var(--green); border-color: #BFE2D0; }

/* responsive helpers */
@media (max-width: 980px) {
  .shop-layout, .pdp, .cart-page, .checkout, .roi-card, .vertical-pick, .deal-banner, .split-hero { grid-template-columns: 1fr !important; }
  .stat-row, .shop-cats, .svc-grid { grid-template-columns: 1fr 1fr; }
  .stat-row .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 14px 22px; }
  .bundle { grid-template-columns: 1fr; }
  .bundle .b-price { text-align: left; }
}


/* ─── Assortiment page ─── */
.assort-hero { padding: 56px 0 24px; border-bottom: 1px solid var(--line); background: var(--paper); }
.assort-hero .crumb { font-size: 12.5px; color: var(--ink-3); display: inline-flex; gap: 6px; align-items: center; margin-bottom: 14px; }
.assort-hero .crumb a { color: var(--ink-3); }
.assort-hero .crumb a:hover { color: var(--navy-700); }
.assort-hero .crumb svg { color: var(--ink-4); }
.assort-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 4.4vw, 56px); letter-spacing: -0.02em; color: var(--navy-900); margin: 0 0 8px; }
.assort-sub { color: var(--ink-3); max-width: 640px; font-size: 15.5px; margin: 0; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper); margin-bottom: 16px;
}
.filter-group { display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.filter-label { font-size: 12px; color: var(--ink-4); font-family: var(--font-mono); margin-right: 4px; }
.filter-chip {
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--paper); color: var(--ink-2); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.filter-chip:hover { border-color: var(--navy-700); color: var(--navy-900); }
.filter-chip.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.filter-select {
  padding: 7px 12px; border-radius: 8px; border: 1px solid var(--line-2);
  background: var(--paper); color: var(--ink-2); font-size: 13.5px; font-family: inherit;
}

.result-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 4px 14px; }
.result-count { font-family: var(--font-display); font-weight: 600; color: var(--navy-900); font-size: 14.5px; }
.result-meta { font-size: 12.5px; color: var(--ink-4); }

.products.products-4 { grid-template-columns: repeat(4, 1fr); }

.empty-state { padding: 60px 24px; text-align: center; color: var(--ink-3); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty-state svg { color: var(--ink-4); }

.assort-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.assort-stats > div { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.assort-stats .big { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 36px; letter-spacing: -0.02em; }
.assort-stats .lbl { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

@media (max-width: 1080px) {
  .products.products-4 { grid-template-columns: repeat(2, 1fr); }
}


/* ─── Kassasystemen page ─── */
.pos-hero { padding: 56px 0 48px; background: linear-gradient(180deg, #0E2A47 0%, #143560 100%); color: #fff; position: relative; overflow: hidden; }
.pos-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(231,106,30,0.12) 0%, transparent 55%); pointer-events: none; }
.pos-hero .crumb { font-size: 12.5px; color: rgba(255,255,255,0.55); display: inline-flex; gap: 6px; align-items: center; margin-bottom: 28px; position: relative; z-index: 1; }
.pos-hero .crumb a { color: rgba(255,255,255,0.55); }
.pos-hero .crumb a:hover { color: #fff; }
.pos-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.pos-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; font-size: 12.5px; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.pos-hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 18px; }
.pos-hero-title .ink { color: var(--orange); }
.pos-hero-sub { color: rgba(255,255,255,0.78); max-width: 520px; font-size: 16px; line-height: 1.55; margin: 0 0 24px; }
.pos-hero-cta { display: flex; gap: 12px; margin-bottom: 24px; }
.pos-hero-cta .btn-ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }
.pos-hero-cta .btn-ghost:hover { background: rgba(255,255,255,0.14); }
.pos-hero-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: rgba(255,255,255,0.7); }
.pos-hero-meta div { display: inline-flex; align-items: center; gap: 6px; }
.pos-hero-meta svg { color: #4EE599; }

/* Terminal mockup */
.pos-hero-vis { display: grid; place-items: center; }
.terminal { width: 360px; transform: rotate(-2deg); filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45)); }
.terminal-screen { background: #0A1A2E; border: 8px solid #1A2A40; border-radius: 14px 14px 6px 6px; padding: 18px 18px 14px; color: #DCE6F2; }
.terminal-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,0.12); font-size: 12.5px; color: rgba(255,255,255,0.6); font-family: var(--font-mono); }
.badge-live { display: inline-flex; gap: 6px; align-items: center; color: #4EE599; }
.badge-live span { width: 6px; height: 6px; background: #4EE599; border-radius: 50%; box-shadow: 0 0 8px #4EE599; }
.terminal-rows { display: flex; flex-direction: column; gap: 8px; padding: 14px 0 12px; border-bottom: 1px dashed rgba(255,255,255,0.12); }
.trow { display: flex; justify-content: space-between; font-size: 14px; }
.trow.muted { color: rgba(255,255,255,0.45); font-size: 12.5px; }
.trow.total { padding: 12px 0; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.terminal-pay { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; padding-top: 4px; }
.terminal-pay button { padding: 10px 6px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: #DCE6F2; font-family: inherit; font-size: 12.5px; cursor: pointer; }
.terminal-pay button.primary { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 600; }
.terminal-base { width: 70%; height: 14px; margin: -2px auto 0; background: linear-gradient(180deg, #1A2A40, #0A1A2E); border-radius: 0 0 12px 12px; }

/* Vertical tabs */
.vert-tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 32px; }
.vert-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border: none; background: transparent; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 14.5px; color: var(--ink-3); font-weight: 500; }
.vert-tab.active { background: var(--navy-900); color: #fff; }
.vert-tab svg { color: inherit; }

/* Vertical content */
.pos-vert {}
.pos-vert-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.pos-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.pos-bullet { display: flex; gap: 12px; }
.pos-bullet-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; }
.pos-bullet .t { font-weight: 600; color: var(--navy-900); font-size: 14.5px; }
.pos-bullet .s { font-size: 13px; color: var(--ink-3); margin-top: 2px; line-height: 1.5; }

.pos-set-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-2); }
.pos-set-head { padding-bottom: 20px; border-bottom: 1px dashed var(--line); margin-bottom: 18px; }
.pos-set-head .cond.new { display: inline-block; background: var(--navy-50); color: var(--navy-700); padding: 4px 9px; border-radius: 6px; font-size: 11px; font-weight: 600; margin-bottom: 12px; }
.pos-set-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy-900); letter-spacing: -0.01em; margin-bottom: 10px; }
.pos-set-price { display: flex; align-items: baseline; gap: 10px; }
.pos-set-price .price { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy-900); }
.pos-set-price .was { font-size: 13.5px; color: var(--ink-4); text-decoration: line-through; }
.pos-set-price .excl { font-size: 12px; color: var(--ink-4); margin-left: auto; font-family: var(--font-mono); }
.pos-set-items { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.pos-set-items li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.pos-set-items svg { color: var(--green); flex: 0 0 auto; }
.btn-success { background: var(--green) !important; border-color: var(--green) !important; }

/* ROI card */
.roi-card { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-2); }
.roi-inputs { padding: 28px; background: var(--cream); border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; }
.roi-inputs label { display: grid; gap: 6px; font-size: 13.5px; color: var(--ink-2); font-weight: 500; position: relative; }
.roi-inputs label > span:first-child { color: var(--ink-3); font-size: 12.5px; }
.roi-inputs output { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); position: absolute; right: 0; top: 0; }
.roi-inputs input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--line-2); border-radius: 999px; outline: none; }
.roi-inputs input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: var(--navy-900); border-radius: 50%; cursor: pointer; }
.roi-inputs input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; background: var(--navy-900); border-radius: 50%; cursor: pointer; border: none; }
.roi-output { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.roi-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--ink-2); }
.roi-row strong { font-family: var(--font-display); color: var(--navy-900); font-size: 16px; }
.roi-row .pos { color: var(--green); }
.roi-row .neg { color: var(--ink-3); }
.roi-row.total { background: var(--navy-50); margin: 8px -28px -28px; padding: 18px 28px; border: none; border-top: 1px solid var(--line); }
.roi-row.total strong { font-size: 24px; }
.roi-foot { font-size: 11.5px; color: var(--ink-4); margin: 14px -28px -28px; padding: 14px 28px; }

/* POS steps */
.pos-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pos-step { padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.pos-step .d { font-family: var(--font-mono); font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.pos-step .t { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 17px; margin: 6px 0 6px; }
.pos-step .s { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* POS FAQ */
.pos-faq { display: flex; flex-direction: column; gap: 10px; }
.pos-faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 0; }
.pos-faq summary { padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--navy-900); display: flex; justify-content: space-between; align-items: center; list-style: none; }
.pos-faq summary::-webkit-details-marker { display: none; }
.pos-faq summary svg { color: var(--ink-4); transition: transform .2s; }
.pos-faq details[open] summary svg { transform: rotate(90deg); }
.pos-faq p { padding: 0 22px 18px; margin: 0; font-size: 14px; color: var(--ink-3); line-height: 1.6; }

/* POS CTA */
.pos-cta { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 36px 40px; background: var(--navy-900); color: #fff; border-radius: 18px; }
.pos-cta .sec-eyebrow { color: rgba(255,255,255,0.55); }
.pos-cta .sec-eyebrow::before { background: var(--orange); }
.pos-cta .sec-title { color: #fff; }
.pos-cta-actions { display: flex; gap: 12px; }
.pos-cta-actions .btn-ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }

@media (max-width: 1080px) {
  .pos-hero-grid, .pos-vert-grid, .roi-card, .pos-cta { grid-template-columns: 1fr; }
  .pos-bullets, .pos-steps { grid-template-columns: 1fr 1fr; }
  .roi-inputs { border-right: none; border-bottom: 1px solid var(--line); }
}


/* ─── Laptop deals page ─── */
.deals-hero { padding: 56px 0 56px; background: linear-gradient(180deg, #FFF7EE 0%, #FAFBFD 100%); border-bottom: 1px solid var(--line); }
.deals-hero .crumb { font-size: 12.5px; color: var(--ink-3); display: inline-flex; gap: 6px; align-items: center; margin-bottom: 28px; }
.deals-hero .crumb a { color: var(--ink-3); }
.deals-hero .crumb svg { color: var(--ink-4); }
.deals-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.deals-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; color: var(--ink-2); margin-bottom: 18px; }
.deals-tag .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(231,106,30,0.18); }
.deals-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.025em; color: var(--navy-900); margin: 0 0 18px; }
.deals-title .orange { color: var(--orange); font-style: italic; font-weight: 600; }
.deals-sub { color: var(--ink-3); max-width: 540px; font-size: 16px; line-height: 1.6; margin: 0 0 24px; }

.deals-countdown { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; max-width: 540px; }
.deals-countdown .cd-label { font-size: 13.5px; color: var(--ink-3); }
.countdown { display: inline-flex; gap: 8px; align-items: baseline; margin-left: auto; }
.cd-cell { background: var(--navy-900); color: #fff; padding: 8px 10px; border-radius: 8px; min-width: 48px; text-align: center; font-family: var(--font-mono); }
.cd-cell span { display: block; font-weight: 700; font-size: 20px; line-height: 1; }
.cd-cell label { display: block; font-size: 9.5px; opacity: 0.6; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.cd-sep { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 22px; }

.deals-featured { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-2); position: relative; }
.deals-featured-stamp { position: absolute; top: -16px; right: 24px; background: var(--orange); color: #fff; padding: 8px 14px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 17px; box-shadow: 0 6px 14px rgba(231,106,30,0.28); transform: rotate(4deg); }
.deals-featured-img { aspect-ratio: 4/3; background: linear-gradient(160deg, #F0F4FA, #DEE7F4); border-radius: 14px; margin-bottom: 18px; display: grid; place-items: center; overflow: hidden; }
.deals-featured-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.deals-featured-meta .cond { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; }
.deals-featured-meta .name { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.3; color: var(--navy-900); margin: 6px 0 10px; }
.deals-featured-meta .specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.deals-featured-meta .specs span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); padding: 2px 7px; border: 1px solid var(--line); border-radius: 4px; background: var(--cream); }
.deals-featured-meta .price-row { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-top: 1px dashed var(--line); margin-bottom: 14px; }
.deals-featured-meta .price { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy-900); }
.deals-featured-meta .was { font-size: 14px; color: var(--ink-4); text-decoration: line-through; }
.deals-featured-meta .save { margin-left: auto; font-size: 12.5px; color: var(--green); background: var(--green-bg); padding: 4px 9px; border-radius: 999px; font-weight: 600; }

/* Trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; }
.trust-item .t { font-weight: 600; color: var(--navy-900); font-size: 14px; }
.trust-item .s { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; line-height: 1.5; }

.products.products-3 { grid-template-columns: repeat(3, 1fr); }

/* Comparison */
.vs-table { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 18px; align-items: stretch; }
.vs-col { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); display: flex; flex-direction: column; gap: 14px; }
.vs-col.vs-best { background: var(--navy-900); color: #fff; border-color: var(--navy-900); position: relative; transform: translateY(-8px); box-shadow: var(--shadow-3); }
.vs-best-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; padding: 5px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.vs-h { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; }
.vs-best .vs-h { color: rgba(255,255,255,0.55); }
.vs-p { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--navy-900); letter-spacing: -0.02em; }
.vs-best .vs-p { color: #fff; }
.vs-save { display: inline-block; font-family: var(--font-sans); font-weight: 600; font-size: 12px; color: #4EE599; background: rgba(78,229,153,0.12); padding: 4px 9px; border-radius: 999px; margin-left: 10px; vertical-align: middle; }
.vs-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vs-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.vs-best li { color: rgba(255,255,255,0.85); }
.vs-col li svg { color: var(--green); flex: 0 0 auto; margin-top: 2px; }
.vs-col li svg[stroke="currentColor"] { color: var(--green); }
.vs-col li:has(svg.x) svg, .vs-col li svg + * { }
/* color the X icon red-ish */
.vs-col li svg path[d^="M6 6"] { color: var(--ink-4); }

/* Bundles */
.bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bundle { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); display: flex; flex-direction: column; gap: 14px; position: relative; }
.bundle.best { border-color: var(--navy-900); border-width: 2px; }
.bundle-badge { display: inline-block; align-self: flex-start; padding: 4px 10px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); font-size: 11.5px; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.bundle.best .bundle-badge { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.bundle-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); }
.bundle ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bundle ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.bundle ul li svg { color: var(--green); }
.bundle-price { display: flex; align-items: baseline; gap: 10px; padding-top: 14px; border-top: 1px dashed var(--line); margin-top: auto; }
.bundle-price .price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--navy-900); }
.bundle-price .was { font-size: 13px; color: var(--ink-4); text-decoration: line-through; }

@media (max-width: 1080px) {
  .deals-hero-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .products.products-3 { grid-template-columns: 1fr 1fr; }
  .vs-table, .bundles { grid-template-columns: 1fr; }
  .vs-col.vs-best { transform: none; }
}


/* ─── Diensten page ─── */
.diensten-hero { padding: 56px 0 32px; background: var(--paper); border-bottom: 1px solid var(--line); }
.diensten-hero .crumb { font-size: 12.5px; color: var(--ink-3); display: inline-flex; gap: 6px; align-items: center; margin-bottom: 24px; }
.diensten-hero .crumb a { color: var(--ink-3); }
.diensten-hero .crumb svg { color: var(--ink-4); }
.diensten-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.025em; color: var(--navy-900); margin: 0 0 14px; }
.diensten-sub { color: var(--ink-3); max-width: 640px; font-size: 16px; line-height: 1.6; margin: 0; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.service-head { padding: 22px 26px; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.service-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.service-brand .brand-mark { display: grid; place-items: center; width: 32px; height: 32px; background: rgba(255,255,255,0.16); border-radius: 8px; }
.service-ic { opacity: 0.7; }
.service-body { padding: 26px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.service-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin: 0; letter-spacing: -0.01em; }
.service-body p { color: var(--ink-3); font-size: 14.5px; line-height: 1.6; margin: 0; }
.service-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.service-body ul li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.service-body ul li svg { color: var(--green); flex: 0 0 auto; }
.service-foot { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; border-top: 1px dashed var(--line); margin-top: auto; }
.service-foot .price { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 16px; }
.service-foot .link { color: var(--navy-700); font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-cell { display: flex; gap: 12px; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.why-ic { width: 28px; height: 28px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: grid; place-items: center; flex: 0 0 auto; }
.why-cell .t { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy-900); margin-bottom: 4px; }
.why-cell .s { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

/* Cases */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-cell { padding: 22px 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.case-who { font-family: var(--font-mono); font-size: 11.5px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.case-what { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 18px; margin: 6px 0 8px; line-height: 1.35; }
.case-outcome { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-row { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); transition: border-color .15s; }
a.contact-row:hover { border-color: var(--navy-700); }
.contact-row .ic { width: 36px; height: 36px; border-radius: 8px; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact-row .t { font-weight: 600; color: var(--navy-900); font-size: 15px; }
.contact-row .s { font-size: 12.5px; color: var(--ink-4); }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 14px; }
.contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin: 0 0 4px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-3); }
.contact-form label > span { font-weight: 500; color: var(--ink-2); font-size: 12.5px; }
.contact-form input, .contact-form textarea { font-family: inherit; font-size: 14px; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--cream); color: var(--ink-1); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(46,128,255,0.18); background: var(--paper); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.topic-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.topic { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--paper); color: var(--ink-2); font-size: 12.5px; font-weight: 500; cursor: pointer; font-family: inherit; }
.topic.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 6px; }
.form-meta { font-size: 12px; color: var(--ink-4); }
.form-success { text-align: center; padding: 28px 0; }
.form-success-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success h3 { margin: 0 0 8px; }
.form-success p { color: var(--ink-3); margin: 0 0 18px; }

@media (max-width: 1080px) {
  .services-grid, .why-grid, .cases-grid, .contact-grid, .row-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}


/* ─── PDP ─── */
.pdp-wrap { padding: 32px 0 64px; }
.pdp-crumb { margin-bottom: 20px; }
.pdp-crumb a { color: var(--ink-3); }
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; margin-bottom: 48px; }
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-img-main { aspect-ratio: 4/3; background: linear-gradient(160deg, #F0F4FA, #DEE7F4); border-radius: 16px; position: relative; overflow: hidden; display: grid; place-items: center; }
.pdp-img-main img { width: 100%; height: 100%; object-fit: contain; padding: 32px; }
.pdp-img-main .cond { position: absolute; top: 14px; left: 14px; padding: 5px 11px; border-radius: 999px; background: var(--paper); font-size: 11.5px; font-weight: 600; color: var(--ink-2); border: 1px solid var(--line); }
.pdp-img-main .cond.new { background: var(--orange); color: #fff; border-color: var(--orange); }
.pdp-img-main .stamp { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 6px; background: var(--paper); padding: 5px 11px; border-radius: 999px; font-size: 11.5px; color: var(--green); border: 1px solid var(--line); }
.pdp-img-main .stamp .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-thumb { aspect-ratio: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: grid; place-items: center; cursor: pointer; transition: border-color .15s; }
.pdp-thumb svg { width: 60%; height: 60%; }
.pdp-thumb.active { border-color: var(--navy-700); box-shadow: 0 0 0 2px rgba(36,86,160,0.18); }

.pdp-info .pdp-brand { font-family: var(--font-mono); font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.pdp-title { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -0.015em; color: var(--navy-900); margin: 6px 0 12px; line-height: 1.15; }
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13.5px; }
.pdp-rating .stars { color: var(--orange); letter-spacing: 1px; }
.pdp-rating .rate { font-weight: 700; color: var(--navy-900); }
.pdp-rating .cnt { color: var(--ink-4); }
.pdp-spec-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pdp-spec-chips span { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); padding: 3px 9px; border: 1px solid var(--line); border-radius: 6px; background: var(--cream); }

.pdp-price-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp-price { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--navy-900); letter-spacing: -0.02em; }
.pdp-was { font-size: 16px; color: var(--ink-4); text-decoration: line-through; }
.pdp-save { font-size: 12.5px; color: var(--green); background: var(--green-bg); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.pdp-vat { font-size: 12.5px; color: var(--ink-4); margin-top: 4px; }
.pdp-pay { font-size: 13px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 7px 11px; background: var(--green-bg); color: var(--green); border-radius: 8px; }
.pdp-stock { font-size: 13px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.pdp-stock svg { color: var(--green); }
.pdp-actions { display: flex; gap: 10px; margin-top: 16px; }
.qty-input { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; }
.qty-input button { width: 36px; height: 42px; background: var(--paper); border: none; cursor: pointer; font-size: 16px; color: var(--ink-2); font-family: inherit; }
.qty-input button:hover { background: var(--cream); }
.qty-input input { width: 44px; height: 42px; border: none; text-align: center; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink-1); background: var(--paper); }
.qty-input input:focus { outline: none; }

.pdp-trust { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.pdp-trust > div { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }
.pdp-trust svg { color: var(--navy-700); }

.pdp-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.pdp-tab { padding: 14px 22px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 14.5px; color: var(--ink-3); font-weight: 500; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.pdp-tab.active { color: var(--navy-900); border-bottom-color: var(--orange); font-weight: 600; }
.pdp-tab-body { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px; margin-bottom: 48px; }

.pdp-spec-table { width: 100%; border-collapse: collapse; }
.pdp-spec-table th, .pdp-spec-table td { text-align: left; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.pdp-spec-table th { color: var(--ink-3); font-weight: 500; width: 32%; }
.pdp-spec-table td { color: var(--ink-1); }
.pdp-spec-table tr:last-child th, .pdp-spec-table tr:last-child td { border-bottom: none; }

.pdp-prose p { font-size: 14.5px; color: var(--ink-2); line-height: 1.7; margin: 0 0 14px; }
.pdp-prose ul { padding-left: 22px; color: var(--ink-2); font-size: 14.5px; line-height: 1.8; }

.pdp-refurb { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.refurb-step { display: flex; gap: 14px; padding: 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 10px; }
.refurb-step .n { width: 28px; height: 28px; border-radius: 50%; background: var(--navy-900); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; flex: 0 0 auto; }
.refurb-step .t { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 15px; margin-bottom: 4px; }
.refurb-step .s { font-size: 13px; color: var(--ink-3); line-height: 1.55; }

.pdp-reviews { display: flex; flex-direction: column; gap: 18px; }
.review-cell { padding: 18px 0; border-bottom: 1px dashed var(--line); }
.review-cell:last-child { border-bottom: none; }
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.review-head .stars { color: var(--orange); letter-spacing: 1px; font-size: 14px; }
.review-head .who { font-weight: 600; color: var(--navy-900); font-size: 13.5px; }
.review-cell p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; margin: 0; }

.pdp-related .products-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1080px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-refurb { grid-template-columns: 1fr; }
  .pdp-related .products-4 { grid-template-columns: 1fr 1fr; }
}

/* ─── Cart page ─── */
.cart-page { padding: 32px 0 64px; }
.page-title { font-family: var(--font-display); font-weight: 700; font-size: 38px; color: var(--navy-900); letter-spacing: -0.02em; margin: 14px 0 28px; }
.cart-empty-page { text-align: center; padding: 60px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.cart-empty-page .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); color: var(--navy-700); display: grid; place-items: center; margin: 0 auto 16px; }
.cart-empty-page h2 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); margin: 0 0 8px; }
.cart-empty-page p { color: var(--ink-3); margin: 0; }

.cart-page-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: flex-start; }
.cart-items { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cart-items-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--ink-3); background: var(--cream); }
.cart-line { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; padding: 22px; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line:last-of-type { border-bottom: none; }
.cart-line-thumb { aspect-ratio: 1; background: linear-gradient(160deg, #F0F4FA, #DEE7F4); border-radius: 10px; overflow: hidden; display: grid; place-items: center; }
.cart-line-thumb svg { width: 70%; height: 70%; }
.cart-line-meta .name { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 16px; line-height: 1.3; display: block; margin-bottom: 6px; }
.cart-line-meta .specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.cart-line-meta .specs span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); padding: 2px 7px; border: 1px solid var(--line); border-radius: 4px; background: var(--cream); }
.cart-line-foot { display: flex; gap: 16px; align-items: center; }
.text-link { background: none; border: none; cursor: pointer; color: var(--navy-700); font-size: 13px; font-weight: 500; padding: 0; font-family: inherit; display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
.text-link.danger { color: var(--ink-3); }
.text-link.danger:hover { color: #C04434; }
.cart-line-price { text-align: right; }
.cart-line-price .ea { font-size: 12px; color: var(--ink-4); margin-bottom: 4px; }
.cart-line-price .tot { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 18px; }
.cart-cont { padding: 18px 22px; }

.cart-summary { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px; position: sticky; top: 96px; }
.cart-summary h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); margin: 0 0 16px; font-size: 18px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-2); }
.cart-summary .row.muted { color: var(--ink-4); font-size: 12px; }
.cart-summary .row.pos { color: var(--green); font-weight: 600; }
.cart-summary .row.total { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy-900); padding-top: 14px; border-top: 1px solid var(--line); margin-top: 8px; }
.coupon { display: flex; gap: 8px; margin-top: 16px; }
.coupon input { flex: 1; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: 8px; font-family: inherit; font-size: 13px; background: var(--cream); }
.coupon input:focus { outline: none; border-color: var(--navy-500); background: var(--paper); }
.coupon button { padding: 10px 16px; background: var(--navy-50); color: var(--navy-700); border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.coupon-msg { margin-top: 8px; font-size: 12.5px; }
.coupon-msg.ok { color: var(--green); display: flex; align-items: center; gap: 6px; }
.coupon-msg.err { color: #C04434; }
.cart-summary-trust { display: flex; gap: 14px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); }
.cart-summary-trust span { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink-3); }
.cart-summary-pay { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.cart-summary-pay .chip { font-family: var(--font-mono); font-size: 10.5px; padding: 3px 8px; background: var(--cream); border: 1px solid var(--line); border-radius: 4px; color: var(--ink-3); }

@media (max-width: 1080px) {
  .cart-page-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

/* ─── Checkout ─── */
.checkout { padding: 32px 0 64px; }
.step-bar { display: flex; align-items: center; gap: 8px; margin: 0 0 28px; padding: 18px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.step { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-4); font-weight: 500; }
.step .num { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line-2); color: var(--ink-3); display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.step.active { color: var(--navy-900); }
.step.active .num { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.step.done { color: var(--green); }
.step.done .num { background: var(--green); color: #fff; border-color: var(--green); }
.step-line { flex: 1; height: 1px; background: var(--line-2); }
.step-line.done { background: var(--green); }

.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: flex-start; }
.check-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.check-card h2 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); margin: 0 0 18px; font-size: 22px; }
.check-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); margin: 0 0 12px; font-size: 16px; }
.check-card label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
.check-card label > span { font-weight: 500; color: var(--ink-2); font-size: 12.5px; }
.check-card input { font-family: inherit; font-size: 14px; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--cream); color: var(--ink-1); }
.check-card input:focus { outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(46,128,255,0.18); background: var(--paper); }

.type-toggle { display: inline-flex; padding: 4px; background: var(--cream); border-radius: 999px; margin-bottom: 18px; border: 1px solid var(--line); }
.type-toggle button { padding: 7px 16px; border: none; background: none; cursor: pointer; font-family: inherit; font-size: 13px; color: var(--ink-3); border-radius: 999px; font-weight: 500; }
.type-toggle button.active { background: var(--navy-900); color: #fff; }

.ship-options, .pay-options { display: flex; flex-direction: column; gap: 10px; }
.ship-option, .pay-option { display: grid; grid-template-columns: auto auto 1fr auto; gap: 16px; align-items: center; padding: 16px 18px; border: 1px solid var(--line-2); border-radius: 12px; cursor: pointer; transition: border-color .15s, background .15s; }
.pay-option { grid-template-columns: auto auto 1fr; }
.ship-option.active, .pay-option.active { border-color: var(--navy-900); background: var(--navy-50); }
.ship-option input, .pay-option input { width: 18px; height: 18px; }
.ship-option .ic, .pay-option .ic { width: 36px; height: 36px; border-radius: 8px; background: var(--paper); color: var(--navy-700); display: grid; place-items: center; }
.ship-option.active .ic, .pay-option.active .ic { background: var(--navy-900); color: #fff; }
.ship-option .t, .pay-option .t { font-weight: 600; color: var(--navy-900); font-size: 14.5px; }
.ship-option .s, .pay-option .s { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.ship-option .p { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 15px; }

.check-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.check-tos { font-size: 12px; color: var(--ink-4); margin: 14px 0 0; }

.checkout-summary { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px; position: sticky; top: 96px; }
.checkout-summary h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); margin: 0 0 14px; font-size: 16px; }
.check-items { display: flex; flex-direction: column; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); margin-bottom: 14px; }
.check-item { display: flex; gap: 10px; align-items: center; }
.check-item .thumb { width: 40px; height: 40px; flex: 0 0 auto; background: linear-gradient(160deg, #F0F4FA, #DEE7F4); border-radius: 6px; overflow: hidden; display: grid; place-items: center; }
.check-item .thumb svg { width: 70%; height: 70%; }
.check-item .name { font-size: 12.5px; color: var(--navy-900); font-weight: 600; line-height: 1.3; }
.check-item .qty { font-size: 11px; color: var(--ink-4); margin-top: 2px; }
.check-item .tot { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 13px; }
.check-totals .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13.5px; color: var(--ink-2); }
.check-totals .row.muted { color: var(--ink-4); font-size: 11.5px; }
.check-totals .row.total { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-900); padding-top: 12px; border-top: 1px solid var(--line); margin-top: 6px; }
.check-trust { display: flex; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); }
.check-trust div { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--ink-3); }

@media (max-width: 1080px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

/* ─── Thanks page ─── */
.thanks { padding: 60px 0; }
.thanks-card { max-width: 760px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 56px 56px 40px; box-shadow: var(--shadow-2); text-align: center; }
.thanks-ic { width: 80px; height: 80px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: grid; place-items: center; margin: 0 auto 18px; animation: thanks-pop .5s cubic-bezier(.18,.89,.32,1.28); }
@keyframes thanks-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks-eyebrow { font-family: var(--font-mono); font-size: 11.5px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 8px; }
.thanks-card h1 { font-family: var(--font-display); font-weight: 700; font-size: 38px; color: var(--navy-900); letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.15; }
.thanks-card .lead { color: var(--ink-3); font-size: 15px; line-height: 1.6; max-width: 540px; margin: 0 auto 32px; }
.thanks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; text-align: left; padding: 28px; background: var(--cream); border-radius: 12px; margin-bottom: 28px; }
.thanks-grid .t-h { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 14px; margin-bottom: 12px; }
.thanks-grid ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.thanks-grid ol li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.step-n { width: 22px; height: 22px; border-radius: 50%; background: var(--navy-900); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 11px; flex: 0 0 auto; }
.thanks-contact { display: flex; flex-direction: column; gap: 10px; }
.thanks-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .thanks-card { padding: 40px 24px 28px; }
  .thanks-grid { grid-template-columns: 1fr; padding: 22px; }
}


/* ─── Kassasystemen page ─── */
.pos-hero-v { background: var(--navy-900); color: #fff; padding: 56px 0 80px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.pos-hero-v::after { content:""; position: absolute; inset:0; background: radial-gradient(60% 50% at 80% 30%, color-mix(in oklab, var(--accent) 35%, transparent), transparent 70%); pointer-events: none; }
.pos-hero-v .wrap { position: relative; z-index: 1; }
.pos-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.vertical-toggle { display: inline-flex; padding: 4px; background: rgba(255,255,255,0.08); border-radius: 999px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,0.14); }
.vertical-toggle button { padding: 8px 18px; border: none; background: none; cursor: pointer; font-family: inherit; font-size: 13px; color: rgba(255,255,255,0.7); border-radius: 999px; font-weight: 600; }
.vertical-toggle button.active { background: var(--accent); color: #fff; }
.pos-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.025em; color: #fff; margin: 0 0 16px; line-height: 1.05; }
.pos-sub { color: rgba(255,255,255,0.7); max-width: 540px; font-size: 16px; line-height: 1.6; margin: 0; }

.pos-mock { aspect-ratio: 4/3; background: linear-gradient(160deg, #0A1F3A, #163358); border-radius: 18px; padding: 14px; box-shadow: var(--shadow-3); border: 1px solid rgba(255,255,255,0.08); }
.pos-mock-screen { background: #fff; border-radius: 10px; height: 100%; overflow: hidden; display: flex; flex-direction: column; }
.pos-mock-bar { padding: 10px 14px; background: var(--cream); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--ink-3); }
.pos-mock-brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy-900); }
.pos-mock-brand .dot { width: 7px; height: 7px; border-radius: 50%; }
.pos-mock-time { font-family: var(--font-mono); }
.pos-mock-body { display: grid; grid-template-columns: 1fr 0.7fr; flex: 1; min-height: 0; }
.pos-mock-grid { padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-content: flex-start; overflow: hidden; border-right: 1px solid var(--line); }
.pos-tile { aspect-ratio: 1.2; padding: 8px; border: 1px solid var(--line); border-radius: 8px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); }
.pos-tile .t { font-size: 10px; color: var(--ink-1); font-weight: 600; line-height: 1.2; }
.pos-tile .p { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 11px; }
.pos-mock-receipt { padding: 14px; display: flex; flex-direction: column; gap: 6px; background: var(--cream); }
.pos-mock-receipt .r-h { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 8px; border-bottom: 1px dashed var(--line-2); }
.pos-mock-receipt .r-l { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-2); }
.pos-mock-receipt .r-l.muted { color: var(--ink-4); font-size: 9.5px; }
.pos-mock-receipt .r-tot { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); padding-top: 8px; border-top: 1px dashed var(--line-2); margin-top: 4px; font-size: 13px; }
.pos-mock-receipt .r-pay { margin-top: auto; padding: 9px; border: none; color: #fff; border-radius: 8px; font-family: inherit; font-weight: 600; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }

/* Sets */
.pos-sets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pos-set { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.pos-set.best { border: 2px solid var(--navy-900); transform: translateY(-6px); box-shadow: var(--shadow-2); }
.pos-set-badge { position: absolute; top: -12px; left: 24px; padding: 5px 12px; background: var(--orange); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.pos-set-badge.muted { background: var(--cream); color: var(--ink-3); border: 1px solid var(--line); }
.pos-set-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin-top: 8px; }
.pos-set-price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.pos-set-price .amount { font-family: var(--font-display); font-weight: 700; font-size: 38px; color: var(--navy-900); letter-spacing: -0.02em; }
.pos-set-price .per { font-size: 12.5px; color: var(--ink-4); }
.pos-set ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pos-set ul li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-2); }

/* ROI calculator */
.roi-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 36px; box-shadow: var(--shadow-1); }
.roi-h { margin-bottom: 24px; }
.roi-h h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); margin: 6px 0 8px; font-size: 28px; letter-spacing: -0.015em; }
.roi-h p { color: var(--ink-3); margin: 0; max-width: 540px; font-size: 14.5px; line-height: 1.55; }
.roi-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; padding: 24px; background: var(--cream); border-radius: 12px; margin-bottom: 24px; }
.roi-row label { display: block; font-size: 12.5px; color: var(--ink-3); margin-bottom: 8px; font-weight: 500; }
.roi-bar { display: flex; align-items: center; gap: 14px; }
.roi-bar input[type=range] { flex: 1; height: 4px; }
.roi-bar .val { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 17px; min-width: 70px; text-align: right; }

.roi-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.roi-stat { padding: 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; }
.roi-stat .lab { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.roi-stat .val { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 24px; letter-spacing: -0.015em; line-height: 1.1; }
.roi-stat .val span { font-size: 12px; font-weight: 500; color: var(--ink-4); margin-left: 4px; }
.roi-stat.highlight { color: #fff; border: none; }
.roi-stat.highlight .lab, .roi-stat.highlight .sub { color: rgba(255,255,255,0.7); }
.roi-stat.highlight .val { color: #fff; font-size: 28px; }
.roi-stat.highlight .sub { font-size: 11px; margin-top: 4px; }
.roi-foot { font-size: 11.5px; color: var(--ink-4); margin: 18px 0 0; text-align: center; }

/* Integrations */
.integrations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.int-cell { padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; display: flex; justify-content: space-between; align-items: center; }
.int-name { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 15px; }
.int-status { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--green); font-weight: 600; }
.int-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-bg); }

/* Process steps */
.pos-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
.pos-step { padding: 22px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.pos-step .d { font-family: var(--font-mono); font-size: 11.5px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 8px; }
.pos-step .t { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 16px; margin-bottom: 6px; }
.pos-step .s { font-size: 13px; color: var(--ink-3); line-height: 1.55; }

@media (max-width: 1080px) {
  .pos-hero-grid { grid-template-columns: 1fr; }
  .pos-sets { grid-template-columns: 1fr; }
  .pos-set.best { transform: none; }
  .roi-controls { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: 1fr 1fr; }
  .pos-process { grid-template-columns: 1fr 1fr; }
}

/* ── B2C/B2B segment switch (restored from previous design layer) ────── */
.aw-customer-switch {
    display: inline-flex;
    background: var(--pill-bg);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 3px;
    margin-right: 8px;
}
.aw-customer-switch button {
    background: transparent;
    border: 0;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-3);
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.01em;
    transition: background .15s, color .15s;
}
.aw-customer-switch button:hover { color: var(--navy-900); }
.aw-customer-switch button.is-active {
    background: var(--navy-900);
    color: #fff;
}

/* B2C / B2B view-mode visibility */
.aw-b2c-only { display: none; }
.aw-b2b-only { display: none; }
body.aw-customer-b2c .aw-b2c-only { display: revert; }
body.aw-customer-b2b .aw-b2b-only { display: revert; }

/* B2B price suffix — adds "excl. BTW" to product card prices for business mode */
body.aw-customer-b2b .product .price-row .price::after,
body.aw-customer-b2b .aw-card-v2__price::after {
    content: " excl. BTW";
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0;
}

/* On small screens, push customer-switch to a sensible spot */
@media (max-width: 1080px) {
    .aw-customer-switch { order: 50; }
}
@media (max-width: 640px) {
    .aw-customer-switch { display: flex; font-size: 12px; padding: 2px; } /* visible on mobile too */
}

/* ── B2C/B2B — make the toggle DO something visible ─────────────── */

/* Stronger active-button state (was navy → now orange accent for visibility) */
.aw-customer-switch button.is-active {
    background: var(--navy-900) !important;
    color: #fff !important;
    box-shadow: 0 1px 4px rgba(14,42,71,0.25);
    transform: scale(1.02);
}
.aw-customer-switch button { transition: background .18s ease, color .18s ease, transform .18s ease; }
.aw-customer-switch button:hover:not(.is-active) {
    background: rgba(14,42,71,0.06);
    color: var(--navy-900);
}

/* Visible state indicator — promo bar accent shifts on B2B */
body.aw-customer-b2b .promo {
    background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-bottom: 1px solid rgba(231,106,30,0.25);   /* orange accent line */
}
body.aw-customer-b2b .promo-pay::before {
    content: "Zakelijk · ";
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.02em;
}
body.aw-customer-b2c .promo-pay::before {
    content: "Particulier · ";
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Subtle hero accent shift on B2B */
body.aw-customer-b2b .hero-eyebrow .dot { background: var(--orange); }
body.aw-customer-b2c .hero-eyebrow .dot { background: var(--green); }

/* B2B-only: show "excl. BTW" suffix on every visible price */
body.aw-customer-b2b .price-row .price::after,
body.aw-customer-b2b .aw-card-v2__price::after,
body.aw-customer-b2b .pos-price .big::after {
    content: " excl. BTW";
    font-size: 0.55em;
    color: var(--ink-3);
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0;
}

/* Hide on mobile — confusing on small screens */
@media (max-width: 720px) {
    .aw-customer-switch { display: none; }
}

/* ════════════════════════════════════════════════════════════════════
   PHASE A — Coolblue/MediaMarkt-inspired additions
   - .aw-usp           USP strip (sitewide, below header)
   - .aw-catgrid       Category tile grid (landing, between brands+services)
   - .aw-pillars       Trust pillars (landing, between reviews+faq)
   ════════════════════════════════════════════════════════════════════ */

/* ── USP strip ────────────────────────────────────────────────────── */
.aw-usp {
    background: var(--paper, #fff);
    border-bottom: 1px solid var(--line, #E6EBF2);
    border-top: 1px solid var(--line, #E6EBF2);
    padding: 10px 0;
    overflow: hidden;
}
.aw-usp__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 600px) {
    .aw-usp__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
    .aw-usp__list { grid-template-columns: repeat(4, 1fr); }
}
.aw-usp__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.aw-usp__icon {
    flex-shrink: 0;
    display: inline-flex;
    width: 30px; height: 30px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--navy-50, #F4F7FB);
    color: var(--navy-700, #1B477F);
}
.aw-usp__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.aw-usp__copy strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-1, #0E1726);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.aw-usp__copy em {
    font-size: 12px;
    font-style: normal;
    color: var(--ink-3, #5B6678);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Category tile grid ──────────────────────────────────────────── */
.aw-catgrid-section { padding: 56px 0; background: var(--paper, #fff); }
.aw-catgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 720px)  { .aw-catgrid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .aw-catgrid { grid-template-columns: repeat(8, 1fr); gap: 14px; } }
.aw-catgrid__cell { margin: 0; }
.aw-catgrid__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 18px 12px;
    background: var(--cream, #FAFBFD);
    border: 1px solid var(--line, #E6EBF2);
    border-radius: 14px;
    color: var(--ink-1, #0E1726);
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    min-height: 150px;
    justify-content: space-between;
}
.aw-catgrid__tile:hover {
    border-color: var(--navy-500, #2E80FF);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14,42,71,0.06);
}
.aw-catgrid__ic {
    display: inline-flex;
    width: 48px; height: 48px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--navy-700, #1B477F);
    box-shadow: 0 1px 3px rgba(14,42,71,0.06);
}
.aw-catgrid__name {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink-1, #0E1726);
}
.aw-catgrid__sub {
    font-size: 11.5px;
    color: var(--ink-3, #5B6678);
    line-height: 1.3;
}
.aw-catgrid__count {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy-700, #1B477F);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Assurance / pillars ─────────────────────────────────────────── */
.aw-pillars-section { padding: 56px 0; background: var(--cream, #FAFBFD); }
.aw-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 720px)  { .aw-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .aw-pillars { grid-template-columns: repeat(4, 1fr); } }
.aw-pillars__item {
    background: var(--paper, #fff);
    border: 1px solid var(--line, #E6EBF2);
    border-radius: 14px;
    padding: 22px;
    text-align: left;
}
.aw-pillars__ic {
    display: inline-flex;
    width: 52px; height: 52px;
    align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--navy-50, #F4F7FB);
    color: var(--navy-700, #1B477F);
    margin-bottom: 14px;
}
.aw-pillars__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-1, #0E1726);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.aw-pillars__sub {
    font-size: 13.5px;
    color: var(--ink-3, #5B6678);
    line-height: 1.55;
    margin: 0;
}

/* === Atlas mountains hero overlay (added 2026-05-17) === */
.hero { position: relative; overflow: hidden; }
.hero > *:not(.atlas-mountains-bg) { position: relative; z-index: 2; }
.hero .atlas-mountains-bg { position: absolute; inset: auto 0 -1px 0; height: 55%; z-index: 0; pointer-events: none; overflow: hidden; }
.hero .atlas-mountains-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/mountains.jpg");
  background-size: cover; background-position: center 35%;
  filter: saturate(0.7) brightness(1.22) contrast(0.95);
  opacity: 0.38;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
}
.hero .atlas-mountains-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(46,128,255,0.14), transparent 70%),
              linear-gradient(180deg, transparent 70%, var(--paper, #fff) 100%);
}
@media (max-width: 720px) { .hero .atlas-mountains-bg { height: 45%; } }

/* ─── Phase 9: Card height normalization + Mobile spacing (2026-05-27) ─── */

/* A) Card height normalization — equal-height cards in all grid rows */
.svc-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.svc-card p,
.svc-card .lede {
  flex: 1;
}

.compare-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.compare-list {
  flex: 1;
}

.pos-set {
  min-height: 320px;
}

/* B) Mobile edge-spacing — prevent content from touching screen edges */
@media (max-width: 768px) {
  section.sec,
  .sec,
  .hero-section,
  .deal-banner,
  .assurance,
  .faq-section,
  .contact-section,
  .services-section,
  .compare-section,
  .process-section,
  .reviews-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Prevent double padding if wrap is already inside a padded section */
  section.sec .wrap,
  .sec .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

/* C) Footer 4-col grid — explicit responsive grid */
.aw-foot-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1080px) {
  .aw-foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .aw-foot-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .aw-foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* D) CTA button size consistency — minimum tap target 44px */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== Atlas: [products] shortcode grid fix (added 2026-06-01) =====
   The theme styles its own archive/rails but not raw [products] shortcode
   output, so grids on /werkplek-pakketten/ etc. clumped left. This lays them
   out as a clean responsive grid that respects the shortcode's columns-N. */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    list-style: none !important;
    margin: 8px 0 40px !important;
    padding: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none !important; display: none !important; }
.woocommerce ul.products.columns-1 { grid-template-columns: minmax(0, 300px); }
.woocommerce ul.products.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 660px; }
.woocommerce ul.products.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.woocommerce ul.products.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}
.woocommerce ul.products li.product img { width: 100%; height: auto; }
@media (max-width: 920px) {
    .woocommerce ul.products,
    .woocommerce ul.products.columns-3,
    .woocommerce ul.products.columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .woocommerce ul.products,
    .woocommerce ul.products.columns-2,
    .woocommerce ul.products.columns-3,
    .woocommerce ul.products.columns-4 { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}
/* ===== end shortcode grid fix ===== */

/* ===== AUDIENCE SECTION VISIBILITY (added 2026-06-01) =====
   Sections tagged .aw-aud-b2c or .aw-aud-b2b need to toggle.
   Without these rules the sections are ALWAYS visible regardless of toggle. */
body.aw-customer-b2b .aw-aud-b2c { display: none !important; }
body.aw-customer-b2c .aw-aud-b2b { display: none !important; }

/* Nav items (header) — these also carry aw-aud-b2c/b2b classes */
body.aw-customer-b2b .aw-nav li.aw-aud-b2c,
body.aw-customer-b2b nav li.aw-aud-b2c { display: none !important; }
body.aw-customer-b2c .aw-nav li.aw-aud-b2b,
body.aw-customer-b2c nav li.aw-aud-b2b { display: none !important; }

/* Footer sections */
body.aw-customer-b2b .aw-footer .aw-aud-b2c { display: none !important; }
body.aw-customer-b2c .aw-footer .aw-aud-b2b { display: none !important; }
/* ===== end audience visibility ===== */
/* Product title font consistency fix 2026-06-01 */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 { font-family: var(--font-display) !important; font-weight: 700 !important; font-size: 16px !important; line-height: 1.25 !important; color: var(--navy-900) !important; letter-spacing: -0.01em !important; }
.woocommerce ul.products li.product .price { font-family: var(--font-display) !important; font-weight: 700 !important; color: var(--navy-900) !important; }
/* End font fix */
/* =============================================================================
   ATLAS WORKS — MOBILE FIXES
   Added: 2026-06-01
   Target file: atlas-tokens.css (appended via deploy script)
   Scope: all breakpoints ≤ 768px / ≤ 480px / ≤ 375px
   Marker: MOBILE FIXES — do not remove this line
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   1. HERO SECTION — Mobile typography + image handling
   ─────────────────────────────────────────────────────────────────────────────
   Problem: hero headings render at desktop size (48–64px) on 375px screens,
   causing overflow and wrapping issues. Hero background image crops awkwardly. */

@media (max-width: 768px) {
    .hero h1,
    .hero .hero-title,
    .hero-section h1,
    .elementor-section.hero h1 {
        font-size: clamp(26px, 7vw, 38px) !important;
        line-height: 1.18 !important;
        letter-spacing: -0.02em !important;
    }
    .hero h2,
    .hero .hero-subtitle,
    .hero-section h2 {
        font-size: clamp(15px, 4vw, 20px) !important;
        line-height: 1.4 !important;
    }
    .hero .hero-lede,
    .hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    /* Prevent hero image from cropping faces on small screens */
    .hero-visual img,
    .hv-photo--big img {
        object-position: center top !important;
        max-height: 260px;
    }
    /* Hero section padding reduction */
    .hero,
    .hero-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    /* Hero buttons stack on mobile */
    .hero .btn-group,
    .hero .cta-group,
    .hero .hero-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }
    .hero .btn-group .btn,
    .hero .cta-group .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .hero .hero-title {
        font-size: clamp(22px, 8vw, 30px) !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. CATEGORY TILES GRID — 2×N on mobile, 1×N on very small screens
   ─────────────────────────────────────────────────────────────────────────────
   Existing: default is already repeat(2, 1fr) at mobile (set in tokens).
   Fix: ensure 320–374px gets single-column. Tile touch targets enlarged. */

@media (max-width: 374px) {
    .aw-catgrid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .aw-catgrid__tile {
        flex-direction: row !important;
        text-align: left !important;
        min-height: 64px !important;
        padding: 14px 16px !important;
        gap: 12px !important;
        justify-content: flex-start !important;
    }
    .aw-catgrid__ic {
        flex-shrink: 0 !important;
    }
}

@media (max-width: 768px) {
    .aw-catgrid__tile {
        min-height: 130px !important;
        /* Ensure tap targets are comfortably large */
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. PRODUCT CARDS — Full width on mobile
   ─────────────────────────────────────────────────────────────────────────────
   WooCommerce product cards in custom grids and shortcodes. */

@media (max-width: 640px) {
    /* Custom aw-card components */
    .aw-card,
    [class*="aw-card"] {
        width: 100% !important;
        max-width: 100% !important;
    }
    /* Product grid from Elementor widgets */
    .e-loop-item,
    .elementor-posts-container .elementor-post,
    .elementor-grid .elementor-grid-item {
        width: 100% !important;
    }
    /* WooCommerce single-column forced at 640px (below 560px already handled in tokens) */
    .woocommerce ul.products.columns-2,
    .woocommerce ul.products.columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-inline: auto !important;
    }
    /* Product card image consistent height */
    .woocommerce ul.products li.product a img {
        height: 200px !important;
        object-fit: contain !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. FAQ ITEMS — Touch-friendly 48px+ tap targets
   ─────────────────────────────────────────────────────────────────────────────
   Elementor FAQ widget + custom .faq-item elements. */

@media (max-width: 768px) {
    /* Elementor Pro FAQ widget */
    .elementor-accordion .elementor-accordion-item .elementor-tab-title,
    .elementor-toggle .elementor-toggle-item .elementor-tab-title {
        min-height: 56px !important;
        display: flex !important;
        align-items: center !important;
        padding: 14px 18px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
    }
    /* Custom FAQ components */
    .faq-item summary,
    .faq-item__question,
    .faq__q,
    details summary {
        min-height: 52px !important;
        display: flex !important;
        align-items: center !important;
        padding: 12px 16px !important;
        font-size: 15px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    .faq-item__answer,
    .faq__a,
    details > p,
    details > div {
        padding: 12px 16px 16px !important;
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }
    /* FAQ section spacing */
    .faq-section,
    .aw-faq {
        padding: 40px 0 !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. CHATBOT WIDGET — Above WhatsApp button on mobile
   ─────────────────────────────────────────────────────────────────────────────
   Stacks: [chatbot bubble] above [WhatsApp FAB].
   WhatsApp is typically .atlas-cta-stack or a direct .wa-bubble / .aw-wa-btn. */

@media (max-width: 768px) {
    /* Common chatbot widget selectors (Tidio, Crisp, custom) */
    #tidio-chat-iframe,
    #crisp-chatbox,
    .aw-chatbot-bubble,
    [class*="chatbot-bubble"],
    [class*="chat-bubble"],
    [id*="chat-widget"] {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
        right: 12px !important;
        z-index: 9997 !important;
    }
    /* If chatbot is inside .atlas-cta-stack, ensure ordering:
       chatbot icon sits above the WhatsApp icon vertically */
    .atlas-cta-stack {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 10px !important;
        bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
        right: 12px !important;
    }
    /* WhatsApp button specifically — keep at safe bottom position */
    .atlas-cta-stack .wa-btn,
    .atlas-cta-stack [href*="wa.me"],
    .atlas-cta-stack [href*="whatsapp"] {
        order: 1 !important; /* bottom of stack */
    }
    .atlas-cta-stack .chatbot-btn,
    .atlas-cta-stack [data-type="chat"] {
        order: 2 !important; /* above WhatsApp */
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. CUSTOMER SWITCH BUTTON — Visible and accessible on mobile
   ─────────────────────────────────────────────────────────────────────────────
   The existing CSS hides .aw-customer-switch at 720px in one rule but shows it
   at 1080px breakpoints. Ensure it's always visible and has large tap targets. */

@media (max-width: 768px) {
    .aw-customer-switch {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 12px !important;
        padding: 4px !important;
        border-radius: 20px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }
    .aw-customer-switch button {
        min-height: 34px !important;
        min-width: 72px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 16px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. TYPOGRAPHY SCALE — Readable headings on 375px width
   ─────────────────────────────────────────────────────────────────────────────
   Fluid type scale: uses clamp() so headings scale between breakpoints. */

@media (max-width: 768px) {
    h1, .h1 { font-size: clamp(24px, 6.5vw, 40px) !important; }
    h2, .h2 { font-size: clamp(20px, 5.5vw, 32px) !important; }
    h3, .h3 { font-size: clamp(17px, 4.5vw, 24px) !important; }
    h4, .h4 { font-size: clamp(15px, 4vw, 20px) !important; }

    /* Section eyebrows */
    .sec-eyebrow,
    .aw-sec-eyebrow,
    .aw-ldt__eyebrow {
        font-size: 11px !important;
        letter-spacing: 0.08em !important;
    }

    /* Body text stays readable */
    body,
    p,
    .elementor-widget-text-editor {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    /* Prevent oversized price tags on product cards */
    .woocommerce ul.products li.product .price,
    .wc-block-grid__product-price {
        font-size: 16px !important;
    }
}

@media (max-width: 375px) {
    h1, .h1 { font-size: clamp(22px, 7vw, 30px) !important; }
    h2, .h2 { font-size: clamp(18px, 6vw, 26px) !important; }
    h3, .h3 { font-size: clamp(16px, 5vw, 20px) !important; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. BOTTOM NAVIGATION SAFE AREA — iPhone notch / home indicator
   ─────────────────────────────────────────────────────────────────────────────
   The existing atlas-phase-bc.css handles most of this. These rules ensure
   the bottom nav in atlas-tokens.css context also respects safe areas. */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .aw-mobnav {
            padding-bottom: calc(6px + env(safe-area-inset-bottom)) !important;
        }
        /* Body padding so content isn't hidden behind mobnav + safe area */
        body {
            padding-bottom: calc(64px + env(safe-area-inset-bottom)) !important;
        }
        /* Footer above mobnav */
        .aw-footer,
        footer.site-footer,
        #colophon {
            padding-bottom: calc(80px + env(safe-area-inset-bottom)) !important;
        }
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. PRODUCT COMPARISON PAGE — Stack vertically on mobile
   ─────────────────────────────────────────────────────────────────────────────
   WooCommerce compare tables + custom .compare-section / .aw-compare-* */

@media (max-width: 768px) {
    /* WooCommerce compare table */
    .woocommerce-compare-list,
    table.compare-list,
    .woocommerce table.shop_table.compare {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
    }
    /* Custom compare cards */
    .compare-section .compare-grid,
    .aw-compare-grid,
    [class*="compare-grid"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .compare-card,
    .aw-compare-card {
        width: 100% !important;
        max-width: 460px !important;
        margin: 0 auto !important;
    }
    /* Spec rows in comparison — stack label + value */
    .compare-row,
    .aw-compare-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. BLOG CARDS — Single column on mobile
   ─────────────────────────────────────────────────────────────────────────────
   Blog/news grids: Elementor posts widget + custom .aw-blog-* */

@media (max-width: 640px) {
    /* Elementor Posts widget */
    .elementor-posts-container {
        grid-template-columns: 1fr !important;
    }
    /* Custom blog card grid */
    .aw-blog-grid,
    .blog-grid,
    [class*="blog-grid"],
    [class*="posts-grid"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .aw-blog-card,
    .blog-card,
    .post-card {
        width: 100% !important;
        max-width: 460px !important;
        margin: 0 auto !important;
    }
    /* Blog card images — consistent height */
    .aw-blog-card img,
    .blog-card img,
    .post-card img,
    .elementor-post__thumbnail img {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    /* Blog card meta */
    .post-meta,
    .aw-blog-card__meta {
        font-size: 12px !important;
        gap: 6px !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   11. WERKPLEK PAKKETTEN PAGE — Product grids stack vertically
   ─────────────────────────────────────────────────────────────────────────────
   Membership / pakketten page uses WooCommerce + custom sections. */

@media (max-width: 640px) {
    /* Pakketten grid */
    .pakketten-grid,
    .aw-pakketten,
    .werkplek-pakketten .products-grid,
    [class*="pakketten"] .grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    /* Pakket card */
    .pakket-card,
    .aw-pakket,
    [class*="pakket-card"] {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    /* Pricing tables: stack on mobile */
    .pricing-table,
    .aw-pricing,
    [class*="pricing-grid"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .pricing-col,
    .aw-pricing__col {
        width: 100% !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. GLOBAL MOBILE POLISH — Miscellaneous UX fixes
   ─────────────────────────────────────────────────────────────────────────────
   Buttons, images, tables, and overflow corrections for all mobile screens. */

@media (max-width: 768px) {
    /* Prevent horizontal scroll from oversized elements */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Tables: horizontal scroll on small screens */
    table:not(.aw-mobnav) {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Section headings: prevent very long words from causing overflow */
    h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Input / textarea: prevent iOS zoom on focus (font-size < 16px triggers zoom) */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Form submit buttons: full-width on mobile for easier tapping */
    .wpcf7-submit,
    input[type="submit"],
    button[type="submit"] {
        width: 100% !important;
        min-height: 50px !important;
    }

    /* Elementor section container: reset double padding on mobile */
    .elementor-section > .elementor-container {
        padding: 0 16px !important;
    }
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
    }

    /* Sticky header: reduce height on mobile */
    .aw-header,
    header#masthead,
    .site-header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    /* USP bar: horizontal scroll on mobile if too many items */
    .aw-usp-bar,
    [class*="usp-bar"] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
        scrollbar-width: none !important;
    }
    .aw-usp-bar::-webkit-scrollbar { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   END OF MOBILE FIXES — 2026-06-01
   ============================================================================= */

/* ===== ATLAS UI POLISH — 2026-06-01 ===== */

/* 1. CATEGORY TILE — equal image heights, object-fit cover */
.aw-catgrid__illus {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #F4F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aw-catgrid__illus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform .3s ease;
}
.aw-catgrid__tile:hover .aw-catgrid__illus img { transform: scale(1.06); }

/* 2. CHATBOT — move to LEFT side to avoid WhatsApp/phone overlap on right */
#aw-bot-widget {
  bottom: 24px !important;
  right: auto !important;
  left: 20px !important;
}
#aw-bot-panel {
  bottom: 76px !important;
  right: auto !important;
  left: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 14px !important;
}
@media (max-width: 480px) {
  #aw-bot-widget { bottom: 70px !important; left: 12px !important; }
  #aw-bot-panel { width: calc(100vw - 24px) !important; left: 0 !important; }
}

/* 3. HEADER ICONS — make compare/account/cart more visible */
.aw-icons { gap: 14px; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(30,58,95,0.06);
  color: var(--navy-900);
  transition: background .15s;
}
.icon-btn:hover { background: rgba(30,58,95,0.12); }
.icon-btn svg { width: 20px; height: 20px; }

/* 4. ADVISOR SECTION — Chaib profile name text overflow fix */
.advisor-name,
.aw-advisor__name,
.adv-name {
  white-space: normal !important;
  word-break: break-word !important;
  overflow: visible !important;
  text-overflow: unset !important;
  line-height: 1.3;
}
.aw-advisor__role,
.adv-role {
  font-size: 12px !important;
  line-height: 1.4 !important;
  white-space: normal !important;
}

/* 6. PRODUCT CARDS — Flash Deal badge style */
.aw-card-v2__badge.flash-deal,
li.product .badge.flash {
  background: #E11D48 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  font-size: 10px !important;
}

/* 7. MOBILE: customer switch visible on mobile */
@media (max-width: 640px) {
  .aw-customer-switch {
    display: flex !important;
    font-size: 12px;
    gap: 4px;
    padding: 2px;
  }
  .aw-customer-switch button {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}

/* ===== END ATLAS UI POLISH ===== */





/* CHECKOUT FLOAT DECLUTTER 2026-06-01 — floating CTAs covered the payment radios.
   On cart + checkout, remove distractions (conversion best practice): hide bot,
   WhatsApp/phone stack, gtranslate. Keep the mobile nav. */
body.woocommerce-cart .atlas-cta-stack,
body.woocommerce-checkout .atlas-cta-stack,
body.woocommerce-cart #aw-bot-wrap,
body.woocommerce-checkout #aw-bot-wrap,
body.woocommerce-cart .gtranslate_wrapper,
body.woocommerce-checkout .gtranslate_wrapper,
body.aw--checkout .atlas-cta-stack,
body.aw--cart .atlas-cta-stack { display: none !important; }
/* END CHECKOUT FLOAT DECLUTTER */

/* MOBILE PRODUCT DECLUTTER 2026-06-02 — sticky buy-bar overlapped the bottom nav;
   bot/WhatsApp floats covered the product image. Clean it up on phones. */
@media (max-width: 768px) {
  /* Sticky buy-bar sits ABOVE the mobile bottom nav (was both at bottom:0) */
  .aw--product .aw-sticky-buy { bottom: 58px !important; z-index: 95 !important; box-shadow: 0 -4px 16px rgba(14,42,71,.12) !important; }
  .aw--product main { padding-bottom: 150px !important; }
  /* Remove floating clutter on product pages — sticky bar already has add-to-cart + WhatsApp */
  body.single-product #aw-bot-wrap,
  body.single-product .atlas-cta-stack,
  body.single-product .aw-wa-fab { display: none !important; }
  /* Save badge: smaller, less shouty on mobile */
  .aw-pdp-save-badge { font-size: 12.5px !important; padding: 5px 10px !important; border-radius: 8px !important; }
  /* Gallery: keep image contained, thumbnails in a neat row */
  .aw-pdp__gallery .woocommerce-product-gallery__image img { object-fit: contain !important; max-height: 340px !important; }
  .aw-pdp__gallery .flex-control-thumbs { display: flex !important; gap: 8px !important; justify-content: center !important; margin-top: 10px !important; }
  .aw-pdp__gallery .flex-control-thumbs li { width: 56px !important; }
}
/* END MOBILE PRODUCT DECLUTTER */

/* ===== ATLAS MOBILE 5H SPRINT — 2026-06-02 ===== */
/* Six assembled mobile-fix blocks: typography, taptargets, cls-images,
   declutter, page-length, forms-funnel. All scoped to @media (max-width:768px)
   except two intentionally-global safe caps (image max-height in page-length).
   Appended to atlas-tokens.css (loads last, wins). Desktop untouched. */

/* MOBILE FIX: typography */
@media (max-width: 768px) {

  body,
  p,
  li,
  td { font-size: 14px; line-height: 1.55; }

  .hero p.lead,
  .page-hero .lead,
  .split-hero .lead,
  .thanks-card .lead,
  .svc-card .lede,
  .assort-sub,
  .diensten-sub { font-size: 15px; line-height: 1.55; }

  .sec-sub { font-size: 14px; line-height: 1.5; }

  .qc .lbl,
  .cart-row .name,
  .pos-bullet .s,
  .pos-step .s,
  .service-body ul li,
  .why-cell .s,
  .case-outcome,
  .refurb-step .s { font-size: 14px; line-height: 1.5; }

  .product .specs span,
  .product .in3,
  .deals-featured-meta .specs span,
  .pdp-spec-chips span,
  .cart-line-meta .specs span,
  .hero-card.hv-laptop .specs { font-size: 13px; }

  .deals-featured-meta .cond,
  .pdp-img-main .cond,
  .pdp-img-main .stamp,
  .aw-pdp__pay-lbl,
  .rating .rating-count,
  .hero-microstats .ms-l { font-size: 13px; }

  .cart-line .price-col .each,
  .cart-summary .vat,
  .check-item .qty,
  .check-totals .row.muted,
  .check-trust div,
  .roi-foot,
  .pos-mock-bar,
  .int-status { font-size: 13px; }

  .shop-side .filter .count,
  .brand-cell .count { font-size: 12.5px; }

  .aw-trust-ribbon,
  .aw-usp__copy strong,
  .aw-usp__copy em { font-size: 12.5px; }

  .bundle-badge,
  .case-who,
  .thanks-eyebrow { font-size: 12.5px; }

  .nav a { font-size: 14px; }

  .foot-col h5 { font-size: 13px; }

  .page-hero .crumbs,
  .page-hero .crumbs a { font-size: 12.5px; }

}
/* END typography */

/* MOBILE FIX: taptargets */
@media (max-width: 768px) {

  .aw-mobnav__item {
    min-height: 48px !important;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 8px !important;
    gap: 2px;
  }

  /* Footer link columns: 44px tap target + 14px floor (merged from typography) */
  .aw-footer .foot-col a,
  .foot-col a {
    font-size: 14px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center;
    padding: 6px 2px !important;
    line-height: 1.25;
  }

  .aw-pdp-tab {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 16px !important;
  }

  .faq-q,
  .faq-item summary,
  .faq-item__question {
    min-height: 48px !important;
    display: flex !important;
    align-items: center;
    padding: 12px 14px !important;
  }

  .cr-page-numbers,
  a.page-numbers,
  .page-numbers {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
  }

  a.aw-pdp-chip,
  button.aw-pdp-chip,
  a.chip,
  button.chip,
  .chip[role="button"] {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center;
    padding: 8px 14px !important;
  }

  .single_add_to_cart_button,
  .aw-pdp__cart .button,
  .aw-pdp__cart button,
  .aw-sticky-buy .button,
  .aw-sticky-buy__wa,
  .aw-pdp__wa,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 18px !important;
  }

  .quantity .qty,
  .wc-block-components-quantity-selector__input {
    min-height: 44px !important;
    box-sizing: border-box !important;
    padding: 8px !important;
  }
  .wc-block-components-quantity-selector__button {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

}
/* END taptargets */

/* MOBILE FIX: cls-images */
@media (max-width: 768px) {

  .woocommerce ul.products li.product a,
  .woocommerce-page ul.products li.product a,
  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
  .woocommerce ul.products li.product > a:first-child {
    display: block;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product img,
  .woocommerce-page ul.products li.product a img,
  .woocommerce-page ul.products li.product img {
    aspect-ratio: 1 / 1;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    object-position: center;
    background: #F4F7FB;
  }

  .aw-card img,
  .aw-card-v2 img,
  .aw-card a img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #EEF3FA;
  }

  .aw-catgrid__illus {
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .aw-catgrid__illus img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .aw--blog .blog-thumb {
    aspect-ratio: 16 / 9;
  }
  .aw--blog .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .aw-pdp__gallery .woocommerce-product-gallery__image,
  .aw-pdp__gallery .woocommerce-product-gallery__wrapper {
    aspect-ratio: 4 / 5;
    width: 100%;
    background: #F4F7FB;
  }
  .aw-pdp__gallery .woocommerce-product-gallery__image img,
  .aw-pdp__gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .aw-pdp__gallery .flex-control-thumbs li img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* END cls-images */

/* MOBILE FIX: declutter */
@media (max-width: 768px) {

  /* Kill the duplicate bottom bar (.aw-mobile-bar, older mu-plugin).
     .aw-mobnav (footer.php) is canonical. */
  .aw-mobile-bar { display: none !important; }

  /* Exactly ONE element at bottom:0 = the nav. Lock layer + position. */
  .aw-mobnav {
    display: grid !important;
    position: fixed !important;
    left: 0; right: 0; bottom: 0 !important;
    z-index: 100 !important;
  }

  .aw--product .aw-sticky-buy {
    bottom: calc(58px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 95 !important;
  }

  .atlas-cta-stack {
    right: 12px !important;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 90 !important;
  }
  .aw--product .atlas-cta-stack {
    bottom: calc(124px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.aw--cart .atlas-cta-stack { display: none !important; }

  #aw-bot-wrap {
    bottom: calc(132px + env(safe-area-inset-bottom, 0px)) !important;
    right: 12px !important; left: auto !important;
    z-index: 99 !important;
  }
  .aw--product #aw-bot-wrap {
    bottom: calc(180px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .aw-footer, footer.site-footer, #colophon {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
/* END declutter */

/* MOBILE FIX: page-length */
@media (max-width: 768px) {

  section.sec,
  .sec {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .sec-header { margin-bottom: 22px !important; }

  .hero { padding: 36px 0 40px !important; }
  .hero h1 { margin: 12px 0 16px !important; }
  .hero p.lead { margin: 0 0 22px !important; }
  .hero-grid { gap: 28px !important; }

  .hero-visual {
    min-height: 0 !important;
    aspect-ratio: auto !important;
    max-height: 60vh !important;
  }

  .hero-trust {
    margin-top: 22px !important;
    padding-top: 18px !important;
    gap: 14px !important;
  }

  .pos-hero-v { padding: 36px 0 40px !important; }
  .pos-hero-grid { gap: 28px !important; }

  .aw-catgrid-section,
  .aw-pillars-section { padding: 36px 0 !important; }

  .services,
  .products,
  .pos-sets,
  .compare-grid,
  .services-grid,
  .aw-blog-grid,
  .aw-pricing,
  .aw-pakketten,
  .aw-catgrid,
  .aw-pillars { gap: 12px !important; }

  .roi-card { padding: 24px !important; }
  .pos-set { padding: 22px !important; }

  .pos-set.best { transform: none !important; }

  .deal-banner .cta-row { margin-top: 4px !important; }
}

/* Global, safe: cap oversized hero/section imagery on narrow viewports */
.hero-visual img,
.pos-mock,
.hero-card { max-height: 70vh; }
/* END page-length */

/* MOBILE FIX: forms-funnel */
@media (max-width: 768px) {

  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type="email"],
  .woocommerce form .form-row input[type="tel"],
  .woocommerce form .form-row input[type="password"],
  .woocommerce form .form-row textarea,
  .woocommerce-checkout #customer_details input.input-text,
  .woocommerce-checkout #customer_details select,
  .woocommerce .select2-container .select2-selection,
  .woocommerce-cart .actions .coupon input#coupon_code,
  .woocommerce .quantity input.qty,
  .aw-pdp__cart .quantity input.qty,
  .aw-pdp__cart .variations select {
    font-size: 16px !important;
    min-height: 46px !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
  }
  .woocommerce .select2-container .select2-selection--single { display: flex !important; align-items: center !important; }
  .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 44px !important; }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #customer_details .col-1,
  .woocommerce-checkout #customer_details .col-2,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout #order_review_heading {
    width: 100% !important; float: none !important; box-sizing: border-box !important;
  }
  .woocommerce-checkout #order_review,
  .woocommerce-checkout #order_review_heading { margin-top: 22px !important; }
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last { width: 100% !important; float: none !important; }
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
  .woocommerce-checkout #customer_details .form-row { margin-bottom: 16px !important; }
  .woocommerce-checkout #order_review .shop_table th,
  .woocommerce-checkout #order_review .shop_table td { padding: 12px 8px !important; font-size: 15px !important; }

  .woocommerce-cart table.cart tr.cart_item td { font-size: 15px !important; min-height: 40px !important; }
  .woocommerce-cart table.cart tr.cart_item td.product-name a { font-size: 15px !important; }
  .woocommerce-cart table.cart td.product-thumbnail img { width: 72px !important; height: auto !important; }

  .woocommerce .quantity,
  .aw-pdp__cart .quantity { display: inline-flex !important; align-items: stretch !important; }
  .woocommerce .quantity input.qty,
  .aw-pdp__cart .quantity input.qty {
    width: 72px !important; text-align: center !important;
    -moz-appearance: textfield !important;
  }

  .aw-pdp__cart .single_add_to_cart_button,
  .aw-pdp__cart button.single_add_to_cart_button {
    display: block !important; width: 100% !important;
    min-height: 52px !important; padding: 15px 18px !important;
    font-size: 16px !important; line-height: 1.2 !important;
  }
  .woocommerce-cart .wc-proceed-to-checkout .checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout .button,
  .aw--cart .checkout-button,
  .aw--cart .button[name="proceed"],
  .woocommerce-checkout #payment .place-order .button,
  .woocommerce #place_order {
    display: block !important; width: 100% !important;
    min-height: 52px !important; padding: 15px 18px !important;
    font-size: 16px !important; text-align: center !important;
  }
  .woocommerce-cart .actions .coupon button { min-height: 46px !important; font-size: 15px !important; }

  .aw--product .aw-sticky-buy .btn { min-height: 46px !important; padding: 13px 18px !important; font-size: 15px !important; }
  .aw-sticky-buy__wa { min-width: 46px !important; min-height: 46px !important; }
}
/* END forms-funnel */
/* ===== END MOBILE 5H SPRINT ===== */

/* ===== MOBILE 5H SPRINT — CORRECTIVE ROUND (legibility + tap targets) 2026-06-02 ===== */
/* ─── Condition stars (aw-star SVGs) ─── */
.aw-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  vertical-align: middle;
  line-height: 1;
}
.aw-star {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ink-4);
  stroke-width: 1.5;
}
.aw-star--on {
  fill: #F1A82C;
  stroke: #F1A82C;
}
.aw-condition--new .aw-star { stroke: var(--navy-500); }
.aw-condition--new .aw-star--on { fill: var(--navy-500); stroke: var(--navy-500); }
.aw-condition--a .aw-star--on,
.aw-condition--good .aw-star--on,
.aw-condition--ok .aw-star--on { fill: #F1A82C; stroke: #F1A82C; }
@media (max-width: 768px) {
  /* --- tiny fonts: lift sub-12px labels to the 12px legibility floor --- */
  .cond,
  .product .img .cond,
  .pdp-img-main .cond,
  .deals-featured-meta .cond,
  .aw-mobnav__lbl,
  .chip,
  .aw-catpill__n,
  .sec-eyebrow,
  .aw-card-v2__stock,
  .aw-card-v2__stock--in,
  .aw-card-v2__condition-label,
  .ms-l,
  .aw-catgrid__sub,
  .aw-catgrid__count,
  .aw-ldt-card__name,
  .aw-ldt-card__save,
  .count,
  .woocommerce-Price-currencySymbol,
  .aw-tab__count,
  .lbl,
  .aw-drawer__label,
  .hv-bigcard__badge-eyebrow,
  .stock-low,
  .stock-low--last,
  .aw-rail-btn span,
  .pos-set-head .cond.new {
    font-size: 12px !important;
  }
  /* mobnav label can stay slightly tighter but legible */
  .aw-mobnav__lbl { line-height: 1.1 !important; }

  /* --- tap targets: enforce >=40px height and >=28px width --- */
  .wishlist-btn,
  button.wishlist-btn,
  .icon-btn,
  a.icon-btn,
  .aw-rail-btn,
  button.aw-rail-btn {
    min-width: 40px !important;
    min-height: 40px !important;
  }
  /* product/card title links: give clickable rows a 40px hit area */
  a.name,
  .aw-card-v2 a.name,
  .aw-ldt-card__name a {
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
  }
  /* card CTA and inline section links: pad to a finger-friendly row */
  .aw-card-v2__cta,
  a.aw-card-v2__cta,
  .sec-link,
  a.sec-link {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .aw-skip,
  a.aw-skip { min-height: 40px !important; display: inline-flex !important; align-items: center !important; }
  /* small toggle buttons */
  .aw-tab,
  button.aw-tab { min-height: 40px !important; }
}
/* ===== END CORRECTIVE ROUND ===== */

/* ============================================================
   ATLAS WORKS — /assortiment/ spec filters (brand/RAM/SSD/CPU/price + sort)
   Vanilla-JS driven. Sidebar on desktop, slide-in drawer on mobile.
   ============================================================ */

/* --- Toolbar (count · filter btn · sort) --- */
.aw-fbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.aw-fbar .result-count { display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.aw-fbar__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.aw-fbtn {
    display: none; /* desktop: hidden (sidebar always visible). Shown on mobile. */
    align-items: center; gap: 8px;
    padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 10px;
    background: var(--paper); color: var(--navy-900);
    font: 600 13.5px var(--font-sans); cursor: pointer; line-height: 1;
}
.aw-fbtn:hover { border-color: var(--navy-500); }
.aw-fbtn__n {
    display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--navy-500); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700;
}

.aw-sort { display: inline-flex; align-items: center; gap: 8px; }
.aw-sort__lbl { font-size: 13px; color: var(--ink-3); }
.aw-sort select {
    padding: 9px 32px 9px 12px; border: 1px solid var(--line-2); border-radius: 10px;
    font: 500 13.5px var(--font-sans); background: var(--paper); color: var(--ink-1); cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B6678' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 11px center;
}
.aw-sort select:focus { outline: 2px solid var(--navy-500); outline-offset: 1px; }

/* --- Layout: sidebar + grid --- */
.aw-shop-layout { display: grid; grid-template-columns: 248px minmax(0, 1fr); gap: 26px; align-items: start; }
.aw-shop-main { min-width: 0; }
.aw-shop-layout > .aw-shop-main:only-child { grid-column: 1 / -1; } /* fix: no-facet categories (kassasystemen etc) */

/* --- Filter panel --- */
.aw-filters {
    position: sticky; top: 92px;
    background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-1); overflow: hidden;
}
.aw-filters__head { display: none; } /* desktop: no header bar */
.aw-filters__body { padding: 6px 16px 10px; }
.aw-filters__foot { display: none; } /* desktop: filters apply live, no footer needed */

.aw-fgroup { border: none; margin: 0; padding: 14px 0; border-top: 1px solid var(--line); }
.aw-fgroup:first-child { border-top: none; }
.aw-fgroup legend { padding: 0 0 8px; font: 600 13px var(--font-display); color: var(--navy-900); }

.aw-fopt { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; font-size: 13.5px; color: var(--ink-2); }
.aw-fopt input { width: 16px; height: 16px; accent-color: var(--navy-500); cursor: pointer; flex: 0 0 auto; }
.aw-fopt span:first-of-type { flex: 1 1 auto; }
.aw-fopt__n { color: var(--ink-4); font-size: 12px; font-variant-numeric: tabular-nums; }
.aw-fopt:hover { color: var(--navy-900); }

/* RAM/SSD chips */
.aw-fchips { display: flex; flex-wrap: wrap; gap: 7px; }
.aw-fchip { position: relative; cursor: pointer; }
.aw-fchip input { position: absolute; opacity: 0; pointer-events: none; }
.aw-fchip span {
    display: inline-block; padding: 6px 13px; border: 1px solid var(--line-2); border-radius: 999px;
    font: 600 13px var(--font-sans); color: var(--ink-2); background: var(--paper); transition: .12s;
}
.aw-fchip:hover span { border-color: var(--navy-500); color: var(--navy-700); }
.aw-fchip input:checked + span { background: var(--navy-500); border-color: var(--navy-500); color: #fff; }
.aw-fchip input:focus-visible + span { outline: 2px solid var(--navy-500); outline-offset: 2px; }

/* Price range */
.aw-fgroup--price .aw-price-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
#aw-price-max { width: 100%; accent-color: var(--navy-500); cursor: pointer; }

/* --- Show more + empty state --- */
.aw-more-wrap { text-align: center; margin-top: 26px; }
.aw-more-btn {
    padding: 12px 26px; border: 1px solid var(--navy-500); border-radius: 12px;
    background: var(--paper); color: var(--navy-600); font: 600 14px var(--font-sans); cursor: pointer;
}
.aw-more-btn:hover { background: var(--navy-50); }
#aw-no-results { text-align: center; padding: 40px 16px; color: var(--ink-3); }
#aw-no-results .reset-link { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; cursor: pointer; border: none; background: none; color: var(--navy-500); font: 600 14px var(--font-sans); }

.aw-filters__backdrop { display: none; }

/* ============================================================
   MOBILE / TABLET — filters collapse into a slide-in drawer
   ============================================================ */
@media (max-width: 900px) {
    .aw-shop-layout { grid-template-columns: 1fr; gap: 0; }
    .aw-fbtn { display: inline-flex; }

    .aw-filters {
        position: fixed; top: 0; left: 0; bottom: 0; z-index: 1001;
        width: min(86vw, 360px); border-radius: 0; border: none;
        transform: translateX(-100%); transition: transform .25s ease;
        display: flex; flex-direction: column; box-shadow: var(--shadow-3);
    }
    .aw-filters.is-open { transform: translateX(0); }
    .aw-filters__head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 16px 18px; border-bottom: 1px solid var(--line); flex: 0 0 auto;
    }
    .aw-filters__head strong { font: 700 16px var(--font-display); color: var(--navy-900); }
    .aw-filters__close { border: none; background: none; color: var(--ink-2); cursor: pointer; display: grid; place-items: center; padding: 4px; }
    .aw-filters__body { flex: 1 1 auto; overflow-y: auto; padding: 4px 18px 18px; }
    .aw-filters__foot {
        display: flex; gap: 10px; padding: 14px 18px; border-top: 1px solid var(--line);
        flex: 0 0 auto; background: var(--paper);
    }
    .aw-filters__clear { flex: 0 0 auto; padding: 12px 16px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--paper); color: var(--ink-2); font: 600 13.5px var(--font-sans); cursor: pointer; }
    .aw-filters__apply { flex: 1 1 auto; padding: 12px 16px; border: none; border-radius: 10px; background: var(--navy-500); color: #fff; font: 700 14px var(--font-sans); cursor: pointer; }

    .aw-filters__backdrop {
        display: block; position: fixed; inset: 0; z-index: 1000;
        background: rgba(14,42,71,0.45);
    }
    .aw-filters__backdrop[hidden] { display: none; }
}

/* ════════════════════════════════════════════════════════════════════
   PDP ENRICH — spec chips, condition badge, USP block, prose v2
   Append to atlas-tokens.css. Uses existing tokens (--navy-*, --green,
   --orange, --ink-*, --line). Desktop + mobile. (v3 2026-06-02)
   ════════════════════════════════════════════════════════════════════ */

/* ── Coloured condition badge (A-grade / Zeer goed / etc.) ── */
.aw-pdp-grade {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 11px; border-radius: 999px;
    font-size: 11.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    border: 1px solid transparent; line-height: 1;
}
.aw-pdp-grade .aw-pdp-grade__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.aw-pdp-grade--new  { background: #EAF3FF; color: #1B477F; border-color: #C7DEFA; } /* Nieuw */
.aw-pdp-grade--a    { background: #E9F7EF; color: #157347; border-color: #BFE6CF; } /* Zo goed als nieuw */
.aw-pdp-grade--good { background: #E8F5EE; color: #1F8A52; border-color: #C9EBD5; } /* Zeer goed (A-grade) */
.aw-pdp-grade--ok   { background: #FFF6E9; color: #B45309; border-color: #FBD9A8; } /* Prima */

/* ── Spec highlight chips (CPU / RAM / SSD / scherm) ── */
.aw-pdp-spechighlights {
    list-style: none; margin: 0 0 16px; padding: 0;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
}
.aw-pdp-spechighlights li {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 10px;
    background: #fff; border: 1px solid var(--line, #E6EBF2);
    box-shadow: var(--shadow-1, 0 1px 2px rgba(16,23,38,.05));
}
.aw-pdp-spechighlights .ic {
    flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
    display: grid; place-items: center;
    background: var(--navy-50, #F4F7FB); color: var(--navy-600, #2456A0);
}
.aw-pdp-spechighlights .ic svg { display: block; }
.aw-pdp-spechighlights .txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.aw-pdp-spechighlights .k { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-3, #5B6678); }
.aw-pdp-spechighlights .v { font-size: 13.5px; font-weight: 700; color: var(--ink-1, #0E1726); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── "Waarom deze ...?" mini USP block ── */
.aw-pdp-why {
    margin: 0 0 16px; padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F4F7FB 0%, #EAF1FB 100%);
    border: 1px solid #DCE7F6;
}
.aw-pdp-why__title {
    display: flex; align-items: center; gap: 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px; font-weight: 700; color: var(--navy-900, #0E2A47);
    margin: 0 0 9px;
}
.aw-pdp-why__title svg { color: var(--navy-600, #2456A0); }
.aw-pdp-why__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.aw-pdp-why__list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.4; color: var(--ink-2, #2A3648); }
.aw-pdp-why__list li svg { flex: 0 0 auto; color: var(--green, #1F8A52); margin-top: 2px; }
.aw-pdp-why__list strong { color: var(--ink-1, #0E1726); font-weight: 700; }

/* ════ Description tab v2 — richer prose + accent headers ════ */
.aw-pdp-prose { max-width: 760px; }
.aw-pdp-prose h3 {
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 6px; margin: 22px 0 12px;
    border-bottom: 2px solid var(--navy-50, #F4F7FB);
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px; font-weight: 700; color: var(--navy-900, #0E2A47);
}
.aw-pdp-prose h3::before {
    content: ""; width: 4px; height: 18px; border-radius: 3px;
    background: var(--navy-500, #2E80FF); flex: 0 0 auto;
}
.aw-pdp-prose p { margin: 0 0 12px; line-height: 1.65; color: var(--ink-2, #2A3648); }
.aw-pdp-prose ul { margin: 0 0 14px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.aw-pdp-prose ul li {
    position: relative; padding-left: 26px; line-height: 1.5; color: var(--ink-2, #2A3648);
}
.aw-pdp-prose ul li::before {
    content: ""; position: absolute; left: 0; top: 3px;
    width: 17px; height: 17px; border-radius: 50%;
    background: var(--navy-50, #F4F7FB) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F8A52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12 5 5 11-12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ════ Spec table v2 — zebra rows, accent first column ════ */
.aw-pdp-spec-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    border: 1px solid var(--line, #E6EBF2); border-radius: 12px; overflow: hidden;
    font-size: 14px;
}
.aw-pdp-spec-table tr:nth-child(even) td,
.aw-pdp-spec-table tr:nth-child(even) th { background: var(--navy-50, #F7F9FC); }
.aw-pdp-spec-table th {
    text-align: left; font-weight: 700; color: var(--navy-900, #0E2A47);
    width: 42%; padding: 11px 14px; vertical-align: top;
    border-right: 1px solid var(--line, #E6EBF2);
}
.aw-pdp-spec-table td { padding: 11px 14px; color: var(--ink-2, #2A3648); vertical-align: top; }
.aw-pdp-spec-table tr:not(:last-child) th,
.aw-pdp-spec-table tr:not(:last-child) td { border-bottom: 1px solid var(--line, #E6EBF2); }

/* ── Mobile ── */
@media (max-width: 600px) {
    .aw-pdp-spechighlights { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
    .aw-pdp-spechighlights li { padding: 8px 10px; }
    .aw-pdp-spechighlights .ic { width: 26px; height: 26px; }
    .aw-pdp-spechighlights .v { font-size: 12.5px; }
    .aw-pdp-why { padding: 12px 13px; }
    .aw-pdp-spec-table th { width: 46%; padding: 9px 11px; }
    .aw-pdp-spec-table td { padding: 9px 11px; }
}
/* ════ END PDP ENRICH ════ */

/* ===== MOBILE FINAL POLISH 2026-06-02 ===== */
@media (max-width: 768px) {
  /* Compare table: swipeable horizontal scroll, sticky first label col */
  .aw-cmp-cols { display:flex !important; overflow-x:auto !important; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; gap:10px; padding-bottom:6px; }
  .aw-cmp-col-w, .aw-cmp-col { flex:0 0 78% !important; max-width:78% !important; scroll-snap-align:start; }
  .aw-cmp { overflow:visible !important; }
  .aw-cmp-cell { min-height:auto; }

  /* Filter UI touch targets + drawer comfort */
  .aw-filter-open, .aw-filter-apply, .aw-filter-clear, .aw-filter-close { min-height:44px !important; padding:11px 16px !important; display:inline-flex; align-items:center; justify-content:center; }
  .aw-filters label, .aw-filters .aw-filter-opt { min-height:40px; display:flex; align-items:center; gap:8px; }
  .aw-filters input[type=checkbox], .aw-filters input[type=radio] { width:20px; height:20px; }
  .aw-filter-form select, .aw-filter-form input[type=number] { min-height:44px; font-size:16px; }

  /* AI bot: consistent size, above WhatsApp, never over header */
  #aw-bot-wrap { z-index:2147483646 !important; }
  #aw-bot-toggle { width:54px !important; height:54px !important; }

  /* Header action icons comfortable tap */
  .top .icon-btn, .top-actions a, .top-actions button { min-width:40px; min-height:40px; }

  /* Breadcrumb + small links: a touch bigger */
  .crumbs a { padding:2px 0; }

  /* Category chip row: bigger tap on the assortiment filter chips */
  .aw-catchip, .aw-cat-pill, .cat-chip { min-height:40px; }
}
/* Compare card "Vergelijk" checkbox on product cards: bigger hit area */
.aw-cmp-btn, label.aw-cmp-add { cursor:pointer; }
/* ===== END MOBILE FINAL POLISH ===== */

/* ===== HELP-KIEZEN + BAND FIX 2026-06-02 ===== */
/* Help mij kiezen labels were invisible: text lives in <strong>/<em> with dark colours on the dark band */
.aw-helper-section .aw-helper__lbl,
.aw-helper-section .aw-helper__lbl strong { color:#fff !important; }
.aw-helper-section .aw-helper__lbl em { color:rgba(255,255,255,.7) !important; }
.aw-helper-section .aw-helper__ic { background:rgba(255,255,255,.12) !important; }
.aw-helper-section .aw-helper__ic svg { color:#fff !important; opacity:1 !important; }
.aw-helper-section .aw-helper__opt { background:rgba(255,255,255,.06) !important; border-color:rgba(255,255,255,.18) !important; }

/* Kill the big empty band between page hero and content on shop/cart/checkout/compare */
.aw--cart .sec, .aw--checkout .sec, .woocommerce-cart .sec, .woocommerce-checkout .sec { padding-top:24px !important; }
.aw--cart .woocommerce, .aw--checkout .woocommerce { margin-top:0 !important; }
.aw-shop-catbar, .aw-catbar, .aw-catpill-row, .aw-catpills { padding-top:14px !important; padding-bottom:8px !important; margin-top:0 !important; }
.archive .sec:first-of-type, .post-type-archive-product .sec:first-of-type { padding-top:20px !important; }
/* assortiment category pill bar: tighter band + give priority pills room */
.aw-catpill { scroll-snap-align:start; }
/* ===== END HELP-KIEZEN + BAND FIX ===== */

/* CATFILTER BAND TIGHTEN 2026-06-02 — remove the empty gap above the category pills */
.aw-catfilter-section { padding-top:16px !important; padding-bottom:10px !important; }
.aw--cart .page-hero, .aw--checkout .page-hero { padding-bottom:14px !important; }
.aw--cart .sec:first-of-type, .aw--checkout .sec:first-of-type { padding-top:18px !important; }
.woocommerce-cart .woocommerce, .woocommerce-checkout .woocommerce { margin-top:0 !important; padding-top:0 !important; }
/* END CATFILTER BAND TIGHTEN */

/* Hero Flash Deal badge — red, urgent (added 2026-06-02) */
.hv-bigcard__badge--deal { background: #E11D48 !important; color: #fff !important; }
.hv-bigcard__badge--deal .hv-bigcard__badge-eyebrow { color: rgba(255,255,255,.85) !important; }
.hv-bigcard__badge--deal .hv-bigcard__badge-num { color: #fff !important; }
/* ===== HELP-KIEZEN VISIBILITY FIX 2026-06-06 ===== */
/* Fix legend, label, and option text invisible on dark navy background */
.aw-helper-section { background: linear-gradient(135deg, var(--navy-900) 0%, #1a3357 100%) !important; }
.aw-helper-section .aw-helper__step legend { color: rgba(255,255,255,0.85) !important; font-weight: 600 !important; font-size: 16px !important; margin-bottom: 12px !important; }
.aw-helper-section .aw-helper__lbl,
.aw-helper-section .aw-helper__lbl strong,
.aw-helper-section .aw-helper__lbl em { color: #fff !important; }
.aw-helper-section .aw-helper__lbl em { color: rgba(255,255,255,0.72) !important; }
.aw-helper-section .aw-helper__opt { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.15) !important; }
.aw-helper-section .aw-helper__opt:hover,
.aw-helper-section .aw-helper__opt:has(input:checked) { background: rgba(59,130,246,0.35) !important; border-color: #3B82F6 !important; }
.aw-helper-section .aw-helper__ic { background: rgba(255,255,255,0.12) !important; color: #fff !important; }
.aw-helper-section .aw-helper__ic svg { color: #fff !important; opacity: 1 !important; }
.aw-helper-section .aw-helper__progress .aw-helper__dot { background: rgba(255,255,255,0.25) !important; }
.aw-helper-section .aw-helper__progress .aw-helper__dot.is-active,
.aw-helper-section .aw-helper__progress .aw-helper__dot.is-done { background: #fff !important; }
/* ===== END HELP-KIEZEN FIX ===== */

/* ===== PHASE 1 VISIBILITY FIXES — 2026-06-06 ===== */
/* Fix 1: Help-kiezen submit button — guaranteed visible on dark band */
#aw-helper-submit { background: #3B82F6 !important; color: #fff !important; border: none !important; font-weight: 700 !important; padding: 14px 24px !important; }
#aw-helper-back { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.3) !important; color: #fff !important; }
#aw-helper-back:hover { background: rgba(255,255,255,0.2) !important; }
.aw-helper__step legend { color: rgba(255,255,255,0.9) !important; }

/* Fix 2: Customer switch — remove dead zone. Mobile: always show inline */

/* Fix 3: Bot widget — single source of truth for positioning */
#aw-bot-wrap { bottom: 150px !important; right: 18px !important; left: auto !important; z-index: 2147483646 !important; }
#aw-bot-panel { bottom: 76px !important; right: 0 !important; left: auto !important; width: 300px; max-height: 400px; }
@media (max-width: 680px) {
  #aw-bot-wrap { bottom: 128px !important; right: 12px !important; }
  #aw-bot-toggle { width: 52px !important; height: 52px !important; }
  #aw-bot-toggle svg { width: 38px !important; height: 38px !important; }
  #aw-bot-panel { width: calc(100vw - 24px) !important; right: 0 !important; max-height: 60vh; }
}
@media (max-width: 480px) {
  #aw-bot-wrap { bottom: 140px !important; right: 12px !important; }
}

/* Fix 4: Mobile nav labels — minimum 12.5px for legibility */
@media (max-width: 720px) {
  .aw-mobnav__item { font-size: 12.5px !important; }
  .aw-mobnav__lbl { font-size: 11.5px !important; line-height: 1.1 !important; }
  .aw-mobnav__badge { font-size: 10.5px !important; }
}

/* ===== PHASE 2: CONDITION GRADE COLORS ===== */
/* A-grade — pristine / like new (green) */
.aw-condition--a { background: #E9F7EF; color: #157347; border: 1px solid #BFE6CF; }
/* B-grade — very good (blue-tinted, same as current "good") */
.aw-condition--good { background: #E8F5EE; color: #1F8A52; border: 1px solid #C9EBD5; }
/* C-grade — good / visible wear (amber) */
.aw-condition--ok { background: #FFF6E9; color: #B45309; border: 1px solid #FBD9A8; }
/* New — software / unopened (blue) */
.aw-condition--new { background: #EAF3FF; color: #1B477F; border: 1px solid #C7DEFA; }
/* Generic cond badge */
.cond {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  line-height: 1; letter-spacing: 0.01em;
}
.aw-condition--good .cond-stars,
.aw-condition--a .cond-stars,
.aw-condition--ok .cond-stars { font-size: 10px; letter-spacing: -1px; opacity: 0.8; }


/* ============================================================
   PHASE 3-5: MOBILE POLISH + BOT CONSOLIDATION + HELP-KIEZEN UX
   2026-06-06 — final consolidated block
   ============================================================ */

/* ─── 3a. Promo bar: horizontal scroll instead of clip ─── */
@media (max-width: 640px) {
  .promo-inner { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
  .promo-strip { flex-wrap: nowrap !important; white-space: nowrap !important; }
  .promo-strip span { flex: 0 0 auto !important; white-space: nowrap !important; }
}

/* ─── 3b. Safe-area for all floating elements ─── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .atlas-cta-stack { padding-bottom: env(safe-area-inset-bottom) !important; }
  #aw-bot-wrap { padding-bottom: env(safe-area-inset-bottom) !important; }
  .aw-mobnav { padding-bottom: calc(6px + env(safe-area-inset-bottom)) !important; }
}

/* ─── 3c. Tap targets: 44px minimum on all interactive elements ─── */
@media (max-width: 768px) {
  .aw-mobnav__item { min-height: 48px !important; min-width: 48px !important; }
  .icon-btn { min-width: 44px !important; min-height: 44px !important; }
  a.aw-ldt-card { min-height: 44px !important; display: flex !important; flex-direction: column !important; }
  .faq-q { min-height: 48px !important; padding: 12px 14px !important; }
  .chip, button.chip, a.chip { min-height: 44px !important; padding: 8px 14px !important; }
  .cr-page-numbers, a.page-numbers { min-width: 44px !important; min-height: 44px !important; }
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="search"], input[type="password"], textarea, select { font-size: 16px !important; }
}

/* ─── 4. BOT WIDGET — single consolidated block (replaces scattered rules) ─── */
#aw-bot-wrap {
  position: fixed !important;
  bottom: 150px !important;
  right: 18px !important;
  left: auto !important;
  z-index: 2147483646 !important;
}
#aw-bot-toggle {
  width: 56px !important; height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5491 100%) !important;
  box-shadow: 0 4px 16px rgba(14,42,71,.25) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  cursor: pointer !important; border: none !important;
}
#aw-bot-toggle svg { width: 42px !important; height: 42px !important; }
#aw-bot-panel {
  position: absolute !important;
  bottom: 72px !important; right: 0 !important; left: auto !important;
  width: 300px; max-height: 420px;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(14,42,71,.18) !important;
  overflow: hidden !important;
  opacity: 0; transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
#aw-bot-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#aw-bot-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5491 100%);
  color: #fff; font-weight: 700; font-size: 14px;
}

/* Bot on mobile: full-width panel that does not overlap notch */
@media (max-width: 680px) {
  #aw-bot-wrap { bottom: 128px !important; right: 12px !important; }
  #aw-bot-toggle { width: 48px !important; height: 48px !important; }
  #aw-bot-toggle svg { width: 34px !important; height: 34px !important; }
  #aw-bot-panel { width: calc(100vw - 24px) !important; max-height: min(60vh, 440px); right: 0 !important; }
}
@media (max-width: 480px) {
  #aw-bot-wrap { bottom: 140px !important; right: 10px !important; }
}

/* ─── 5. HELP-KIEZEN UX POLISH ─── */
.aw-helper__step legend {
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 18px !important; font-weight: 700 !important;
  color: #fff !important; margin: 0 0 14px !important;
}
.aw-helper__progress { display: flex; justify-content: center; gap: 10px; margin: 16px 0 10px; }
.aw-helper__dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: all .2s ease;
}
.aw-helper__dot.is-active { background: #fff; transform: scale(1.3); }
.aw-helper__dot.is-done { background: #4EE599; }
.aw-helper__step-counter {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 16px; letter-spacing: 0.03em;
}

/* Help-kiezen buttons on dark band */
.aw-helper-section .btn-primary,
#aw-helper-submit {
  background: #3B82F6 !important; color: #fff !important;
  border: none !important; font-weight: 700 !important;
  padding: 14px 24px !important; font-size: 15px !important;
  border-radius: 10px !important; cursor: pointer !important;
  transition: background .15s, transform .15s !important;
}
.aw-helper-section .btn-primary:hover,
#aw-helper-submit:hover { background: #2563EB !important; transform: translateY(-1px); }

.aw-helper-section .btn-ghost,
#aw-helper-back {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
  padding: 12px 20px !important; font-size: 14px !important;
  border-radius: 10px !important; cursor: pointer !important;
  font-weight: 600 !important;
}
.aw-helper-section .btn-ghost:hover,
#aw-helper-back:hover { background: rgba(255,255,255,0.18) !important; }

/* Help-kiezen: selected state glow */
.aw-helper__opt:has(input:checked) {
  background: rgba(59,130,246,0.3) !important;
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15) !important;
}

/* ============================================================
   END PHASE 3-5 BLOCK
   ============================================================ */


/* Phase 8b: Skip-link visible on focus */
.aw-skip:focus {
  position: fixed !important; top: 10px !important; left: 10px !important;
  z-index: 100000 !important; padding: 12px 20px !important;
  background: var(--navy-900) !important; color: #fff !important;
  font-weight: 700 !important; font-size: 15px !important;
  border-radius: 8px !important; text-decoration: none !important;
  clip: auto !important; width: auto !important; height: auto !important;
}

/* Phase 11: Sticky header on scroll */
@media (min-width: 881px) {
  .top { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 1px 0 var(--line); }
  body.admin-bar .top { top: 32px; }
}

/* Phase 18: Trust strip styling */
.aw-trust-strip {
  background: var(--navy-50); padding: 28px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.aw-trust-strip .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  align-items: center; text-align: center;
}
.aw-trust-strip__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2); font-weight: 600;
}
.aw-trust-strip__item svg { color: var(--green); flex-shrink: 0; }
@media (max-width: 640px) {
  .aw-trust-strip .wrap { gap: 18px; flex-direction: column; }
}
/* Fix: remove cream bg from laptop deals + werkplek teasers — match white page */
.aw-laptop-deals-teaser { background: transparent !important; }
/* Fix: pillars section use navy-50 blue tint instead of cream */
.aw-pillars-section { background: var(--navy-50, #F4F7FB) !important; }

/* ============================================================
   HELP-KIEZEN: Comprehensive color fix 2026-06-09
   Forces dark section bg + visible white text on all elements
   regardless of WooCommerce label/button CSS interference
   ============================================================ */
.aw-helper-section {
  background: #0E2A47 !important;
  background: linear-gradient(135deg, #0E2A47 0%, #1a3357 100%) !important;
}
.aw-helper-section .aw-helper__step legend,
.aw-helper-section h2.sec-title,
.aw-helper-section .sec-eyebrow,
.aw-helper-section .sec-sub { color: #fff !important; }
.aw-helper-section .aw-helper__opts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}
.aw-helper-section .aw-helper__opt {
  background: rgba(255,255,255,0.09) !important;
  border: 1.5px solid rgba(255,255,255,0.22) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #ffffff !important;
}
.aw-helper-section .aw-helper__opt:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.4) !important;
}
.aw-helper-section .aw-helper__opt:has(input:checked) {
  background: rgba(59,130,246,0.35) !important;
  border-color: #3B82F6 !important;
}
/* CRITICAL: labels inside options — override WooCommerce label colors */
.aw-helper-section .aw-helper__opt .aw-helper__lbl,
.aw-helper-section .aw-helper__opt .aw-helper__lbl strong,
.aw-helper-section .aw-helper__opt .aw-helper__lbl em,
.aw-helper-section label.aw-helper__opt span,
.aw-helper-section label span,
.aw-helper-section .aw-helper__lbl { color: #ffffff !important; }
.aw-helper-section .aw-helper__ic {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.aw-helper-section .aw-helper__ic svg,
.aw-helper-section .aw-helper__ic svg path,
.aw-helper-section .aw-helper__ic svg rect,
.aw-helper-section .aw-helper__ic svg circle { color: #ffffff !important; fill: #ffffff !important; opacity: 1 !important; }
/* Hide radio button, show nothing extra */
.aw-helper-section .aw-helper__opt input[type=radio] { display: none !important; }

/* ============================================================
   GOBYTES-INSPIRED PRODUCT ENHANCEMENTS — 2026-06-09
   ============================================================ */

/* 1. TRUST ROW — before add to cart */
.aw-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line, #e8edf2);
  border-bottom: 1px solid var(--line, #e8edf2);
  margin: 16px 0 18px;
}
.aw-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #334155;
}
.aw-trust-item svg { color: #3B82F6; flex-shrink: 0; }
.aw-trust-item strong { color: #0f172a; }

/* 2. SPEC HIGHLIGHTS — parsed from title */
.aw-spec-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.aw-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f4f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 13px;
  color: #1e293b;
  font-weight: 500;
}
.aw-spec-item svg { color: #3B82F6; flex-shrink: 0; }

/* 3. IN3 BADGE — single product */
.aw-in3-single {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #166534;
  margin: 10px 0 16px;
}
.aw-in3-single svg { color: #16a34a; }
.aw-in3-single strong { color: #15803d; }

/* 4. CO2 BLOCK */
.aw-co2-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 28px 0;
}
.aw-co2-block__leaf { font-size: 32px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.aw-co2-block__body { flex: 1; }
.aw-co2-block__title { font-weight: 700; font-size: 14px; color: #15803d; margin: 0 0 10px; }
.aw-co2-block__list {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
}
.aw-co2-block__list li { font-size: 13px; color: #166534; }
.aw-co2-block__list li strong { color: #14532d; }
@media (max-width: 600px) {
  .aw-co2-block__list { grid-template-columns: 1fr; }
  .aw-co2-block { flex-direction: column; }
}

/* 5. WAT WORDT ER MEEGELEVERD */
.aw-included-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #f8fafc;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 24px 0;
}
@media (max-width: 640px) { .aw-included-block { grid-template-columns: 1fr; } }
.aw-included-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}
.aw-included-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.aw-included-col ul li {
  font-size: 13px;
  color: #334155;
  padding: 3px 0;
}
.aw-wa-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 14px;
  transition: background .15s;
}
.aw-wa-mini:hover { background: #1da850; }

/* 6. PRODUCT FAQ */
.aw-product-faq {
  margin: 32px 0;
  border-top: 2px solid var(--line, #e2e8f0);
  padding-top: 24px;
}
.aw-product-faq__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
}
.aw-faq-item {
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.aw-faq-item[open] { border-color: #3B82F6; }
.aw-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: #fff;
  transition: background .12s;
}
.aw-faq-q:hover { background: #f8fafc; }
.aw-faq-item[open] .aw-faq-q { background: #eff6ff; color: #1d4ed8; }
.aw-faq-q::-webkit-details-marker { display: none; }
.aw-faq-q::after { content: '+'; font-size: 18px; font-weight: 400; color: #64748b; flex-shrink: 0; margin-left: 12px; }
.aw-faq-item[open] .aw-faq-q::after { content: '\2212'; color: #3B82F6; }
.aw-faq-a {
  padding: 4px 18px 16px;
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  background: #fff;
}

/* 7. PRODUCT CARD BADGES */
.aw-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 4px;
}
.aw-badge {
  display: inline-block;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.6;
}
.aw-badge--grade {
  background: #dbeafe;
  color: #1d4ed8;
}
.aw-badge--warranty {
  background: #dcfce7;
  color: #166534;
}

/* 8. IN3 BADGE on product cards */
.aw-in3-badge {
  font-size: 12px;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 6px;
  display: inline-block;
}
.aw-in3-badge strong { color: #15803d; }

/* ============================================================ */

/* ============================================================
   KEUZEHULP WIZARD — /keuzehulp/
   appended to atlas-tokens.css
   ============================================================ */

/* ── Section wrapper ── */
.aw-kh-section { padding-block: 40px 56px; }

/* ── Progress bar ── */
.aw-kh-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    padding: 0 8px;
}
.aw-kh-progress__line {
    position: absolute;
    top: 18px;
    left: calc(8px + 18px);
    right: calc(8px + 18px);
    height: 2px;
    background: var(--line);
    z-index: 0;
}
.aw-kh-progress__fill {
    height: 100%;
    background: var(--navy-500);
    transition: width .4s ease;
    width: 0%;
}
.aw-kh-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    flex: 1;
}
.aw-kh-progress__bubble {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--line-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-3);
    transition: background .25s, border-color .25s, color .25s;
}
.aw-kh-progress__step.is-active .aw-kh-progress__bubble {
    background: var(--navy-500);
    border-color: var(--navy-500);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(46,128,255,0.15);
}
.aw-kh-progress__step.is-done .aw-kh-progress__bubble {
    background: #dbeafe;
    border-color: var(--navy-500);
    color: var(--navy-700);
}
.aw-kh-progress__label {
    font-size: 11px;
    color: var(--ink-4);
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
}
.aw-kh-progress__step.is-active .aw-kh-progress__label { color: var(--navy-600); font-weight: 700; }
.aw-kh-progress__step.is-done  .aw-kh-progress__label { color: var(--navy-500); }

/* ── Wizard form card ── */
.aw-kh-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 40px 28px;
    box-shadow: var(--shadow-2);
    max-width: 800px;
    margin-inline: auto;
}
@media (max-width: 600px) {
    .aw-kh-form { padding: 24px 18px 20px; }
}

/* ── Steps ── */
.aw-kh-step { display: none; border: none; padding: 0; margin: 0; }
.aw-kh-step.is-active { display: block; }
.aw-kh-step legend {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-1);
    margin-bottom: 24px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.aw-kh-step__num {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-500);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.aw-kh-hint {
    font-size: 14px;
    color: var(--ink-3);
    margin: -12px 0 16px;
}

/* ── Option grid — use case ── */
.aw-kh-opts {
    display: grid;
    gap: 12px;
}
.aw-kh-opts--2col { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* ── Generic card option ── */
.aw-kh-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 2px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
    background: var(--cream);
    -webkit-user-select: none;
    user-select: none;
}
.aw-kh-opt input { position: absolute; opacity: 0; pointer-events: none; }
.aw-kh-opt:hover { border-color: var(--navy-500); background: #f0f7ff; }
.aw-kh-opt:has(input:checked) {
    border-color: var(--navy-500);
    background: #e8f2ff;
    box-shadow: 0 0 0 3px rgba(46,128,255,0.12);
}
.aw-kh-opt.is-disabled { opacity: .4; pointer-events: none; }

/* Icon tile */
.aw-kh-opt__ic { color: var(--navy-600); flex-shrink: 0; display: flex; }
.aw-kh-opt__ic svg { display: block; }

/* Text */
.aw-kh-opt__lbl { font-size: 14px; line-height: 1.45; }
.aw-kh-opt__lbl strong { display: block; font-weight: 700; color: var(--ink-1); }
.aw-kh-opt__lbl em { font-style: normal; color: var(--ink-3); font-size: 13px; }

/* ── Budget options — larger cards ── */
.aw-kh-opts--budget { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.aw-kh-opt--budget {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    gap: 6px;
}
.aw-kh-opt__price { font-size: 17px; font-weight: 800; color: var(--ink-1); }
.aw-kh-opt__hint  { font-size: 12px; color: var(--ink-3); }

/* ── Screen size options ── */
.aw-kh-opts--screen { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.aw-kh-opt--screen {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 14px;
    gap: 10px;
}
.aw-kh-opt__screen-vis {
    border: 2.5px solid var(--ink-3);
    border-radius: 3px;
    background: var(--pill-bg);
    flex-shrink: 0;
    position: relative;
}
.aw-kh-opt__screen-vis::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink-3);
    border-radius: 2px;
}
.aw-kh-opt__screen-vis--sm  { width: 50px; height: 34px; }
.aw-kh-opt__screen-vis--sm::after  { width: 20px; height: 5px; }
.aw-kh-opt__screen-vis--md  { width: 64px; height: 44px; }
.aw-kh-opt__screen-vis--md::after  { width: 26px; height: 5px; }
.aw-kh-opt__screen-vis--lg  { width: 80px; height: 54px; }
.aw-kh-opt__screen-vis--lg::after  { width: 32px; height: 5px; }
.aw-kh-opt:has(input:checked) .aw-kh-opt__screen-vis { border-color: var(--navy-500); background: #dbeafe; }
.aw-kh-opt:has(input:checked) .aw-kh-opt__screen-vis::after { background: var(--navy-500); }

/* ── Brand options ── */
.aw-kh-opts--brand { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
.aw-kh-opt--brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px 12px;
    gap: 6px;
}
.aw-kh-opt__brand-ic { color: var(--ink-2); display: flex; align-items: center; justify-content: center; height: 28px; }
.aw-kh-opt__brand-name { font-size: 13px; font-weight: 600; color: var(--ink-1); }
.aw-kh-opt__brand-count { font-size: 11px; color: var(--ink-4); background: var(--pill-bg); padding: 1px 7px; border-radius: 20px; }
.aw-kh-opt:has(input:checked) .aw-kh-opt__brand-ic { color: var(--navy-600); }
.aw-kh-skip-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--ink-3);
    cursor: pointer;
}
.aw-kh-skip-label input { accent-color: var(--navy-500); width: 16px; height: 16px; cursor: pointer; }

/* ── Summary step ── */
.aw-kh-summary__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}
.aw-kh-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-size: 14px;
}
.aw-kh-summary__row:not(:last-child) { border-bottom: 1px solid var(--line); }
.aw-kh-summary__label { color: var(--ink-3); font-weight: 500; }
.aw-kh-summary__val   { color: var(--ink-1); font-weight: 700; }
.aw-kh-cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
}
.aw-kh-cta-note svg { color: var(--green); }

/* ── Navigation buttons ── */
.aw-kh-nav {
    display: flex;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.aw-kh-nav__spacer { flex: 1 1 auto; }
.aw-kh-submit { gap: 8px; }

/* ── Validation message ── */
.aw-kh-validation-msg {
    margin-top: 10px;
    font-size: 13px;
    color: #c0392b;
    font-weight: 600;
    animation: aw-kh-shake .35s ease;
}
@keyframes aw-kh-shake {
    0%,100% { transform: translateX(0); }
    25%      { transform: translateX(-6px); }
    75%      { transform: translateX(6px); }
}

/* ── Trust strip ── */
.aw-trust-strip { padding-block: 20px; background: var(--paper); border-top: 1px solid var(--line); }
.aw-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    justify-content: center;
}
.aw-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 500;
}
.aw-trust-list svg { color: var(--green); }

/* ── Responsive ── */
@media (max-width: 480px) {
    .aw-kh-progress__label { display: none; }
    .aw-kh-opts--2col { grid-template-columns: 1fr 1fr; }
    .aw-kh-opts--budget { grid-template-columns: 1fr 1fr; }
    .aw-kh-opts--screen { grid-template-columns: 1fr 1fr; }
    .aw-kh-opts--brand  { grid-template-columns: repeat(3, 1fr); }
    .aw-kh-step legend  { font-size: 17px; }
}

/* Filter chip count badges */
.aw-fchip__n { font-size: 10px; opacity: .6; margin-left: 3px; font-variant-numeric: tabular-nums; vertical-align: super; line-height: 1; }
.aw-fchip input:checked + span .aw-fchip__n { opacity: .8; }


/* ══════════════════════════════════════════════════════════════════
   REFURBISHED GRADEN PAGE  —  /refurbished-graden/
   Classes: .aw-graden-*, .aw-grade-card-*, .aw-screen-sim-*
   Appended to atlas-tokens.css  2026-06-09
   ══════════════════════════════════════════════════════════════════ */

/* ── Layout wrapper ── */
.aw-graden-page {
    --grade-a:      #157347;
    --grade-a-bg:   #E9F7EF;
    --grade-a-bd:   #BFE6CF;
    --grade-b:      #1B5EA8;
    --grade-b-bg:   #EAF2FF;
    --grade-b-bd:   #C3DCFC;
    --grade-c:      #B45309;
    --grade-c-bg:   #FFF6E9;
    --grade-c-bd:   #FBD9A8;
    --grade-new:    #1B477F;
    --grade-new-bg: #EAF3FF;
    --grade-new-bd: #C7DEFA;
}

.aw-graden-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Hero ── */
.aw-graden-hero {
    background: linear-gradient(135deg, #1a2e4a 0%, #1d4480 100%);
    color: #fff;
    padding: 60px 20px 50px;
    text-align: center;
}
.aw-graden-hero h1 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.2;
}
.aw-graden-hero__sub {
    font-size: clamp(14px, 2vw, 17px);
    max-width: 720px;
    margin: 0 auto;
    opacity: .88;
    line-height: 1.6;
}

/* ── Grade cards grid section ── */
.aw-graden-table-section {
    background: #f7f9fb;
    padding: 56px 0 48px;
}
.aw-graden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* ── Individual grade card ── */
.aw-grade-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s, transform .2s;
}
.aw-grade-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.10);
    transform: translateY(-2px);
}

/* Card top badge */
.aw-grade-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}
.aw-grade-card--a   .aw-grade-card__badge { background: var(--grade-a-bg); color: var(--grade-a); border: 1px solid var(--grade-a-bd); }
.aw-grade-card--b   .aw-grade-card__badge { background: var(--grade-b-bg); color: var(--grade-b); border: 1px solid var(--grade-b-bd); }
.aw-grade-card--c   .aw-grade-card__badge { background: var(--grade-c-bg); color: var(--grade-c); border: 1px solid var(--grade-c-bd); }
.aw-grade-card--new .aw-grade-card__badge { background: var(--grade-new-bg); color: var(--grade-new); border: 1px solid var(--grade-new-bd); }

/* Card label */
.aw-grade-card__label {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e4a;
    line-height: 1.2;
}

/* Left accent border per grade */
.aw-grade-card--a   { border-left: 5px solid var(--grade-a); }
.aw-grade-card--b   { border-left: 5px solid var(--grade-b); }
.aw-grade-card--c   { border-left: 5px solid var(--grade-c); }
.aw-grade-card--new { border-left: 5px solid var(--grade-new); }

/* ── Screen simulation visual ── */
.aw-grade-card__visual {
    text-align: center;
    padding: 12px 0 4px;
}
.aw-screen-sim {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 52px;
    border-radius: 6px 6px 4px 4px;
    border: 3px solid #c8d2de;
    background: #eef2f7;
    overflow: visible;
}
/* Screen "glow dot" — a webcam indicator */
.aw-screen-sim__dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9eb3c8;
}
/* Grade A: clean, slight green tint */
.aw-screen-sim--a   { background: linear-gradient(160deg, #f0faf4 0%, #e8f5ee 100%); border-color: var(--grade-a-bd); }
/* Grade B: slight diagonal line (scratch) */
.aw-screen-sim--b   { background: linear-gradient(160deg, #eef5ff 0%, #e3efff 100%); border-color: var(--grade-b-bd); }
/* Grade C: amber tint */
.aw-screen-sim--c   { background: linear-gradient(160deg, #fffaf0 0%, #fef3dc 100%); border-color: var(--grade-c-bd); }
/* New: clean cool white */
.aw-screen-sim--new { background: linear-gradient(160deg, #f5f8ff 0%, #eaf2ff 100%); border-color: var(--grade-new-bd); }

/* Scratch lines drawn with pseudo-elements for B and C */
.aw-screen-sim__scratch {
    position: absolute;
    top: 8px;
    left: 20px;
    width: 40px;
    height: 1.5px;
    background: rgba(100,120,160,.25);
    border-radius: 2px;
    transform: rotate(-18deg);
}
.aw-screen-sim__scratch--2 {
    top: 22px;
    left: 12px;
    width: 30px;
    transform: rotate(10deg);
    background: rgba(100,120,160,.2);
}
.aw-screen-sim__caption {
    margin: 6px 0 0;
    font-size: 11px;
    color: #6b7a8d;
    line-height: 1.3;
}

/* ── Feature list inside card ── */
.aw-grade-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.aw-grade-card__list li {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.aw-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    margin-top: 1px;
}
.aw-check--ok   { background: #d1fae5; color: #065f46; }
.aw-check--warn { background: #fef3c7; color: #92400e; }

/* ── "Ideal for" footer ── */
.aw-grade-card__for {
    font-size: 12.5px;
    color: #4b5563;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: auto;
    line-height: 1.45;
}
.aw-grade-card__for strong { color: #1a2e4a; }

/* ── Info note below cards ── */
.aw-graden-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #eef6ff;
    border: 1px solid #bcd4f8;
    border-radius: 10px;
    padding: 16px 20px;
    color: #1a2e4a;
}
.aw-graden-note svg { flex-shrink: 0; margin-top: 1px; color: #2563eb; }
.aw-graden-note p  { font-size: 14px; line-height: 1.6; margin: 0; }

/* ── Compare table section ── */
.aw-graden-compare {
    padding: 56px 0 40px;
    background: #fff;
}
.aw-graden-compare h2 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 800;
    color: #1a2e4a;
    margin: 0 0 28px;
    text-align: center;
}
.aw-graden-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.aw-graden-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.aw-graden-compare-table th,
.aw-graden-compare-table td {
    padding: 13px 16px;
    text-align: center;
    border-bottom: 1px solid #e8edf2;
    white-space: nowrap;
}
.aw-graden-compare-table th:first-child,
.aw-graden-compare-table td:first-child {
    text-align: left;
    white-space: normal;
    font-weight: 600;
    color: #374151;
    min-width: 160px;
}
.aw-graden-compare-table thead th {
    background: #1a2e4a;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
}
.aw-graden-compare-table thead th:first-child { background: #1a2e4a; }
.aw-graden-compare-table tbody tr:nth-child(even) { background: #f7f9fb; }
.aw-graden-compare-table tbody tr:hover { background: #eef4ff; }

/* Column header accent colours */
.aw-graden-compare-table .aw-col-a   { color: var(--grade-a);   }
.aw-graden-compare-table thead .aw-col-a { background: #1a6640; }
.aw-graden-compare-table .aw-col-b   { color: var(--grade-b);   }
.aw-graden-compare-table thead .aw-col-b { background: #1B5EA8; }
.aw-graden-compare-table .aw-col-c   { color: var(--grade-c);   }
.aw-graden-compare-table thead .aw-col-c { background: #a04b08; }
.aw-graden-compare-table .aw-col-new { color: var(--grade-new); }
.aw-graden-compare-table thead .aw-col-new { background: #163e6a; }

/* Table icons */
.aw-tbl-yes     { color: #15803d; font-size: 16px; font-weight: 800; }
.aw-tbl-partial { color: #b45309; font-size: 16px; }
.aw-tbl-no      { color: #dc2626; font-size: 16px; }

/* ── FAQ section ── */
.aw-graden-faq {
    background: #f7f9fb;
    padding: 56px 0 48px;
}
.aw-graden-faq h2 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 800;
    color: #1a2e4a;
    margin: 0 0 28px;
    text-align: center;
}
.aw-graden-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .15s;
}
.aw-graden-faq-item[open] {
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.aw-graden-faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1a2e4a;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}
.aw-graden-faq-item summary::-webkit-details-marker { display: none; }
.aw-graden-faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #2563eb;
    flex-shrink: 0;
    line-height: 1;
    transition: transform .2s;
}
.aw-graden-faq-item[open] summary::after {
    content: '−';
}
.aw-graden-faq-item summary:hover { background: #f0f6ff; }
.aw-graden-faq-answer {
    padding: 0 20px 18px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.65;
}

/* ── CTA section ── */
.aw-graden-cta {
    background: linear-gradient(135deg, #1a2e4a 0%, #1d4480 100%);
    color: #fff;
    padding: 56px 0 52px;
    text-align: center;
}
.aw-graden-cta h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.aw-graden-cta p {
    font-size: 15px;
    opacity: .88;
    margin: 0 0 28px;
    line-height: 1.6;
}
.aw-graden-cta__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.aw-graden-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: filter .15s, transform .15s;
    cursor: pointer;
}
.aw-graden-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.aw-graden-btn--primary { background: #2563eb; color: #fff; }
.aw-graden-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.aw-graden-btn--outline:hover { background: rgba(255,255,255,.1); }

/* ── Mobile adjustments ── */
@media (max-width: 640px) {
    .aw-graden-hero  { padding: 40px 16px 36px; }
    .aw-graden-grid  { grid-template-columns: 1fr; }
    .aw-graden-compare-table th,
    .aw-graden-compare-table td { padding: 10px 12px; font-size: 13px; }
    .aw-graden-faq-item summary { font-size: 14px; padding: 14px 16px; }
    .aw-graden-cta   { padding: 44px 16px; }
}

/* Price slider compact row */
.aw-price-slider-row { display: flex; justify-content: flex-end; margin: 10px 0 4px; font-size: 13px; color: var(--ink-4); }
#aw-price-max { width: 100%; accent-color: var(--navy-500); }


/* ── Keuzehulp banner (archive) ────────────────────────────────────── */
.aw-kh-bar {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #EFF6FF; border-bottom: 1px solid #BFDBFE;
    padding: 10px 16px; font-size: 14px; color: #1e40af;
    flex-wrap: wrap;
}
.aw-kh-bar__text { color: #374151; }
.aw-kh-bar__btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #2563eb; color: #fff; border-radius: 20px;
    padding: 6px 16px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: background .15s;
    white-space: nowrap;
}
.aw-kh-bar__btn:hover { background: #1d4ed8; color: #fff; }

/* ── Internal links section (archive bottom) ───────────────────────── */
.aw-internal-links { background: #f9fafb; border-top: 1px solid #e5e7eb; padding: 36px 0 28px; }
.aw-il__title { font-size: 16px; font-weight: 700; color: #111827; margin: 0 0 16px; }
.aw-il__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px; margin-bottom: 18px;
}
.aw-il__card {
    display: flex; flex-direction: column; gap: 3px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
    padding: 12px 14px; text-decoration: none;
    transition: border-color .15s, box-shadow .15s;
}
.aw-il__card:hover { border-color: #2563eb; box-shadow: 0 2px 8px rgba(37,99,235,.12); }
.aw-il__card strong { font-size: 13px; font-weight: 600; color: #111827; }
.aw-il__card span { font-size: 12px; color: #6b7280; line-height: 1.4; }
.aw-il__brands { font-size: 13px; color: #6b7280; margin-top: 4px; }
.aw-il__brands a { color: #2563eb; text-decoration: none; font-weight: 500; }
.aw-il__brands a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   PDP Payment badge row — replaces broken SVG img tags
   ═══════════════════════════════════════════════════════════════ */
.aw-pdp__pay {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.aw-pdp__pay-lbl {
  font-size: 12px;
  color: var(--ink-3, #9ca3af);
  white-space: nowrap;
  flex-shrink: 0;
}
.aw-pdp__pay-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.aw-pay-badge {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.5;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #374151;
  white-space: nowrap;
}
/* Subtle brand tints — not full-color blobs */
.aw-pay-badge--ideal   { color: #9e0050; border-color: #f0c6dd; background: #fdf2f8; }
.aw-pay-badge--visa    { color: #1a1f71; border-color: #c7cbf0; background: #f5f5fd; }
.aw-pay-badge--mc      { color: #7b1010; border-color: #f0c4c4; background: #fdf5f5; }
.aw-pay-badge--paypal  { color: #003087; border-color: #c4d4f0; background: #f5f8fd; }
.aw-pay-badge--klarna  { color: #6b3050; border-color: #f0c6dd; background: #fdf2f8; }
.aw-pay-badge--in3     { color: #14673a; border-color: #bbf0d6; background: #f0fdf7; }
