/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* Forcer les couleurs des e-mails WooCommerce */
.woocommerce-email {
    background-color: #FFFFFF !important; /* Fond blanc */
    color: #333333 !important; /* Texte en noir */
}

.woocommerce-email a {
    color: #DAC9C1 !important; /* Lien en rose clair */
}

.woocommerce-email table, 
.woocommerce-email td, 
.woocommerce-email th {
    background-color: #FFFFFF !important;
    color: #333333 !important;
}
add_filter('woocommerce_billing_fields', 'rendre_telephone_obligatoire');

function rendre_telephone_obligatoire($fields) {
    $fields['billing_phone']['required'] = true;
    return $fields;
}

