

/* Container for the image to manage overflow */
.image-zoom-container {
    width: 100%; /* Adjust the width as needed */
    /* max-width: 500px; Optional: set a maximum width */
    overflow: hidden;
    border-radius: 5px; /* Rounded corners for a stylish look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: shadow for a lifted effect */
    transition: transform 0.3s ease-in-out;
}

/* Image zoom effect */
.zoom-image {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/* Zoom effect on hover */
.image-zoom-container:hover .zoom-image {
    transform: scale(1.1); /* Adjust the scale for more/less zoom */
}

.category_exclusive {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 0;
    text-orientation: mixed;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    background: #8e7b62;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-family: 'Barlow Condensed', sans-serif;
    padding: 6px 3px;
    line-height: 1.5em;
}

.category_sold {
  position: absolute;
    top: 20px;
    left: 20px;
    z-index: 0;
    text-orientation: mixed;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-family: 'Barlow Condensed', sans-serif;
    padding: 6px 3px;
    line-height: 1.5em;
}



