/* Bandeau informatif RGPD - pas un CMP, juste une info */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    color: #f0f0f0;
    padding: 1rem 1.5rem;
    z-index: 9999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.privacy-banner.visible {
    transform: translateY(0);
}
.privacy-banner p {
    margin: 0;
    flex: 1;
    line-height: 1.5;
}
.privacy-banner a {
    color: #7db8f0;
    text-decoration: underline;
}
.privacy-banner button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
}
.privacy-banner button:hover {
    background: #0056b3;
}
@media (max-width: 768px) {
    .privacy-banner {
        flex-direction: column;
        text-align: center;
    }
}
