Order overview
Your cart is empty!
.hover-container {
position: relative;
display: inline-block;
}
.hover-image {
position: absolute;
top: 0;
left: 0;
opacity: 0; /* Hide the hover image by default */
transition: opacity 0.3s ease-in-out; /* Add a smooth transition */
}
.hover-container:hover .hover-image {
opacity: 1; /* Show the hover image on hover */
}