/* GA4 Cookie Consent Banner - La French Barcelona */

:root {
    --gold: #c9a84c;
    --gold-dim: rgba(201, 168, 76, 0.2);
    --dark-bg: rgba(10, 10, 10, 0.95);
    --glass-bg: rgba(20, 20, 20, 0.85);
    --text-white: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.85);
}

.fb-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 40px);
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Montserrat', sans-serif;
}

.fb-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.fb-consent-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.fb-consent-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.fb-consent-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 0 8px 0;
}

.fb-consent-text p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.fb-consent-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.fb-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fb-btn-primary {
    background: var(--gold);
    color: #000;
    border: none;
}

.fb-btn-primary:hover {
    background: #e0bc5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.4);
}

.fb-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.fb-btn-outline:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fb-consent-banner {
        bottom: 20px;
        padding: 20px;
        width: calc(100% - 30px);
    }

    .fb-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .fb-consent-actions {
        flex-direction: column;
        width: 100%;
    }

    .fb-btn {
        width: 100%;
        text-align: center;
    }
}