.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    padding: 16px;
    background: rgba(17, 24, 39, 0.97);
    color: #f9fafb;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner--hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__title {
    display: block;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.cookie-banner__desc {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #d1d5db;
}

.cookie-banner__desc a {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-banner__desc a:hover {
    color: #fcd34d;
}

.cookie-banner__btn {
    flex-shrink: 0;
    padding: 12px 24px;
    border: 0;
    border-radius: 12px;
    background: #0d0063;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}

body.cookie-banner-visible .widget {
    bottom: 130px;
}
