.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(12, 12, 58, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

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

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px var(--side-padding);
}

.cookie-banner-text h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.cookie-banner-text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-muted);
    line-height: 20px;
}

.cookie-banner-text a {
    color: var(--color-blue);
    text-decoration: underline;
}

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

.cookie-accept {
    padding: 10px 24px;
    font-size: 14px;
}

.cookie-decline {
    padding: 10px 24px;
    font-size: 14px;
}

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

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