/* GDPR Cookie Banner — EU pages only */
/* Brand colors: --gdpr-blue: #3D97D3, --gdpr-black: #080808 */

#gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #080808;
    color: #e0e0e0;
    padding: 1.25rem 2rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

#gdpr-banner.visible {
    display: block;
}

#gdpr-banner .gdpr-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

#gdpr-banner .gdpr-text {
    flex: 1;
    min-width: 200px;
}

#gdpr-banner .gdpr-text a {
    color: #3D97D3;
    text-decoration: none;
}

#gdpr-banner .gdpr-text a:hover {
    text-decoration: underline;
}

#gdpr-banner .gdpr-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

#gdpr-banner .gdpr-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    border: none;
}

#gdpr-banner .gdpr-btn-accept {
    background: #3D97D3;
    color: #fff;
}

#gdpr-banner .gdpr-btn-accept:hover {
    background: #2d7ab8;
}

#gdpr-banner .gdpr-btn-decline {
    background: transparent;
    color: #a8a8a8;
    border: 1px solid rgba(255,255,255,0.2);
}

#gdpr-banner .gdpr-btn-decline:hover {
    border-color: rgba(255,255,255,0.4);
    color: #e0e0e0;
}

@media (max-width: 600px) {
    #gdpr-banner .gdpr-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    #gdpr-banner .gdpr-buttons {
        justify-content: center;
    }
}
