/* Bannière de consentement cookies (RGPD) — masquée par défaut, affichée via JS. */
.gtl-cookie-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: #1f2430;
    color: #f5f6f8;
    padding: 1rem 1.25rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
    font-size: 0.95rem;
    line-height: 1.4;
}

.gtl-cookie-banner--visible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
}

.gtl-cookie-banner__text {
    flex: 1 1 28rem;
    max-width: 52rem;
}

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

/* RGPD : refuser doit être aussi simple qu'accepter → deux boutons de même taille/visibilité. */
.gtl-cookie-btn {
    border: none;
    border-radius: 0.5rem;
    padding: 0.55rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.gtl-cookie-btn--accept {
    background: #bfd641;
    color: #1f2430;
}

.gtl-cookie-btn--accept:hover {
    background: #d0e45c;
}

.gtl-cookie-btn--refuse {
    background: #4a5164;
    color: #f5f6f8;
}

.gtl-cookie-btn--refuse:hover {
    background: #5b6378;
}

@media (max-width: 576px) {
    .gtl-cookie-banner__actions {
        width: 100%;
        justify-content: stretch;
    }

    .gtl-cookie-btn {
        flex: 1 1 0;
    }
}
