/* Palette violette globale — Ose Le Plaisir */
:root {
    --button-violet-start: #5d0a7a;
    --button-violet-end: #410666;
    --button-violet-shadow: rgba(65, 6, 102, .38);
}

/* Boutons principaux du site, y compris le Panier de l’en-tête */
.button-primary,
.small-button,
.cart-button,
body.commerce-theme .shop-filters button,
body.commerce-theme .product-view-button,
body.commerce-theme .category-back,
body.commerce-theme .cart-button--checkout,
body.commerce-theme .all-orders-button,
body.commerce-theme .profile-save,
body.commerce-theme .submit-button,
body.commerce-theme .button-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--button-violet-start), var(--button-violet-end)) !important;
    border-color: transparent !important;
    box-shadow: 0 11px 27px var(--button-violet-shadow) !important;
}

/* Éléments actifs de la boutique */
body.commerce-theme .category-chip.is-active,
body.commerce-theme .pagination .current,
body.commerce-theme .pagination a:hover {
    color: #fff !important;
    background: linear-gradient(135deg, var(--button-violet-start), var(--button-violet-end)) !important;
    border-color: transparent !important;
}

/* Survol */
.button-primary:hover,
.small-button:hover,
.cart-button:hover,
body.commerce-theme .shop-filters button:hover,
body.commerce-theme .product-view-button:hover,
body.commerce-theme .category-back:hover,
body.commerce-theme .cart-button--checkout:hover,
body.commerce-theme .all-orders-button:hover,
body.commerce-theme .profile-save:hover,
body.commerce-theme .submit-button:hover,
body.commerce-theme .button-primary:hover {
    filter: brightness(1.12);
    box-shadow: 0 15px 34px rgba(65, 6, 102, .52) !important;
}

/* États focus des formulaires */
body.commerce-theme input:focus,
body.commerce-theme select:focus,
body.commerce-theme textarea:focus {
    border-color: #5d0a7a !important;
    box-shadow: 0 0 0 3px rgba(65, 6, 102, .25) !important;
}
