/*
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.   ***************/
@font-face {
  font-family: "Rubik";
  src: url("Rubik-Regular.ttf") format("opentype");
}
body.rtl {
  font-family: "Rubik";
}


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

add_filter( 'woocommerce_product_add_to_cart_text', 'custom_oos_text', 10, 2 );
function custom_oos_text( $text, $product ) {
if ( ! $product->is_in_stock() ) {
$text = __( 'Sara', 'woocommerce' );
}
return $text;
}
}