/* ============================================================
   Teppichkontor — Demo-Prototyp „Treppenhaus-Visualisierung“
   Bouclé-310-Produktseite + Visualizer-Modal

   Design-Angleichung an die bestehende Magento-2-Produktseite
   (Theme: Acus/TeppichkontorSASS, Luma-Basis — Referenz:
   page.html im Repo-Root + merged CSS, Stand 01.09.2026):

   - Brand-Grün  #16800d  (Links, Primary-Buttons)
   - Hover       #000     (Primary-Buttons), #333 (Titel/Nav aktiv)
   - Text        #333333, gedämpft #575757/#757575
   - Borders     #d1d1d1 / #e2e2e2, Felder #c2c2c2
   - Grauflächen #f2f2f2 (Sekundär-Buttons), #f0f0f4/#f4f4f4 (Tabs/Flächen)
   - Pflichtfeld *  #e02b27
   - Schrift     FuturaPTWeb (45/55/75, lokal in assets/fonts/)
   - html font-size 62.5% → 1rem = 10px (wie im Theme)
   - Layout      max-width 1100px, Medien 66.6% / Info 33.3%
   - Buttons/Inputs/Modal: border-radius 0 (kein Abrunden im Theme)
   ============================================================ */

/* ---------- Fonts (aus dem Shop übernommen) ---------- */

@font-face {
  font-family: "FuturaPTWeb";
  src: url("fonts/FTN45__W.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FuturaPTWeb";
  src: url("fonts/FTN55__W.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FuturaPTWeb";
  src: url("fonts/FTN75__W.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  --green: #16800d;
  --ink: #333333;
  --ink-strong: #000;
  --muted: #575757;
  --muted-2: #757575;
  --border: #d1d1d1;
  --border-light: #e2e2e2;
  --field-border: #c2c2c2;
  --bg-gray: #f2f2f2;
  --bg-tab: #f0f0f0;
  --tab-ink: #7d7d7d;
  --danger: #e02b27;
  --radius: 0;
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%;          /* wie im Theme: 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "FuturaPTWeb", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green); text-decoration: underline; }

/* ---------- Container (wie .header.content/.page-main) ---------- */

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  width: auto;
}

/* ============================================================
   Buttons (.action.primary / .action.secondary aus dem Theme)
   ============================================================ */

.btn {
  display: inline-block;
  vertical-align: middle;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.42857;
  padding: 7px 15px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  text-decoration: none;
}

.btn:active { box-shadow: inset 0 2px 1px rgba(0, 0, 0, .12); }

.btn:disabled {
  opacity: .5;
  cursor: default;
  pointer-events: none;
}

/* In den Warenkorb — volle Breite, größer (wie .action.tocart) */
.btn--cart {
  width: 100%;
  font-size: 2rem;
  padding: 14px 15px;
  line-height: 24px;
}

/* Sekundär (.action.secondary): grau mit Rahmen */
.btn--secondary {
  background: var(--bg-gray);
  border: 1px solid #cdcdcd;
  color: var(--ink);
}

.btn--secondary:hover {
  background: #e2e2e2;
  border-color: #cdcdcd;
  color: var(--ink);
}

/* Feature-Button unter der Galerie — Primary im Shop-Look */
.btn--feature {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--green);
  text-decoration: underline;
  cursor: pointer;
}

.link-btn:hover { text-decoration: underline; color: var(--green); }

/* ============================================================
   Header (page-header): weiß, Logo links, Warenkorb rechts,
   Nav-Leiste mit Hairlines, uppercase
   ============================================================ */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 0;
}

/* obere Utility-Zeile: Anmelden + Warenkorb rechts */
.panel-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding: 4px 0;
  font-size: 1.3rem;
}

.panel-header a { color: var(--ink); }
.panel-header a:hover { color: var(--green); text-decoration: underline; }

.panel-header .cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.panel-header .cart-link svg { width: 16px; height: 16px; stroke: currentColor; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 0 6px;
}

.logo { flex-shrink: 0; }

.logo img { height: 52px; width: auto; }

.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2em;
  display: inline-block;
  padding: 0;
}

.main-nav a:hover,
.main-nav a.is-active { color: var(--ink); text-decoration: none; }

/* Navigationsleiste mit Hairlines wie im Shop */
.nav-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-bar .wrap { display: flex; }

/* ---------- Breadcrumbs (.breadcrumbs im Theme) ---------- */
/* margin auto: zentriert trotz Kombination mit .wrap (Inhaltsbündig) */

.breadcrumbs { margin: 15px auto; padding: 0; }

.breadcrumbs ol {
  list-style: none none;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  color: var(--muted);
}

.breadcrumbs li { display: inline-block; vertical-align: top; }

.breadcrumbs li + li::before {
  content: "/\00a0\00a0";
  color: var(--muted);
}

.breadcrumbs a { color: var(--ink); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }

/* ============================================================
   Produktlayout (page-layout-1column: media 66.6% | info 33.3%)
   ============================================================ */

.product-main { padding: 0 0 30px; }

.page-title {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  font-size: 3.2rem;
  margin: 0 0 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 66.66%) minmax(0, 33.33%);
  gap: 20px;
  align-items: start;
}

/* ---------- Galerie (ohne Rahmen, wie Fotorama-Bühne) ---------- */

.gallery-main { background: #fff; }

.gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }

.thumb {
  width: 66px;
  height: 66px;
  border: 2px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease;
}

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.thumb.is-active,
.thumb:hover { border-color: var(--green); }

.thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #949494;
  text-align: center;
  background: var(--bg-tab);
  cursor: default;
}

.gallery-feature-slot { margin-top: 18px; }

.feature-note {
  margin: 8px 0 0;
  font-size: 1.3rem;
  color: var(--muted);
}

/* ---------- Buy-Box (product-info-main, keine Karte) ---------- */

.buybox { padding: 0; background: none; border: 0; box-shadow: none; }

.product-title {
  margin: 0 0 6px;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}

.product-tagline {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.4rem;
}

.price-box { margin: 0 0 6px; }

.price { font-size: 2.7rem; font-weight: 700; color: var(--ink); line-height: 1.2; }

.price-unit { font-size: 1.8rem; font-weight: 700; margin-left: 2px; }

.price-demo {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 600;
}

/* "Inkl. 19% Steuern, exkl. Versandkosten" (.price-details) */
.price-taxnote { margin: 0; font-size: 1.6rem; color: var(--ink); }

.price-taxnote a { text-decoration: underline; }

.price-taxnote .sep { margin: 0 2px; }

.price-box-rule { border: 0; border-top: 1px solid var(--border-light); margin: 12px 0 14px; }

/* ---------- Options-Formular (Luma fieldset/field) ---------- */

.options { display: flex; flex-direction: column; gap: 12px; }

.field { display: flex; flex-direction: column; gap: 4px; }

.field label { font-size: 1.4rem; color: var(--ink); font-weight: 400; }

.field .req { color: var(--danger); font-size: 1.6rem; margin-left: 4px; }

select,
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: inherit;
  font-size: 1.4rem;
  padding: 7px 10px;
  height: 38px;
  border: 1px solid var(--field-border);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  width: 100%;
}

textarea { height: auto; min-height: 74px; resize: vertical; line-height: 1.5; }

select:focus, input:focus, textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 3px 1px rgba(22, 128, 13, .35);
}

select:disabled { background: var(--bg-tab); color: #949494; cursor: not-allowed; }

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23575757'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.field-hint { margin: 0; font-size: 1.3rem; color: var(--danger); }

.demo-note {
  font-size: 1.2rem;
  color: var(--tab-ink);
  margin: 2px 0 0;
}

/* Menge + Warenkorb (.box-tocart) */
.cart-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.qty-label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.qty-label + input {
  width: 56px;
  height: 56px;
  text-align: center;
}

.cart-row .btn--cart { flex: 1; min-width: 200px; }

.cart-note { margin: 6px 0 0; font-size: 1.2rem; color: var(--tab-ink); }

/* ============================================================
   Produkt-Detailbereich: Beschreibung + Produktdaten
   (Tab-Leiste im Shop-Look: #f0f0f0, Hairlines, #7d7d7d)
   ============================================================ */

.detail-section { margin-top: 40px; }

.tabs { margin-bottom: 20px; }

.tabs > input { position: absolute; opacity: 0; pointer-events: none; }

.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 0;
}

.tabs-nav label {
  background: var(--bg-tab);
  border: 1px solid var(--border);
  border-bottom: 0;
  color: var(--tab-ink);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 20px;
  padding: 12px 18px;
  cursor: pointer;
}

.tab-panel {
  display: none;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 20px;
  font-size: 1.4rem;
}

#tab-desc:checked ~ .tabs-nav label[for="tab-desc"],
#tab-attrs:checked ~ .tabs-nav label[for="tab-attrs"] {
  background: #fff;
  color: var(--ink);
  position: relative;
}

/* aktive Tab-Kante unten weiß überziehen */
#tab-desc:checked ~ .tabs-nav label[for="tab-desc"]::after,
#tab-attrs:checked ~ .tabs-nav label[for="tab-attrs"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #fff;
}

#tab-desc:checked ~ #panel-desc,
#tab-attrs:checked ~ #panel-attrs { display: block; }

.tab-panel p { margin: 0 0 10px; max-width: 72ch; }
.tab-panel p:last-child { margin-bottom: 0; }

/* Attributliste (.additional-attributes: 2 Spalten,
   Label uppercase rechtsbündig #757575) */
.attributes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

.attributes li {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  padding: 6px 0;
  font-size: 1.4rem;
}

.attributes dt {
  width: 50%;
  text-transform: uppercase;
  text-align: right;
  font-weight: 400;
  color: var(--muted-2);
  padding-right: 5px;
}

.attributes dd { margin: 0; width: 50%; text-align: left; padding-left: 5px; }

/* ============================================================
   Kostenlose Musterbestellung (fieldset-Stil wie im Shop)
   ============================================================ */

.sample-order { margin-top: 40px; max-width: 640px; }

.sample-title { font-size: 1.8rem; font-weight: 700; color: var(--ink); margin: 0 0 14px; }

.sample-visualizer-hint {
  margin: 0 0 16px;
  font-size: 1.4rem;
  color: var(--ink);
}

.sample-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.field--full { grid-column: 1 / -1; }

.checkbox {
  display: flex;
  gap: 8px;
  font-size: 1.2rem;
  color: var(--muted);
  align-items: flex-start;
}

.checkbox input { margin-top: 3px; flex-shrink: 0; }

.sample-form .btn { margin-top: 4px; }

/* ============================================================
   FAQ (Feature-Texte) — aufgeklappte Flächen im Shop-Stil
   ============================================================ */

.faq { margin-top: 40px; }

.faq h2, .detail-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 1.4rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  margin-bottom: 8px;
  padding: 12px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 26px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 0;
  font-size: 2rem;
  color: var(--green);
  transition: transform .2s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p { margin: 10px 0 2px; font-size: 1.4rem; color: var(--muted); }

/* ============================================================
   Footer (.footer.content: Hairline oben, flex, grüne Links)
   ============================================================ */

.site-footer { margin-top: auto; }

.footer-inner {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.footer-col { line-height: 1.6; }

.footer-col p { margin: 0 0 10px; }

.footer-col ul { margin: 0; padding: 0; list-style: none none; }

.footer-col li { margin-top: 5px; }

.footer-col .links { font-size: 1.8rem; }

.footer-col a:hover { text-decoration: underline; }

.footer-demo {
  width: 100%;
  color: var(--tab-ink);
  font-size: 1.2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: 6px;
}

/* ============================================================
   Visualizer-Modal (im Shop-Look: weiß, radius 0, Hairlines,
   Overlay wie Magento modal-popup)
   ============================================================ */

.vz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 1000;
  animation: vz-fade .22s ease;
}

.vz-overlay[hidden] { display: none; }

@keyframes vz-fade { from { opacity: 0; } to { opacity: 1; } }

.vz-modal {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  max-width: 880px;
  width: 100%;
  max-height: min(92vh, 900px);
  overflow-y: auto;
  padding: 26px 30px 24px;
  position: relative;
  box-shadow: 0 3px 30px rgba(0, 0, 0, .35);
  animation: vz-rise .25s ease;
}

@keyframes vz-rise { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }

.vz-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 6px 10px;
  transition: color .15s ease;
}

.vz-close:hover { color: var(--ink); }

.vz-title {
  margin: 0 0 8px;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
}

.vz-intro { margin: 0 0 18px; color: var(--muted); font-size: 1.4rem; }

.vz-instructions { font-size: 1.4rem; color: var(--muted); }

.vz-dropzone {
  margin: 14px 0 10px;
  border: 2px dashed var(--border);
  border-radius: 0;
  background: #fff;
  padding: 34px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.vz-dropzone:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.vz-dropzone:hover, .vz-dropzone:focus-visible {
  border-color: var(--green);
  background: #f4faf3;
}

.vz-dropzone.is-dragover {
  border-color: var(--green);
  background: #f4faf3;
}

.vz-dropzone svg { color: var(--green); }

.vz-dropzone-btn {
  display: inline-block;
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.42857;
  padding: 7px 15px;
  text-transform: uppercase;
  pointer-events: none;
}

.vz-dropzone-drag { font-size: 1.3rem; color: var(--muted); }

.vz-formats { font-size: 1.2rem; color: var(--muted); margin: 0 0 14px; }

/* Fehler (.message.error-Stil des Shops) */
.vz-error {
  background: #fae5e5;
  border: 1px solid var(--danger);
  border-radius: 0;
  padding: 12px 16px;
  margin-top: 14px;
}

.vz-error strong { color: var(--danger); }

.vz-error p { margin: 4px 0 0; font-size: 1.4rem; }

.vz-error--big { margin-top: 0; padding: 16px 18px; }

.vz-error--big strong { font-size: 1.6rem; }

/* ---------- Phasen ---------- */

.vz-phases { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.vz-phase {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  color: #949494;
  transition: color .25s ease;
}

.vz-phase.is-active, .vz-phase.is-done { color: var(--ink); }

.vz-phase-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  position: relative;
}

.vz-phase.is-active .vz-phase-marker {
  border-color: var(--green);
  background: var(--green);
  animation: vz-pulse 1.4s ease-in-out infinite;
}

.vz-phase.is-done .vz-phase-marker {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 128, 13, .15);
}

@keyframes vz-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 128, 13, .35); }
  50% { box-shadow: 0 0 0 7px rgba(22, 128, 13, 0); }
}

.vz-phase-label { font-size: 1.5rem; }

.vz-phase-detail { font-size: 1.3rem; color: var(--muted); }

.vz-progress-bar {
  height: 6px;
  border-radius: 0;
  background: var(--bg-gray);
  overflow: hidden;
  margin-top: 16px;
}

.vz-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green);
  transition: width .35s ease;
}

.vz-phase-hint { font-size: 1.3rem; color: var(--muted); margin: 14px 0 0; }

/* ---------- Ergebnis ---------- */

.vz-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vz-panel { margin: 0; }

.vz-panel figcaption {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--muted);
}

.vz-imgwrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  background: #f4f4f4;
}

.vz-imgwrap img { width: 100%; height: 100%; object-fit: contain; min-height: 180px; max-height: 46vh; }

.vz-ai-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(51, 51, 51, .85);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: .3px;
  padding: 4px 8px;
  border-radius: 0;
}

.vz-ai-notice {
  font-size: 1.3rem;
  color: var(--muted);
  border-left: 3px solid var(--green);
  padding-left: 10px;
  margin: 14px 0 6px;
}

.vz-privacy { font-size: 1.3rem; color: var(--muted); margin: 0 0 16px; }

.vz-result-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.vz-result-cta {
  font-size: 1.4rem;
  color: var(--muted);
  border-top: 1px solid var(--border-light);
  margin: 16px 0 0;
  padding-top: 12px;
}

/* ---------- Responsive (Breakpoints wie im Shop: 768/1024) ---------- */

@media (max-width: 767px) {
  .product-grid { grid-template-columns: 1fr; }
  .vz-before-after { grid-template-columns: 1fr; }
  .main-nav { order: 3; width: 100%; padding-bottom: 6px; }
  .header-inner { flex-wrap: wrap; }
  .footer-col .links { font-size: 1.6rem; }
}

@media (max-width: 640px) {
  .vz-modal { padding: 22px 16px; }
  .sample-form { grid-template-columns: 1fr; }
  .attributes { grid-template-columns: 1fr; }
  .vz-result-actions { flex-direction: column; }
  .vz-result-actions .btn { width: 100%; justify-content: center; }
  .cart-row { flex-direction: column; align-items: stretch; }
  .qty-label + input { width: 100%; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vz-overlay, .vz-modal { animation: none; }
  .vz-phase.is-active .vz-phase-marker { animation: none; }
  .btn, .vz-dropzone, .vz-close { transition: none; }
}