/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 20px 20px;
    background: linear-gradient(to top, rgba(36, 18, 9, 0.97) 0%, rgba(36, 18, 9, 0.88) 100%);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease-out);
    pointer-events: none;
}

.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}

.cookie-banner-text {
    flex: 1;
    min-width: 240px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(253, 250, 246, 0.85);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--orange-soft);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover { color: var(--orange); }

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

.cookie-banner-decline {
    padding: 12px 20px;
    font-size: 0.88rem;
    background: transparent;
    color: rgba(253, 250, 246, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.cookie-banner-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--cream);
}

.cookie-banner-accept {
    padding: 12px 24px;
    font-size: 0.88rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner { transition: none; }
}

@media (max-width: 600px) {
    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner-decline,
    .cookie-banner-accept {
        flex: 1;
        text-align: center;
    }
}
