/* ============================================
   COOKIE CONSENT BANNER
   GDPR-compliant, loads GA4 only after consent
   ============================================ */

/* Banner overlay */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(200, 164, 86, 0.15);
    padding: 1.25rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

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

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner__text p {
    font-size: 0.88rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: #c8a456;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    color: #dbb86a;
}

.cookie-banner__icon {
    font-size: 1.5rem;
    color: #c8a456;
    flex-shrink: 0;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.5rem;
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn--accept {
    background: #c8a456;
    color: #000;
}

.cookie-btn--accept:hover {
    background: #dbb86a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(200, 164, 86, 0.3);
}

.cookie-btn--decline {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn--decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 640px) {
    .cookie-banner {
        padding: 1rem 1.25rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner__icon {
        display: none;
    }

    .cookie-banner__text p {
        font-size: 0.82rem;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}
