/* --- Bouton Panier personnalisé Plaisirs Meubles --- */
#header .shopping_cart > a,
#header .shopping_cart > a .ajax_cart_quantity {
    background-color: #e91683 !important; /* rose fuchsia principal */
    color: #ffffff !important; /* texte blanc */
    border-radius: 10px; /* arrondi doux */
    padding: 8px 14px !important; /* taille équilibrée */
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

/* Survol (hover) plus subtil */
#header .shopping_cart > a:hover {
    background-color: #ff2b9a !important; /* rose clair survol */
    color: #fff !important;
    transform: scale(1.05);
}

/* Supprime tout fond bleu restant (modules ou overrides) */
#header .shopping_cart,
.shopping_cart a,
.shopping_cart .ajax_cart_quantity {
    background: none !important;
    box-shadow: none !important;
}