/* === COOKIE BAR – elegantní futuristic CH styl === */

#cookie-bar {
    display: none; /* zobrazí JS */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;

    backdrop-filter: blur(16px);
    background: rgba(10, 10, 12, 0.78);

    border-top: 1px solid rgba(137, 49, 50, 0.35); /* bordó linka */
    padding: 1rem 0;

    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

.cookie-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-bar-text h6 {
    margin: 0 0 0.35rem;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.cookie-bar-text p {
    margin: 0;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-link {
    color: #ffcccc;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #ffffff;
}

/* === TLAČÍTKA === */
.cookie-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-bar-actions .btn {
    padding: 0.35rem 1.2rem;
    font-weight: 500;
    border-radius: 999px;
    font-size: 0.88rem;
}

/* outline */
.cookie-bar-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.cookie-bar-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* filled */
.cookie-bar-actions .btn-light {
    background-color: #fff;
    color: #111;
}

.cookie-bar-actions .btn-light:hover {
    background-color: #e9e9e9;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .cookie-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-bar-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
