/* Bannière de Consentement - As Du Vin */
#adv-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 550px;
    background-color: #f9f7f2; /* Porcelain */
    border: 2px solid #b89c5b; /* Goldenrod */
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    display: none; /* Affiché via JS */
    font-family: 'Playfair Display', serif;
}

.adv-title {
    color: #4a0e0e; /* Mahogany */
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.adv-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.adv-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-adv {
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-accept {
    background-color: #4a0e0e;
    color: #f9f7f2;
    border: none;
}

.btn-accept:hover {
    background-color: #2a0505;
}

.btn-refuse {
    background-color: transparent;
    color: #4a0e0e;
    border: 1px solid #4a0e0e;
}

.btn-refuse:hover {
    background-color: #eee;
}

/* Tablette et Mobile */
@media (max-width: 640px) {
    .adv-buttons {
        flex-direction: column;
    }
    .btn-adv {
        width: 100%;
    }
}