/*

 Theme Name: Divi Child YLS1

 Theme URI: http://example.com

 Description: A child theme for Divi

 Author: The Yellow Letter Shop LLC

 Author URI: http://yellowlettershop.com

 Template: Divi

 Version: 1.0.0
*/


/* Import parent theme styles */

@import url("../Divi/style.css");



/* Add your custom styles here */



.woocommerce div.product .product_meta a {

    color: #1B7218 !important;

}



.woocommerce div.product .product_meta a:hover {

    color: #228B22 !important;

}



.woocommerce-Price-amount {

	color: #1B7218 !important;

}



/* FOR THE DYNAMIC TEXT OVER PRODUCT IMAGE */

/* Ensure the product gallery container is positioned relatively */

.woocommerce-product-gallery {

    position: relative;

}



/* Ensure the product image container is positioned relatively */

.woocommerce-product-gallery__image {

    position: relative;

}



/* Style for the dynamic text */

.dynamic-text {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-158%, -3805%);

    font-size: 24px;

    color: #333;

    pointer-events: none; /* Ensures the text doesn't interfere with other interactions */

    z-index: 10; /* Ensure the text stays on top of the image */

}

/* END DYNAMIC TEXT CSS */