/* Bouton Commander maintenant */
.custom-m-btn-open {
    background-color: #212121;
    color: #ffffff;
    margin-top: 5px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    padding: 8px;
    
    font-size: 14px;
}

/* Survol */
.custom-m-btn-open:hover {
    background-color: #C01303 !important;
    color: #ffffff;
    font-size: 14px;
}

/* Harmonisation avec Ajouter au panier */
.woocommerce a.button {
    transition: background-color 0.3s ease;
}

.custom-m-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.custom-m-order-now {
    width: 100%;
    padding: 20px 28px;
    background: #212121;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-m-order-now:hover:not(:disabled) {
    background: #C01303;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

