/* Masquer le bouton "Update cart" par défaut */
.woocommerce-cart-form .actions-after-product button[name="update_cart"] {
    display: none;
}

/* Indicateur de chargement pendant la mise à jour AJAX */
.container-cart-product.updating {
    opacity: 0.6;
    pointer-events: none;
}

.container-cart-product.updating .container-details {
    position: relative;
}

.woocommerce-cart-form.processing {
    position: relative;
}

.woocommerce-cart-form.processing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

/* Animation de chargement - positionnée au centre de .container-details */
.container-cart-product.updating .container-details::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #676EB2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 100;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
