/* ==========================================================================
   Kanto Kartenladen – Stylesheet
   Farbwelt: Feuerrot / Blattgrün, Sandpapier-Grund, Dunkelmodus über Tokens.
   Alle Farben stehen als Custom Properties auf :root – ein Wechsel ist
   eine Stelle.
   ========================================================================== */

:root {
    /* Marke */
    --fire: #d63f2f;
    --fire-deep: #a92c1f;
    --leaf: #3f9a54;
    --leaf-deep: #2c7440;
    --gold: #e0a92e;

    /* Grund & Flächen */
    --bg: #f7f3ea;
    --bg-2: #efe8da;
    --surface: #fffdf8;
    --surface-2: #f4efe4;
    --line: #ded4c1;

    /* Text */
    --ink: #241f1b;
    --ink-2: #5c5347;
    --ink-3: #8a7f70;
    --on-brand: #fffaf5;

    /* Form */
    --radius: 14px;
    --radius-s: 9px;
    --shadow: 0 1px 2px rgb(36 31 27 / 6%), 0 8px 24px -12px rgb(36 31 27 / 22%);
    --shadow-lift: 0 2px 4px rgb(36 31 27 / 8%), 0 18px 40px -16px rgb(36 31 27 / 30%);
    --wrap: 1160px;

    /* Fallback für Typfarbe, wird pro Karte überschrieben */
    --type: #a9a49c;
}

@media (prefers-color-scheme: dark) {
    :root {
        --fire: #f0614d;
        --fire-deep: #d63f2f;
        --leaf: #57b96e;
        --leaf-deep: #3f9a54;
        --gold: #edbc4a;

        --bg: #141210;
        --bg-2: #1b1816;
        --surface: #201c19;
        --surface-2: #272220;
        --line: #38312c;

        --ink: #f2ece1;
        --ink-2: #bdb3a5;
        --ink-3: #8d8377;
        --on-brand: #1a1512;

        --shadow: 0 1px 2px rgb(0 0 0 / 40%), 0 10px 28px -14px rgb(0 0 0 / 70%);
        --shadow-lift: 0 2px 6px rgb(0 0 0 / 50%), 0 20px 44px -18px rgb(0 0 0 / 80%);
    }
}

/* ---------------------------------------------------------------- Grundlagen */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        radial-gradient(1200px 500px at 12% -8%, color-mix(in srgb, var(--fire) 9%, transparent), transparent 70%),
        radial-gradient(1000px 460px at 92% 2%, color-mix(in srgb, var(--leaf) 10%, transparent), transparent 70%),
        var(--bg);
    color: var(--ink);
    font: 400 clamp(0.95rem, 0.9rem + 0.2vw, 1.02rem)/1.6
          system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1 0 auto; }

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 1.15rem + 1vw, 1.85rem); font-weight: 750; }
h3 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 1em; }

a { color: var(--fire-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--fire); }

:focus-visible {
    outline: 3px solid var(--leaf);
    outline-offset: 2px;
    border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.skip {
    position: absolute; left: -9999px;
    background: var(--ink); color: var(--bg);
    padding: 0.6rem 1rem; border-radius: 0 0 var(--radius-s) 0; z-index: 100;
}
.skip:focus { left: 0; top: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.muted { color: var(--ink-2); }
.center { text-align: center; }

/* ------------------------------------------------------------------- Header */

.site-head {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-head__inner {
    display: flex; align-items: center; gap: 1rem;
    min-height: 68px;
    flex-wrap: wrap;
}

.brand {
    display: flex; align-items: center; gap: 0.7rem;
    color: var(--ink); text-decoration: none; margin-right: auto;
}

.brand__ball {
    width: 30px; height: 30px; border-radius: 50%; flex: none;
    background:
        linear-gradient(to bottom, var(--fire) 0 47%, var(--ink) 47% 53%, var(--surface) 53% 100%);
    border: 2px solid var(--ink);
    position: relative;
    box-shadow: var(--shadow);
}
.brand__ball::after {
    content: ""; position: absolute; inset: 0; margin: auto;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--surface); border: 2px solid var(--ink);
}

.brand__text { display: grid; }
.brand__text strong { font-size: 1.05rem; letter-spacing: -0.02em; }
.brand__text small { color: var(--ink-3); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.site-nav a {
    color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 0.94rem;
    padding: 0.5rem 0.8rem; border-radius: 999px;
}
.site-nav a:hover { background: var(--surface-2); color: var(--ink); }
.site-nav a.is-active { background: var(--ink); color: var(--bg); }

.nav-merk { display: inline-flex; align-items: center; gap: 0.45rem; }
.nav-merk.has-items { color: var(--fire-deep); }
.badge {
    display: inline-grid; place-items: center;
    min-width: 1.35rem; height: 1.35rem; padding: 0 0.35rem;
    border-radius: 999px; background: var(--line); color: var(--ink);
    font-size: 0.75rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.nav-merk.has-items .badge { background: var(--fire); color: var(--on-brand); }

.nav-burger { display: none; }

@media (max-width: 700px) {
    .nav-burger {
        display: grid; gap: 4px; cursor: pointer;
        padding: 0.6rem; border: 1px solid var(--line); border-radius: var(--radius-s);
        background: var(--surface);
    }
    .nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
    .site-nav { display: none; width: 100%; padding-bottom: 0.8rem; }
    .nav-toggle:checked ~ .site-nav { display: flex; }
}

/* --------------------------------------------------------------------- Hero */

.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.hero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; } }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--leaf-deep);
    background: color-mix(in srgb, var(--leaf) 14%, transparent);
    padding: 0.35rem 0.8rem; border-radius: 999px; margin-bottom: 1.1rem;
}

.hero h1 .flame { color: var(--fire); }
.hero h1 .leaf { color: var(--leaf); }
.hero__lead { font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.2rem); color: var(--ink-2); max-width: 44ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

.hero__facts { display: flex; gap: 1.8rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__facts div { display: grid; }
.hero__facts b { font-size: 1.5rem; letter-spacing: -0.02em; }
.hero__facts span { color: var(--ink-3); font-size: 0.82rem; }

/* Fächer aus drei Kartenrücken */
.fan { display: grid; place-items: center; min-height: 320px; }
.fan__stack { position: relative; width: min(100%, 380px); aspect-ratio: 4 / 3; }
.fan__card {
    position: absolute; inset: 0; margin: auto;
    width: 46%; aspect-ratio: 63 / 88;
    border-radius: 12px; border: 3px solid var(--surface);
    box-shadow: var(--shadow-lift);
    background: linear-gradient(150deg, var(--c1), var(--c2));
    display: grid; place-items: center;
    transition: transform 0.35s ease;
}
.fan__card::after {
    content: ""; width: 42%; aspect-ratio: 1; border-radius: 50%;
    background: rgb(255 255 255 / 22%);
    box-shadow: inset 0 0 0 6px rgb(255 255 255 / 18%);
}
.fan__card:nth-child(1) { --c1: var(--leaf); --c2: var(--leaf-deep); transform: rotate(-16deg) translate(-38%, 4%); }
.fan__card:nth-child(2) { --c1: var(--gold); --c2: #c98a1c; transform: rotate(2deg) translateY(-4%); z-index: 2; }
.fan__card:nth-child(3) { --c1: var(--fire); --c2: var(--fire-deep); transform: rotate(18deg) translate(38%, 4%); }
.fan__stack:hover .fan__card:nth-child(1) { transform: rotate(-22deg) translate(-46%, 0); }
.fan__stack:hover .fan__card:nth-child(3) { transform: rotate(24deg) translate(46%, 0); }

/* -------------------------------------------------------------------- Button */

.btn {
    --btn-bg: var(--ink);
    --btn-fg: var(--bg);
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.72rem 1.25rem;
    border: 1px solid transparent; border-radius: 999px;
    background: var(--btn-bg); color: var(--btn-fg);
    font: inherit; font-weight: 650; text-decoration: none; cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--fire { --btn-bg: var(--fire); --btn-fg: var(--on-brand); }
.btn--fire:hover { --btn-bg: var(--fire-deep); }
.btn--leaf { --btn-bg: var(--leaf); --btn-fg: var(--on-brand); }
.btn--leaf:hover { --btn-bg: var(--leaf-deep); }
.btn--ghost {
    --btn-bg: transparent; --btn-fg: var(--ink);
    border-color: var(--line); background: var(--surface);
}
.btn--ghost:hover { border-color: var(--ink-3); }
.btn--small { padding: 0.5rem 0.9rem; font-size: 0.86rem; }
.btn--block { width: 100%; }
.btn[aria-pressed="true"] { --btn-bg: color-mix(in srgb, var(--leaf) 18%, var(--surface)); border-color: var(--leaf); }

/* -------------------------------------------------------------- Sektionen */

.section { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem;
}
.section__head p { margin: 0; color: var(--ink-2); }

/* ----------------------------------------------------------------- Set-Karten */

.sets { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.set-card {
    display: grid; gap: 0.4rem; align-content: start;
    padding: 1.3rem;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    color: inherit; text-decoration: none;
    box-shadow: var(--shadow);
    position: relative; overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.set-card::before {
    content: ""; position: absolute; inset: 0 auto 0 0; width: 5px;
    background: linear-gradient(var(--fire), var(--leaf));
}
.set-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); color: inherit; }
.set-card h3 { margin: 0; }
.set-card__meta { color: var(--ink-3); font-size: 0.85rem; }
.set-card p { margin: 0; color: var(--ink-2); font-size: 0.92rem; }
.set-card__count { margin-top: 0.4rem; font-weight: 700; color: var(--leaf-deep); font-size: 0.9rem; }

/* ------------------------------------------------------------------ Karten-Grid */

.grid { display: grid; gap: clamp(0.9rem, 2vw, 1.4rem); grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.tile {
    display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.22s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.tile__link { display: grid; color: inherit; text-decoration: none; flex: 1; }

.tile__media {
    position: relative;
    padding: 1.1rem 1.1rem 0;
    background:
        radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--type) 22%, transparent), transparent 70%);
}
.tile__media img {
    width: 100%; max-width: 200px; margin-inline: auto;
    border-radius: 10px; aspect-ratio: 63 / 88; object-fit: cover;
    box-shadow: 0 6px 18px -8px rgb(0 0 0 / 45%);
}

.tile--holo .tile__media::after {
    content: ""; position: absolute; inset: 1.1rem 1.1rem 0;
    border-radius: 10px; pointer-events: none;
    background: conic-gradient(from 210deg,
        rgb(255 255 255 / 0%) 0deg,
        rgb(255 220 150 / 30%) 60deg,
        rgb(150 220 255 / 26%) 140deg,
        rgb(255 255 255 / 0%) 220deg);
    mix-blend-mode: screen; opacity: 0.75;
}

.tile__flag {
    position: absolute; top: 1.35rem; right: 1.35rem; z-index: 2;
    background: var(--ink); color: var(--bg);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    padding: 0.25rem 0.5rem; border-radius: 6px;
}

.tile__body { padding: 1rem 1.1rem 0.4rem; display: grid; gap: 0.3rem; align-content: start; }
.tile__name { margin: 0; }
.tile__meta { margin: 0; color: var(--ink-3); font-size: 0.82rem; }
.tile__price { margin: 0.5rem 0 0; font-size: 1.18rem; font-weight: 800; letter-spacing: -0.02em; }
.tile__action { padding: 0.4rem 1.1rem 1.1rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.35rem; }
.chip {
    font-size: 0.72rem; font-weight: 650; letter-spacing: 0.02em;
    padding: 0.2rem 0.5rem; border-radius: 6px;
    background: var(--surface-2); color: var(--ink-2); border: 1px solid var(--line);
}
.chip--type {
    background: color-mix(in srgb, var(--type) 20%, var(--surface));
    border-color: color-mix(in srgb, var(--type) 45%, var(--line));
    color: var(--ink);
}

/* ----------------------------------------------------------------- Filter */

.filters {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.1rem; box-shadow: var(--shadow); margin-bottom: 1.6rem;
}
.filters__row { display: grid; gap: 0.8rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.filters__foot {
    display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
    flex-wrap: wrap; margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--line);
}

.field { display: grid; gap: 0.3rem; }
.field > span, .field > label { font-size: 0.78rem; font-weight: 700; color: var(--ink-2); letter-spacing: 0.03em; }

input[type="text"], input[type="email"], input[type="search"], input[type="tel"],
input[type="number"], select, textarea {
    font: inherit; color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line); border-radius: var(--radius-s);
    padding: 0.6rem 0.7rem; width: 100%;
}
select { appearance: none; padding-right: 2rem;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%),
                      linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
    background-position: calc(100% - 16px) 55%, calc(100% - 11px) 55%;
    background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
textarea { min-height: 9rem; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: var(--ink-3); }

.result-count { color: var(--ink-2); font-size: 0.9rem; }
.result-count b { color: var(--ink); }

/* ------------------------------------------------------------- Pagination */

.pager { display: flex; gap: 0.35rem; justify-content: center; align-items: center; margin-top: 2.2rem; flex-wrap: wrap; }
.pager a, .pager span {
    min-width: 2.4rem; padding: 0.5rem 0.7rem; text-align: center;
    border: 1px solid var(--line); border-radius: var(--radius-s);
    background: var(--surface); color: var(--ink-2); text-decoration: none; font-weight: 600;
}
.pager a:hover { border-color: var(--ink-3); color: var(--ink); }
.pager .is-current { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pager .is-disabled { opacity: 0.45; }

/* --------------------------------------------------------------- Detailseite */

.crumbs { font-size: 0.85rem; color: var(--ink-3); padding: 1.4rem 0 0; }
.crumbs a { color: var(--ink-2); }

.detail { display: grid; gap: clamp(1.5rem, 4vw, 3rem); padding: 1.4rem 0 clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 860px) { .detail { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }

.detail__media {
    background: radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--type) 26%, transparent), transparent 70%),
                var(--surface);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow);
    position: sticky; top: 88px;
}
.detail__media img {
    width: 100%; max-width: 340px; margin-inline: auto;
    border-radius: 12px; aspect-ratio: 63 / 88; object-fit: cover;
    box-shadow: 0 14px 34px -14px rgb(0 0 0 / 55%);
}
@media (max-width: 859px) { .detail__media { position: static; } }

.detail__price {
    font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.4rem); font-weight: 850;
    letter-spacing: -0.03em; margin: 0.2rem 0 0.2rem;
}
.detail__stock { color: var(--leaf-deep); font-weight: 650; font-size: 0.92rem; }
.detail__stock--single { color: var(--fire-deep); }

.detail__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 1.4rem 0 1.8rem; }

.specs { border-top: 1px solid var(--line); margin: 0; padding: 0; }
.specs > div {
    display: grid; grid-template-columns: minmax(9rem, 34%) 1fr; gap: 1rem;
    padding: 0.7rem 0; border-bottom: 1px solid var(--line);
}
.specs dt { color: var(--ink-3); font-size: 0.88rem; }
.specs dd { margin: 0; font-weight: 600; }

.notice {
    background: var(--surface-2); border: 1px solid var(--line); border-left: 4px solid var(--leaf);
    border-radius: var(--radius-s); padding: 0.9rem 1rem; color: var(--ink-2); font-size: 0.9rem;
    margin: 1.6rem 0 0;
}
.notice strong { color: var(--ink); }

/* -------------------------------------------------------------------- Formular */

.form-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

.err { color: var(--fire-deep); font-size: 0.84rem; font-weight: 600; }
.field--err input, .field--err textarea { border-color: var(--fire); }

.check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink-2); }
.check input { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; flex: none; accent-color: var(--leaf); }

.flash {
    border-radius: var(--radius-s); padding: 0.85rem 1rem; margin: 1.2rem 0 0;
    font-weight: 600; border: 1px solid var(--line); background: var(--surface);
}
.flash--ok    { border-left: 4px solid var(--leaf); color: var(--leaf-deep); }
.flash--error { border-left: 4px solid var(--fire); color: var(--fire-deep); }
.flash--info  { border-left: 4px solid var(--gold); }

/* ------------------------------------------------------------------ Merkliste */

.merk-list { display: grid; gap: 0.8rem; margin-bottom: 2rem; }
.merk-row {
    display: grid; grid-template-columns: 62px 1fr auto; gap: 1rem; align-items: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 0.8rem;
}
.merk-row img { width: 62px; border-radius: 6px; aspect-ratio: 63 / 88; object-fit: cover; }
.merk-row h3 { margin: 0 0 0.15rem; font-size: 0.98rem; }
.merk-row p { margin: 0; color: var(--ink-3); font-size: 0.82rem; }
.merk-row__price { font-weight: 800; white-space: nowrap; }
.merk-row__remove {
    background: none; border: 0; color: var(--ink-3); cursor: pointer;
    font: inherit; font-size: 0.82rem; text-decoration: underline; padding: 0;
}
.merk-row__remove:hover { color: var(--fire-deep); }

.merk-sum {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
    padding: 1rem 1.1rem; border-radius: var(--radius);
    background: var(--surface-2); border: 1px solid var(--line); margin-bottom: 2rem;
}
.merk-sum b { font-size: 1.3rem; letter-spacing: -0.02em; }

.empty {
    text-align: center; padding: clamp(2.5rem, 8vw, 5rem) 1rem;
    background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius);
}
.empty p { color: var(--ink-2); max-width: 42ch; margin-inline: auto; }

/* ----------------------------------------------------------------- Textseiten */

.prose { max-width: 68ch; padding: clamp(1.5rem, 4vw, 3rem) 0; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.todo {
    background: color-mix(in srgb, var(--gold) 16%, transparent);
    border-radius: 4px; padding: 0 0.25rem; font-weight: 700;
}

/* --------------------------------------------------------------------- Footer */

.site-foot {
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--bg-2); border-top: 1px solid var(--line);
    padding: clamp(2rem, 4vw, 3rem) 0 2rem;
    font-size: 0.9rem;
}
.site-foot__inner { display: grid; gap: 1.4rem; }
@media (min-width: 760px) { .site-foot__inner { grid-template-columns: 1.4fr 1fr; } }
.site-foot p { color: var(--ink-2); margin: 0.4rem 0 0; }
.site-foot nav { display: grid; gap: 0.4rem; align-content: start; }
.site-foot nav a { color: var(--ink-2); text-decoration: none; }
.site-foot nav a:hover { color: var(--fire); text-decoration: underline; }
.site-foot__note {
    grid-column: 1 / -1; color: var(--ink-3); font-size: 0.78rem;
    border-top: 1px solid var(--line); padding-top: 1.2rem; margin-top: 0.6rem;
}

/* -------------------------------------------------------------- Bewegung aus */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    .tile:hover, .btn:hover, .set-card:hover { transform: none; }
}
