/* Cookie lišta – vizuál navazuje na sokogas.cz, barvy podle styles.css (#315330) */

.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 2000;
    padding: .75rem;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: rgba(20, 30, 20, .55);
}

.cookie-consent__backdrop[hidden] {
    display: none;
}

.cookie-consent__panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, .35);
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(24px);
    opacity: 0;
    transition: transform .35s cubic-bezier(.22, .78, .3, 1), opacity .35s ease;
}

.cookie-consent.is-visible .cookie-consent__panel {
    transform: none;
    opacity: 1;
}

.cookie-consent__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #315330;
}

.cookie-consent__text {
    margin: .65rem 0 0;
    font-size: .95rem;
    line-height: 1.6;
    color: #4d4d4d;
}

.cookie-consent__text a {
    color: #315330;
    text-decoration: underline;
}

.cookie-consent__categories {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.cookie-consent__categories[hidden] {
    display: none;
}

.cookie-consent__categories li + li {
    margin-top: .75rem;
}

.cookie-consent__category {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin: 0;
    padding: 1rem;
    background-color: #f4f4f4;
    border-radius: 12px;
    cursor: pointer;
}

.cookie-consent__category input {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .15rem;
    accent-color: #315330;
}

.cookie-consent__category input:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.cookie-consent__category-title {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: #1f1f1f;
}

.cookie-consent__badge {
    display: inline-block;
    margin-left: .5rem;
    padding: .15rem .55rem;
    font-size: .7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #315330;
    background-color: #dfe7dd;
    border-radius: 999px;
}

.cookie-consent__category-text {
    display: block;
    margin-top: .3rem;
    font-size: .85rem;
    line-height: 1.55;
    color: #6c757d;
}

.cookie-consent__actions {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.25rem;
}

.cookie-consent__btn {
    padding: .8rem 1.75rem;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s;
}

.cookie-consent__btn--primary {
    color: #ffffff;
    background-color: #315330;
}

.cookie-consent__btn--primary:hover {
    background-color: #294628;
}

.cookie-consent__btn--secondary {
    color: #315330;
    background-color: transparent;
    border-color: #cfd6cd;
}

.cookie-consent__btn--secondary:hover {
    border-color: #315330;
}

.cookie-consent__btn--link {
    color: #6c757d;
    background-color: transparent;
}

.cookie-consent__btn--link:hover {
    color: #315330;
}

.cookie-consent__btn[hidden] {
    display: none;
}

@media (min-width: 576px) {
    .cookie-consent {
        padding: 1.25rem;
    }

    .cookie-consent__panel {
        padding: 1.75rem;
    }

    .cookie-consent__actions {
        flex-direction: row;
        align-items: center;
    }

    .cookie-consent__btn--link {
        margin-left: auto;
    }
}

/* Odkaz na znovuotevření voleb v patičce */
.cookie-settings-link {
    padding: 0;
    color: inherit;
    background: none;
    border: 0;
    text-decoration: underline;
    cursor: pointer;
}
