/*
 Theme Name:   Greenspot
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  greenspot
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

/* Product List Styles */
.single-product-list-item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.single-product-list-item:hover {
    text-decoration: none;
    color: inherit;
}

/* Product Image Hover Effect */
.product-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.single-product-list-item:hover .hover-image {
    opacity: 1;
}

.single-product-list-item:hover .main-image {
    opacity: 0;
}

