/*
	Theme Name: Hello Elementor Child
	Theme URI: https://elementor.com/hello-theme/
	Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
	Author: Dynamic Dog Digital Agency / Elementor Team
	Author URI: https://elementor.com/
    Template: hello-elementor
	Version: 1.0.2.15
    Text Domain: hello-elementor-child
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* Adjust the order so the checkout button appears first in the mini cart */
.elementor-menu-cart__main .elementor-button.elementor-button--checkout {
	order: -1;
}

/* Adjust the padding for the apply coupon button on the checkout page */
.elementor-widget-woocommerce-checkout-page .woocommerce button.woocommerce-button.button.e-apply-coupon {
	padding-left: 8px;
	padding-right: 8px;
}

/* Hide the coupon nudge and always display the coupon anchor */
.elementor-widget-woocommerce-checkout-page .e-coupon-box .e-woocommerce-coupon-nudge {
	display: none !important;
}
.elementor-widget-woocommerce-checkout-page .e-coupon-box .e-coupon-anchor {
	display: block !important;
	margin-top: 0;
}

/* Hide the sale badge on single product pages */
.woocommerce.woocommerce-page.single-product .elementor-widget-woocommerce-product-images .onsale {
	display: none;
}

.woocommerce.woocommerce-page.single-product .elementor-widget-woocommerce-product-price .price del {
	text-decoration: none !important; /* Remove the strikethrough from the original price */
}
.woocommerce.woocommerce-page.single-product .elementor-widget-woocommerce-product-price .price del .woocommerce-Price-amount.amount {
	font-size: 18px; /* Decrease the font size of the original price */
	text-decoration: line-through; /* Add a line-through here instead of the parent element */
}
.woocommerce.woocommerce-page.single-product .elementor-widget-woocommerce-product-price .price ins .woocommerce-Price-amount.amount {
	font-size: 26px; /* Increase the font size of the discounted price */
}