#cookie-consent {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    border-top: 3px solid #950000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: "Times New Roman", serif;
}

#cookie-consent .cookie-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#cookie-consent .cookie-text {
    flex: 1 1 500px;
}

#cookie-consent .cookie-text strong {
    font-family: Georgia, serif;
    color: #950000;
    font-size: 1.1em;
}

#cookie-consent .cookie-text p {
    margin: 6px 0;
    font-size: 0.95em;
    color: #333;
}

#cookie-consent .cookie-text a {
    color: #950000;
    text-decoration: underline;
}

#cookie-consent .cookie-buttons {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
}

#cookie-consent .cookie-buttons button {
    font-family: Georgia, serif;
    font-size: 0.95em;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #950000;
}

/* Accepter et Refuser ont la même taille et le même poids visuel */
#cookie-consent #cookie-accept {
    background: #950000;
    color: #fff;
}

#cookie-consent #cookie-refuse {
    background: #fff;
    color: #950000;
}

#cookie-consent #cookie-accept:hover {
    background: #7a0000;
}

#cookie-consent #cookie-refuse:hover {
    background: #f5e9e9;
}

/* Bouton flottant pour rouvrir le bandeau */
#cookie-manage {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #C8A96B;
    border: none;
    font-size: 1.3em;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
    #cookie-consent .cookie-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    #cookie-consent .cookie-buttons {
        justify-content: center;
    }
}
