.html{
    scroll-behavior: smooth;
}

.product-image {
    position: relative;
    cursor: crosshair;
    overflow: hidden;
}

#product-image {
    width: 100%;
}

.zoom-container {
    position:absolute;
    overflow: hidden;
    left: 800px;
    width: 500px;
    height: 500px;
}

.zoom {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-size: 200% 200%;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-size 0.3s ease;
    pointer-events: none; /* Ensures the zoom element does not interfere with mouse events */
}

@media only screen and (max-width: 599px) {
    .zoom-container {
        display: none;
    }
    .zoom {
        display: none;
    }
}

.star-rating .fa-star,
.star-rating .fa-star-half-o {
    color: orange;
}

.product-info {
    padding-top: 20px;
    padding-left: 20px;
}

.row {
    display: flex;
}