/* === COOKIE CONSENT PANEL – pravý dolní roh === */
.cookie-consent,
.cookie-settings {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.97);
    color: #222;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    padding: 16px 20px;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    z-index: 10000;
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent.show,
.cookie-settings.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- Tlačítka --- */
.cookie-consent button {
    border: 1px solid #94BE00;
    border-radius: 0px;
    padding: 8px 10px;
    margin-right: 6px;
    margin-bottom: 5px;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
}

.cookie-consent .accept-all { background-color: #fff; color: #94BE00; }
.cookie-consent .reject-all { background-color: #fff; color: #94BE00; }
.cookie-consent .open-settings { background-color: #fff; color: #94BE00; }

.cookie-consent a, .cookie-consent a:hover {
    color: #94BE00;
}

/* === Rozšířené nastavení === */
.cookie-settings label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

.cookie-settings .save-settings {
    background-color: #fff;
    color: #94BE00;
    border: 1px solid #94BE00;
    border-radius: 0px;
    padding: 8px 10px;
    cursor: pointer;
    width: 100%;
}

/* === 📱 Mobilní zobrazení === */
@media (max-width: 768px) {
    .cookie-consent,
    .cookie-settings {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
        padding: 14px 16px;
        box-shadow: 0 -4px 14px rgba(0,0,0,0.25);
        font-size: 15px;
    }

    .cookie-consent p {
        margin-bottom: 12px;
        text-align: left;
    }

    .cookie-consent button {
        width: 100%;
        margin-bottom: 8px;
    }

    .cookie-settings label {
        font-size: 14px;
    }

    .cookie-settings .save-settings {
        width: 100%;
    }
}

/* --- Bezpečnostní pravidlo pro přetékání na mobilech --- */
html, body {
    overscroll-behavior: contain;
}
