.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--royal-purple);
    border-top: 3px solid var(--gold);
    z-index: 9000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.cookie-banner__text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    flex: 1;
}

.cookie-banner__text p {
    margin: 0;
}

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

.cookie-banner__btn {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 32px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    white-space: nowrap;
}

.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn:active { transform: scale(0.97); }

.cookie-banner__btn--accept {
    background: var(--gold);
    color: var(--royal-purple);
    border: 2px solid var(--gold-dark);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}
