.cookie-card {
    position: fixed; bottom: 20px; left: 20px;
    max-width: 380px; background: #fff; border-radius: 16px;
    padding: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 10000; font-family: -apple-system, system-ui, sans-serif;
    border: 1px solid #f0f0f0; display: none;
}
.cookie-content p { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 16px; }
.small-text { font-size: 12px; color: #777; margin: 4px 0 10px 24px; line-height: 1.3; }
.cookie-buttons { display: flex; align-items: center; gap: 15px; }
.btn-primary { 
    background: #1a1a1a; color: #fff; border: none; padding: 10px 20px; 
    border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.2s; 
}
.btn-primary:hover { background: #000; }
.btn-link { 
    background: none; border: none; color: #666; text-decoration: underline; 
    font-size: 14px; cursor: pointer; padding: 0;
}
.close-x { 
    position: absolute; top: 12px; right: 15px; border: none; 
    background: none; font-size: 22px; cursor: pointer; color: #bbb;
}
.preference-item label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }

/* Stile base (Desktop) */
.btn-whatsapp {
    background-color: #25d366 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-block; /* Impedisce la deformazione */
}

.btn-whatsapp:hover {
    background-color: #128c7e !important;
}

/* Correzione specifica per Mobile */
@media (max-width: 991px) {
    .nav-item {
        text-align: center; /* Centra il pulsante nel menu mobile */
        padding: 10px 0;    /* Aggiunge spazio verticale tra le voci */
    }

    .btn-whatsapp {
        display: inline-block; /* Forza il pulsante a non allargarsi al 100% */
        width: auto;           /* Mantiene la larghezza basata sul testo */
        margin: 5px auto;      /* Centra il pulsante orizzontalmente */
    }
}
