.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(20, 10, 40, 0.97);
    border-top: 1px solid rgba(209, 179, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Questrial', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.cookie-banner p a {
    color: #d1b3ff;
    text-decoration: underline;
}

.cookie-banner-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-btn {
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Questrial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.cookie-btn-accept {
    background: #d1b3ff;
    color: #000;
    border: none;
    font-weight: bold;
}

.cookie-btn-accept:hover {
    background: #ffffff;
}

.cookie-btn-info {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-info:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

body.cookie-active .lang-selector {
    bottom: 90px;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 14px;
    }
    .cookie-banner-btns {
        width: 100%;
        justify-content: flex-end;
    }
    body.cookie-active .lang-selector {
        bottom: 140px;
    }
}
