/*
Theme Name: Ecomus Child
Theme URI: https://wpecomus.com/
Author: DrFuri
Author URI: http://drfuri.com/
Description: Multipurpose WooCommerce WordPress Theme
Version: 1.0.0
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecomus
Domain Path: /lang/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready
Template: ecomus
*/



/* --- Hide the extra spans (divide, price) on single product button --- */
.single-product .single_add_to_cart_button .divide,
.single-product .single_add_to_cart_button .price {
  display: none !important;
}

/* --- Add SVG after the "Add to cart" text --- */
/* If your button has <span class="text">Add to cart</span> */
.single-product .single_add_to_cart_button .text::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  vertical-align: middle;
  background-image: url('https://loudshout.in/zion/wp-content/uploads/2025/09/Vector-3.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Fallback: if there is no .text span, add icon to the button itself */
.single-product .single_add_to_cart_button::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  vertical-align: middle;
  background-image: url('https://loudshout.in/zion/wp-content/uploads/2025/09/Vector-3.svg');
  background-repeat: no-repeat;
  background-size: contain;
}


.modal__wrapper {
	background-color: #05010C !important;
}



/* Make sure icon appears only once and after text (button-level rule is lower priority) */
.single-product .single_add_to_cart_button .text::after { /* keeps this highest priority */ }
