/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-bg-light);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner--hidden {
    transform: translateY(100%);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem 2rem;
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}
