/* Base styles for the product thumb container */
.strb-product-thumb {
    position: relative;
    overflow: hidden;
}

.strb-product-thumb a {
    display: block;
    position: relative;
    overflow: hidden;
}

/* Common image styles */
.strb-product-thumb img {
    max-width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    display: block;
}

/* Secondary image hidden by default */
.strb-product-thumb .storebuild-hover-image,
.strb-product-thumb img:nth-of-type(2) {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(1);
    object-fit: cover;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, visibility 0.4s ease;
}

/* Hover state: Show secondary image and zoom it */
.strb-product-item:hover .strb-product-thumb .storebuild-hover-image,
.strb-product-item:hover .strb-product-thumb img:nth-of-type(2) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1.1);
}

/* Ensure the container behaves correctly */
.strb-product-item .strb-product-thumb {
    overflow: hidden;
    position: relative;
}