/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
    /* Paleta */
    --cream: #fbfaf7;
    --bg-soft: #f5f5f0;
    --bg-light: #faf9f6;

    --sage-light: #e6ece9;
    --sage-soft: #e6ece9;          /* alias pro starší šablony */
    --sage: #5f766b;
    --sage-mid: #6f8780;
    --sage-strong: #3e6a57;
    --sage-deep: #29493c;

    --accent: #ef9d58;

    /* Typografie */
    --text: #2f3e3a;
    --text-strong: #1f2f2a;
    --text-dark: #1e2a32;
    --text-muted: #6f7c82;
    --text-soft: #687472;

    /* Linie / oddělovače */
    --line: rgba(95, 118, 107, 0.12);
    --line-strong: rgba(95, 118, 107, 0.22);

    /* Rádia */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* Stíny */
    --shadow-sm: 0 2px 8px rgba(31, 47, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(31, 47, 42, 0.08);
    --shadow-lg: 0 24px 44px rgba(35, 46, 41, 0.12);

    /* Přechody */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =====================================================
   BASE
   ===================================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =====================================================
   TYPOGRAFIE
   ===================================================== */
h1, h2, h3, h4, h5 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-strong);
}

.display-5,
.display-6 {
    letter-spacing: -0.03em;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 720px;
}


/* =====================================================
   PREVIEW BANNER
   ===================================================== */
.preview-banner {
    background: linear-gradient(90deg, var(--sage-deep), var(--sage-strong));
    color: #fff;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}


/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
    background: rgba(250, 249, 245, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar .container {
    max-width: none;
    width: 100%;
    padding: 0 2rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.navbar-brand img,
.navbar-logo {
    height: 36px;
}

.navbar-nav {
    gap: 0.45rem;
}

.navbar-nav .nav-link {
    font-size: 0.86rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #345345;
    padding: 0.7rem 0.95rem;
    border-radius: var(--radius-pill);
    transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.navbar-utility-link {
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--sage-strong);
    background: rgba(95, 118, 107, 0.08);
}

.navbar-nav .nav-link.active {
    color: #fff;
    background: var(--sage-strong);
}

.navbar a {
    text-decoration: none;
}

/* svislý oddělovač mezi skupinami v navbar */
.nav-sep {
    width: 1px;
    height: 18px;
    background: var(--line-strong);
    align-self: center;
    margin: 0 0.3rem;
    pointer-events: none;
}


/* ===== NAVBAR TLAČÍTKA ===== */

.navbar .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    min-height: unset;
    line-height: 1;
}

.navbar .btn-sage {
    background: var(--sage-mid);
    color: #fff;
    border: none;
    box-shadow: none;
}

.navbar .btn-sage:hover {
    background: var(--sage-strong);
    color: #fff;
}

.navbar .btn-outline-sage {
    border: 1.5px solid var(--text-strong);
    color: var(--text-strong);
    background: #fff;
}

.navbar .btn-outline-sage:hover {
    background: var(--text-strong);
    color: #fff;
}


/* ===== TOGGLER ===== */

.navbar-toggler {
    border: none;
    padding: 0.35rem 0.45rem;
    border-radius: var(--radius-sm);
    background: rgba(62, 106, 87, 0.08);
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* ===== SUBMENU ===== */

.nav-submenu {
    position: relative;
}

.nav-submenu-link {
    white-space: nowrap;
}

.nav-submenu-link::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.45rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.nav-submenu-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 0;
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251, 250, 247, 0.99);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.nav-submenu-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-submenu:hover .nav-submenu-menu,
.nav-submenu:focus-within .nav-submenu-menu {
    display: block;
}

.nav-submenu-item {
    display: block;
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
}

.nav-submenu-item:hover,
.nav-submenu-item:focus {
    background: rgba(95, 118, 107, 0.08);
    color: var(--sage-strong);
}


/* ===== IKONOVÉ TLAČÍTKO (košík, účet) ===== */

.icon-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: #fff;
    position: relative;
    transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}

.icon-toggle:hover {
    border-color: var(--line-strong);
    background: rgba(235, 240, 236, 0.7);
}

.icon-toggle::after {
    margin-left: 0.35rem;
}

.icon-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-strong);
}

.icon-toggle-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: var(--radius-pill);
    background: var(--sage-strong);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}


/* ===== NAVBAR RESPONSIVE ===== */

@media (max-width: 991px) {
    .navbar {
        padding: 0.9rem 0;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .navbar-collapse {
        padding-top: 0.75rem;
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-submenu-menu {
        position: static;
        margin-top: 0.4rem;
        box-shadow: none;
        min-width: 100%;
    }

    .nav-submenu:hover .nav-submenu-menu,
    .nav-submenu:focus-within .nav-submenu-menu {
        display: block;
    }

    .nav-sep {
        display: none;
    }
}


/* =====================================================
   PAGE WRAPPER
   ===================================================== */
.page-wrapper {
    background:
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        url("../img/shared/hero-dog.28c01dcac7cb.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}


/* =====================================================
   BADGES
   ===================================================== */
.badge {
    background-color: var(--sage-light);
    color: var(--sage);
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
}

.badge-soft {
    background-color: #e6f0ec;
    color: var(--sage);
    padding: 0.45rem 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
}

.badge-muted,
.badge-success {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(79, 111, 100, 0.12);
    color: var(--sage);
    font-weight: 500;
}


/* =====================================================
   TLAČÍTKA
   ===================================================== */
.btn {
    border-radius: var(--radius-pill);
    padding: 0.95rem 1.9rem;
    min-height: 56px;
    font-weight: 500;
    transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.btn-sage {
    background-color: var(--sage-mid);
    color: #fff;
    border: none;
    box-shadow: none;
}

.btn-sage:hover {
    background-color: var(--sage-strong);
    color: #fff;
}

.btn-outline-sage {
    border: 1.5px solid var(--text-strong);
    color: var(--text-strong);
    background: #fff;
}

.btn-outline-sage:hover {
    background-color: var(--text-strong);
    color: #fff;
    border-color: var(--text-strong);
}


/* =====================================================
   SPACING HELPERS
   ===================================================== */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pb-6 {
    padding-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}


/* =====================================================
   KARTY / IKONY / POMOCNÉ TŘÍDY
   ===================================================== */
.card-large {
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.icon-block {
    display: flex;
    gap: 1rem;
}

.icon-block .icon {
    font-size: 1.8rem;
    line-height: 1;
}

.bg-light {
    background-color: var(--bg-light) !important;
}


/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: #2f2f2f;
    color: rgba(255, 255, 255, 0.88);
    padding: 4.5rem 0 4rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.site-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.site-footer-logo {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.site-footer-text,
.site-footer-copy,
.site-footer-contact p,
.site-footer-links a {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer-text {
    max-width: 420px;
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.site-footer-copy {
    margin: 0;
    font-size: 0.95rem;
}

.site-footer-heading {
    margin: 0 0 1.4rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.site-footer-links {
    display: grid;
    gap: 0.85rem;
}

.site-footer-links a,
.site-footer-contact a {
    text-decoration: none;
    transition: color 0.18s var(--ease);
}

.site-footer-contact a {
    color: #fff;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
    color: #fff;
}

.site-footer-contact p {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    line-height: 1.45;
}

.site-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.site-footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.18s var(--ease), border-color 0.18s var(--ease), background 0.18s var(--ease);
}

.site-footer-pill:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
    font-size: 0.85rem;
    color: #7f968c;
    text-align: center;
}

.footer-author {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.footer-author:hover {
    text-decoration: underline;
}

.footer-links {
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .site-footer-logo-row {
        justify-content: center;
    }

    .site-footer-text {
        max-width: none;
    }

    .site-footer-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}


/* =====================================================
   ODKAZY V TEXTU
   ===================================================== */
.phone-link {
    color: inherit;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.social-link {
    color: #6f8f7d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.social-link:hover {
    opacity: 0.75;
    transform: translateY(-1px);
}


/* =====================================================
   REVEAL ANIMACE
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 2rem);
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 0.9rem;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

.btn-outline-sage {
    background: transparent;
    border: 1.5px solid var(--sage);
    color: var(--sage);
}

.btn-outline-sage:hover {
    background: var(--sage-light);
    color: var(--sage-strong);
}


/* =====================================================
   PAYMENT KARTY
   ===================================================== */
.payment-success-card,
.payment-cancel-card {
    max-width: 640px;
    margin: 0 auto;
}


/* =====================================================
   PROGRESS BAR (modul, dashboard)
   ===================================================== */
.course-progress {
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.progress-label {
    font-size: 1rem;
    font-weight: 700;
    color: #2f4f43;
    margin-bottom: 0.8rem;
}

.progress-track {
    position: relative;
    width: 100%;
    height: 22px;
    background: #edf3ef;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid #c2d4cb;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3f6f5b, #8fc1ac);
    border-radius: var(--radius-pill);
    transition: width 0.5s var(--ease);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 2px 6px rgba(63, 111, 91, 0.3);
}

.progress-percent {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: #2f4f43;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.module-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.2rem;
}

.module-actions .btn {
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    min-height: unset;
}


/* ── Hláška – dočasné uzamčení nákupů ───────────────── */

.migration-banner {
    background: #fff0f0;
    border-bottom: 1px solid #f5c0c0;
    color: #c0392b;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0.65rem 1rem;
    letter-spacing: 0.01em;
}


/* =====================================================
   MOBILNÍ RESPONZIVITA — GLOBÁLNÍ ZÁKLAD
   Přidáno kvůli telefonům. Desktop se NEMĚNÍ – vše je
   výhradně uvnitř @media (max-width: …). base.css se
   načítá poslední, takže tato vrstva platí napříč webem.
   ===================================================== */

@media (max-width: 768px) {
    /* Obrázky/média nikdy nepřetečou šířku viewportu.
       (height neřešíme globálně – ať se nerozbijí pevně
        oříznuté obrázky s object-fit; to ladíme per-page.) */
    img,
    svg,
    video {
        max-width: 100%;
    }

    /* Obsah nelepí na kraj obrazovky */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Zmenšená sekční typografie na telefonu */
    .section-title {
        font-size: 2rem;
    }

    .section-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Menší vertikální rytmus sekcí */
    .py-6 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .pb-6 {
        padding-bottom: 2.5rem;
    }

    .mb-6 {
        margin-bottom: 2.5rem;
    }

    /* Footer – kompaktnější na telefonu */
    .site-footer {
        padding: 3.25rem 0 2.75rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .section-lead {
        font-size: 0.95rem;
    }

    /* Tlačítka kompaktnější; tap-target zůstává velký
       (min-height 56px dědí z výchozího .btn). */
    .btn {
        padding: 0.85rem 1.35rem;
    }

    .site-footer {
        padding: 2.75rem 0 2.5rem;
    }
}


/* =====================================================
   PŘÍSTUPNOST & KONZISTENCE — GLOBÁLNÍ VRSTVA
   Přidáno v rámci UI/UX revize. Pouze doplňuje – nemění
   text ani barvy značky. base.css se načítá poslední,
   takže tato pravidla platí napříč celým webem.
   ===================================================== */

/* ---- Viditelný focus pro klávesnici (sage prsten) ---- */
:focus-visible {
    outline: 2px solid var(--sage-strong);
    outline-offset: 2px;
}

a:focus-visible,
.btn:focus-visible,
.navbar-nav .nav-link:focus-visible,
.nav-submenu-item:focus-visible,
.dropdown-item:focus-visible,
.icon-toggle:focus-visible {
    outline: 2px solid var(--sage-strong);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Tmavé pozadí footeru → světlý prsten kvůli kontrastu */
.site-footer a:focus-visible,
.site-footer-pill:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Toggler měl focus dříve schovaný – vracíme viditelný prsten */
.navbar-toggler:focus-visible {
    outline: 2px solid var(--sage-strong);
    outline-offset: 2px;
    box-shadow: none;
}

/* Myší focus nechává prsten schovaný (dostane ho jen klávesnice) */
:focus:not(:focus-visible) {
    outline: none;
}


/* ---- Skip link (objeví se jen při tabování z klávesnice) ---- */
.skip-link {
    position: fixed;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 2000;
    display: inline-flex;
    align-items: center;
    background: var(--sage-strong);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transform: translateY(calc(-100% - 1rem));
    transition: transform 0.18s var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid #fff;
    outline-offset: 2px;
    color: #fff;
}


/* ---- Formulářové prvky: jednotný sage focus napříč webem ----
   (auth.css má vlastní, specifičtější styl – ten zůstává beze změny) */
.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border-color: var(--line-strong);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 0.2rem rgba(95, 118, 107, 0.18);
}

.form-check-input:checked {
    background-color: var(--sage);
    border-color: var(--sage);
}

/* Chybové stavy polí – sjednocené */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #c0563f;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(192, 86, 63, 0.18);
}

.invalid-feedback {
    font-size: 0.85rem;
    color: #a23b28;
}


/* ---- Hlášky (alert) – sladěné se značkou ---- */
.alert {
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.alert-danger {
    background: #f8eaea;
    border-color: #e0b4b4;
    color: #8a2c2c;
}

.alert-success {
    background: #e7f0ea;
    border-color: #bcd6c7;
    color: #2f5d47;
}

.alert-info {
    background: #e8eef1;
    border-color: #c4d3db;
    color: #315063;
}

.alert-warning {
    background: #f9f2dc;
    border-color: #e6d6a0;
    color: #7a5a1e;
}


/* ---- Obrázky nikdy nepřetečou (napříč všemi šířkami) ---- */
img,
svg,
video {
    max-width: 100%;
}


/* ---- Dotykové cíle na mobilu (min. ~44px) ---- */
@media (max-width: 991px) {
    .navbar .btn {
        min-height: 44px;
    }

    .form-control,
    .form-select {
        min-height: 46px;
    }
}


/* ---- Omezení pohybu (přístupnost) ---- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---- Našeptávač adres (Mapy.cz Suggest) ---- */
.address-suggest-list {
    position: absolute;
    z-index: 1200;
    left: 0;
    right: 0;
    margin-top: 0.35rem;
    padding: 0.4rem;
    list-style: none;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.address-suggest-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.55rem 0.7rem;
    border-radius: calc(var(--radius-sm) - 4px);
    cursor: pointer;
}

.address-suggest-item:hover,
.address-suggest-item.is-active {
    background: var(--sage-light);
}

.address-suggest-item-main {
    font-size: 0.95rem;
    color: var(--text-strong);
    font-weight: 500;
}

.address-suggest-item-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
}
