/* Bannière de consentement cookies — barre discrète en bas de page */
.bu-cookie {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #0d0d0d;
    color: #f5f2ed;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.bu-cookie.is-hidden { display: none; }
.bu-cookie__text {
    flex: 1 1 320px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.bu-cookie__text a {
    color: #d8b070;
    text-decoration: underline;
}
.bu-cookie__actions {
    display: flex;
    gap: 0.6rem;
    flex: 0 0 auto;
}

@media (max-width: 520px) {
    .bu-cookie { flex-direction: column; align-items: stretch; }
    .bu-cookie__actions { justify-content: flex-end; }
}
