﻿.product-image {
    width: 100%; 
    height: auto; 
    max-width: 300px;  
    display: block;  
    margin: auto;   
    padding: 5px;   
    border-radius: 8px;  
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 550px; /* Adjust for larger images */
}

/*.product-image {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}*/

.cart-overlay {
    position: absolute;
    bottom: 10px; /* Adjust position */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 165, 0, 0.8); /* Semi-transparent orange */
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    display: none; /* Initially hidden */
}

.image-wrapper:hover .cart-overlay {
    display: block; /* Show on hover */
}

.cartbox-product-image {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    object-fit: cover; /* Ensures images are properly cropped */
    border-radius: 5px; /* Slight rounding for a smooth look */
}
