:root {
  --ink: #0a0a0f;
  --paper: #f8f7f4;
  --blue: #FF6B00;
  --blue-light: #fff0e5;
  --mid: #6b6b78;
  --border: #e2e1de;
  --success: #00b87a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at center, rgba(255,255,255,0.82) 30%, transparent 80%),
    url('fotos/achtergrond.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 2.5rem; border-bottom: 1.5px solid var(--border); background: rgba(248,247,244,0.92); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); }
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -0.03em; color: var(--ink); text-decoration: none; cursor: pointer; }
.logo span { color: var(--blue); }
nav .btn-nav { background: var(--blue); color: #fff; border: none; border-radius: 10px; padding: 0.6rem 1.4rem; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.9rem; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
nav .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.25); }

/* PAGES */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* HERO */
.hero { padding: 3rem 2.5rem 4rem; max-width: 700px; margin: 0 auto; text-align: center; }
.hero-logo { width: 420px; max-width: 90%; margin: 0 auto 1.5rem; display: block; animation: fadeIn 0.5s ease; }
.badge { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 99px; margin-bottom: 1.6rem; }
.hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { color: var(--mid); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-primary { background: var(--blue); color: #fff; border: none; border-radius: 14px; padding: 1rem 2.4rem; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,0,0.28); }

/* STEP CARDS (homepage) */
.steps { display: flex; gap: 1rem; max-width: 900px; margin: 0 auto; padding: 0 2.5rem 4rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; background: #fff; border: 1.5px solid var(--border); border-radius: 18px; padding: 2rem 1.6rem; cursor: pointer; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.step:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255,107,0,0.10); }
.step.active-step { border-color: var(--blue); background: var(--blue-light); }
.step-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--blue-light); line-height: 1; margin-bottom: 0.8rem; }
.step.active-step .step-num { color: var(--blue); opacity: 0.3; }
.step-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.step h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.step p { color: var(--mid); font-size: 0.85rem; line-height: 1.5; }

/* PRICE PANELS (homepage) */
.step-panel { display: none; max-width: 900px; margin: -1rem auto 0; padding: 0 2.5rem 4rem; }
.step-panel.open { display: block; animation: fadeIn 0.25s ease; }

/* SECTION WRAPPER */
.price-wrap { max-width: 900px; margin: 0 auto; padding: 0 2.5rem 5rem; }
.section-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 0.3rem; }
.section-sub { color: var(--mid); font-size: 0.88rem; margin-bottom: 1.6rem; line-height: 1.5; }

/* PRICE GRID */
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media(max-width:600px) { .price-cols { grid-template-columns: 1fr; } }

/* PRICE CARD */
.pcard { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; }
.pcard-head { background: var(--ink); color: #fff; padding: 0.9rem 1.2rem; }
.pcard-head h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; }
.pcard-head p { font-size: 0.75rem; opacity: 0.6; margin-top: 0.15rem; }
.pcard-body { padding: 0; }
.prow { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.prow:last-child { border-bottom: none; }
.prow:hover { background: var(--blue-light); }
.prow .amount { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--blue); white-space: nowrap; }
.prow .label { color: var(--mid); font-size: 0.78rem; }

/* NOTE BOX */
.note { background: #fff; border: 1.5px solid var(--border); border-left: 4px solid var(--blue); border-radius: 12px; padding: 0.9rem 1.1rem; font-size: 0.82rem; color: var(--mid); line-height: 1.6; margin-top: 0.8rem; }
.note strong { color: var(--ink); }

/* FULL WIDTH TABLE CARD */
.pcard-full { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; overflow-x: auto; margin-bottom: 1rem; }
.pcard-full .pcard-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
table.ptable { width: 100%; border-collapse: collapse; }
table.ptable th { background: #f0f0ee; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); padding: 0.6rem 0.75rem; text-align: right; }
table.ptable th:first-child { text-align: left; }
table.ptable td { padding: 0.6rem 0.75rem; font-size: 0.8rem; border-bottom: 1px solid var(--border); text-align: right; }
table.ptable td:first-child { text-align: left; font-weight: 500; }
table.ptable tr:last-child td { border-bottom: none; }
table.ptable tr:hover td { background: var(--blue-light); }
table.ptable .blu { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--blue); white-space: nowrap; }
.tbl-note { padding: 0.55rem 1rem; font-size: 0.75rem; color: var(--mid); background: #fff; border-top: 1px solid var(--border); }

/* FORMATEN GRID */
.formaten-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
.fcard { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 1.2rem 1rem; text-align: center; transition: border-color 0.15s; }
.fcard:hover { border-color: var(--blue); }
.fcard .ficon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.fcard h5 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.fcard p { color: var(--mid); font-size: 0.72rem; }

/* UPLOAD PAGE */
.page-inner { max-width: 620px; margin: 0 auto; padding: 3.5rem 2rem 5rem; }
.page-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; letter-spacing: -0.04em; margin-bottom: 0.5rem; }
.page-sub { color: var(--mid); margin-bottom: 2.2rem; line-height: 1.6; font-size: 0.95rem; }
.dropzone { border: 2.5px dashed var(--border); border-radius: 20px; padding: 4rem 2rem; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: #fff; }
.dropzone:hover, .dropzone.drag-over { border-color: var(--blue); background: var(--blue-light); }
.drop-icon { font-size: 3rem; margin-bottom: 1rem; }
.dropzone h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.dropzone p { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.2rem; }
.btn-secondary { background: var(--ink); color: #fff; border: none; border-radius: 10px; padding: 0.7rem 1.6rem; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; font-size: 0.9rem; transition: opacity 0.15s; }
.btn-secondary:hover { opacity: 0.8; }
.formats { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.4rem; flex-wrap: wrap; }
.format-tag { background: var(--blue-light); color: var(--blue); font-weight: 600; font-size: 0.78rem; padding: 0.3rem 0.75rem; border-radius: 99px; }
.file-selected { display: none; background: #fff; border: 1.5px solid var(--success); border-radius: 14px; padding: 1rem 1.4rem; margin-top: 1.2rem; align-items: center; gap: 0.8rem; }
.file-selected.show { display: flex; }
.file-selected .file-name { font-weight: 500; flex: 1; }
.file-selected .file-check { color: var(--success); font-size: 1.3rem; }

/* PROGRESS DOTS */
.progress-bar { display: flex; align-items: center; gap: 0.4rem; margin-top: 2.5rem; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.2s, transform 0.2s; }
.dot.active { background: var(--blue); transform: scale(1.3); }
.dot.done { background: var(--success); }

/* BACK BUTTON */
.back-btn { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--mid); font-size: 0.88rem; font-weight: 500; cursor: pointer; background: none; border: none; padding: 0; margin-bottom: 1.5rem; transition: color 0.15s; }
.back-btn:hover { color: var(--blue); }

/* TOAST */
.custom-alert { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px); background: rgba(10,10,15,0.9); color: #fff; padding: 0.9rem 1.2rem; border-radius: 14px; font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem; opacity: 0; pointer-events: none; transition: all 0.35s ease; z-index: 9999; box-shadow: 0 12px 40px rgba(0,0,0,0.25); backdrop-filter: blur(10px); max-width: 340px; }
.custom-alert.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.custom-alert.success { border-left: 4px solid #00b87a; }
.custom-alert.error   { border-left: 4px solid #ff4b4b; }
.custom-alert.info    { border-left: 4px solid #FF6B00; }

/* FORMS */
.form-grid { display: grid; gap: 1rem; }
.field label { display: block; font-weight: 500; font-size: 0.85rem; margin-bottom: 0.4rem; }
.field input { width: 100%; background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 0.85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 1rem; transition: border-color 0.15s; outline: none; color: var(--ink); }
.field input:focus { border-color: var(--blue); }

/* CONFIRM PAGE */
.confirm-page { max-width: 540px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.check-circle { width: 80px; height: 80px; background: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 2rem; animation: pop 0.4s cubic-bezier(0.175,0.885,0.32,1.275); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.confirm-page h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; letter-spacing: -0.04em; margin-bottom: 1rem; }
.confirm-page > p { color: var(--mid); line-height: 1.7; font-size: 1rem; margin-bottom: 2rem; }
.notify-box { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 1.3rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; text-align: left; margin-bottom: 1rem; }
.notify-icon { font-size: 1.8rem; flex-shrink: 0; }
.notify-box h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.notify-box p { font-size: 0.81rem; color: var(--mid); line-height: 1.6; }

/* ADMIN */
.admin-wrap { max-width: 960px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.admin-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; letter-spacing: -0.04em; }
.admin-badge { background: var(--blue); color: #fff; border-radius: 99px; padding: 0.3rem 0.8rem; font-size: 0.78rem; font-weight: 600; }
.orders-table { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
.orders-table th { text-align: left; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); padding: 0 1rem 0.75rem; font-weight: 600; }
.order-row { background: #fff; }
.order-row:hover td { border-color: var(--blue); }
.order-row td { padding: 0.9rem 1rem; font-size: 0.86rem; vertical-align: middle; border-top: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); }
.order-row td:first-child { border-left: 1.5px solid var(--border); border-radius: 12px 0 0 12px; }
.order-row td:last-child { border-right: 1.5px solid var(--border); border-radius: 0 12px 12px 0; }
.status-pill { display: inline-block; padding: 0.22rem 0.65rem; border-radius: 99px; font-size: 0.72rem; font-weight: 600; }
.status-new { background: #fff3cd; color: #856404; }
.status-progress { background: #cfe2ff; color: #084298; }
.status-done { background: #d1e7dd; color: #0a3622; }
.action-btn { border: 1.5px solid var(--border); background: transparent; border-radius: 8px; padding: 0.3rem 0.7rem; font-size: 0.76rem; font-weight: 600; cursor: pointer; transition: background 0.15s, border-color 0.15s; font-family: 'DM Sans', sans-serif; margin-right: 0.3rem; }
.action-btn:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.action-btn.done { background: var(--success); color: #fff; border-color: var(--success); }

/* WIZARD LAYOUT */
.wizard-shell { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; max-width: 1300px; margin: 0 auto; padding: 2.5rem 2rem 6rem; align-items: start; }
.wizard-left { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 2.5rem; }
.wizard-right { position: sticky; top: 80px; }

/* WIZARD STAPPEN BALK */
.wizard-steps-bar { display: flex; align-items: center; margin-bottom: 2.5rem; overflow-x: auto; padding-bottom: 0.5rem; }
.wstep { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; min-width: 72px; cursor: pointer; opacity: 0.4; transition: opacity 0.2s; }
.wstep.active, .wstep.done { opacity: 1; }
.wstep-num { width: 36px; height: 36px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; transition: background 0.2s, color 0.2s; }
.wstep.active .wstep-num { background: var(--blue); color: #fff; }
.wstep.done .wstep-num { background: var(--success); color: #fff; }
.wstep-label { font-size: 0.68rem; text-align: center; color: var(--mid); line-height: 1.3; max-width: 70px; }
.wstep.active .wstep-label { color: var(--blue); font-weight: 600; }
.wstep.done .wstep-label { color: var(--success); }
.wstep-line { height: 2px; flex: 1; min-width: 20px; background: var(--border); margin-bottom: 18px; }

/* WIZARD PANEL */
.wizard-panel { display: none; animation: fadeIn 0.25s ease; }
.wizard-panel.active { display: block; }
.wizard-panel-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 0.4rem; }
.wizard-panel-sub { color: var(--mid); font-size: 0.92rem; margin-bottom: 2rem; line-height: 1.5; }

/* CHIP CARDS */
.cfg-chips.vertical { display: flex; flex-direction: column; gap: 0.75rem; }
.chip-card { display: flex; align-items: center; gap: 1rem; border: 2px solid var(--border); border-radius: 16px; padding: 1rem 1.2rem; cursor: pointer; background: #fff; transition: border-color 0.15s, background 0.15s, transform 0.15s; user-select: none; }
.chip-card:hover { border-color: var(--blue); transform: translateX(4px); }
.chip-card.selected { border-color: var(--blue); background: var(--blue-light); }
.chip-card.chip-multi.selected { border-color: var(--success); background: #f0fdf7; }
.chip-icon { font-size: 1.8rem; flex-shrink: 0; }
.chip-card strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; color: var(--ink); }
.chip-card span { font-size: 0.8rem; color: var(--mid); }

/* SOORT PRIJSTABELLEN */
.soort-tbl { margin-top: 1.25rem; background: var(--paper); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }

/* WIZARD NAVIGATIE */
.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1.5px solid var(--border); }
.btn-wizard-next { background: var(--blue); color: #fff; border: none; border-radius: 14px; padding: 0.9rem 1.8rem; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.btn-wizard-next:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.25); }
.btn-wizard-next.btn-place-order { background: var(--success); }
.btn-wizard-next.btn-place-order:hover { box-shadow: 0 8px 24px rgba(0,184,122,0.3); }
.btn-wizard-back { background: transparent; color: var(--mid); border: 1.5px solid var(--border); border-radius: 14px; padding: 0.9rem 1.4rem; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.9rem; cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.btn-wizard-back:hover { border-color: var(--blue); color: var(--blue); }
.afwerking-none-hint { margin-top: 1rem; font-size: 0.8rem; color: var(--mid); font-style: italic; }

/* AANTAL INVOER */
.qty-control { display: flex; align-items: center; width: fit-content; border: 2px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; }
.qty-btn { width: 46px; height: 46px; border: none; background: transparent; font-size: 1.3rem; cursor: pointer; transition: background 0.15s; font-family: 'Syne', sans-serif; font-weight: 700; }
.qty-btn:hover { background: var(--blue-light); }
.qty-val { width: 80px; text-align: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); height: 46px; outline: none; background: #fff; color: var(--ink); appearance: textfield; -moz-appearance: textfield; }
.qty-val::-webkit-outer-spin-button, .qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }
.cfg-block-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; }

/* PRIJS BOX */
.price-box { background: var(--ink); color: #fff; border-radius: 20px; padding: 2rem 1.6rem; margin-bottom: 1rem; }
.price-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; margin-bottom: 0.3rem; }
.price-amount { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3rem; letter-spacing: -0.05em; margin-bottom: 1.4rem; line-height: 1; transition: all 0.3s; }
.price-breakdown { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.1rem; margin-bottom: 1.2rem; }
.price-row { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.4rem; opacity: 0.65; }
.price-row .val { font-weight: 600; opacity: 1; }
.pbox-note { font-size: 0.7rem; opacity: 0.45; line-height: 1.5; }

/* SAMENVATTING BOX */
.summary-box { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 1.5rem; }
.summary-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.summary-row:last-child { border-bottom: none; }
.sum-label { color: var(--mid); }
.sum-val { font-weight: 600; color: var(--ink); text-align: right; max-width: 60%; }

/* SLIDESHOW */
.slideshow-sectie { max-width: 900px; margin: 0 auto; padding: 0 2.5rem 4rem; }
.slideshow-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.slideshow-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide { min-width: 100%; aspect-ratio: 16/9; background: #111; }
.slide img, .slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; border-radius: 50%; width: 48px; height: 48px; font-size: 1.6rem; cursor: pointer; z-index: 10; transition: background 0.2s, transform 0.2s; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.slide-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slide-btn.prev { left: 1rem; }
.slide-btn.next { right: 1rem; }
.slide-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; }
.slide-dot.active { background: #fff; transform: scale(1.3); }
.slide-video { position: relative; }
.unmute-btn { position: absolute; bottom: 1rem; right: 1rem; background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 99px; padding: 0.5rem 1rem; font-size: 0.82rem; font-weight: 600; cursor: pointer; backdrop-filter: blur(6px); transition: background 0.2s; z-index: 20; }
.unmute-btn:hover { background: rgba(0,0,0,0.85); }
.slide-btn-pause { position: absolute; bottom: 1rem; left: 1rem; background: rgba(255,255,255,0.85); border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 1rem; cursor: pointer; z-index: 10; backdrop-filter: blur(6px); transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.slide-btn-pause:hover { background: #fff; }

/* RESPONSIVE */
@media(max-width: 1100px) {
  .wizard-shell { grid-template-columns: 1fr; }
  .wizard-right { position: relative; top: 0; }
}
@media(max-width: 600px) {
  .wizard-left { padding: 1.5rem; }
  .wizard-panel-title { font-size: 1.3rem; }
  .wstep-label { display: none; }
  nav { padding: 1rem 1.2rem; }
}
.back-btn {
  background: rgba(0, 0, 0, 0.75) !important;
  color: #fff !important;
  border: none !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-btn:hover {
  background: rgba(0, 0, 0, 0.9) !important;
}