.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #1a1b2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner__text p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: #99e007;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cookie-banner__btn:hover {
    opacity: 0.85;
}

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #99e007, #fff400);
    color: #131420;
}

.cookie-banner__btn--decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }

    .cookie-banner__text p {
        font-size: 12px;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}
