.content h3 {
    font-weight: normal;
    margin-top: 20px;
}

#products-container h1 {
    font-size: clamp(16px, 1.7vw, 42px);
    margin-bottom: 0;
}

.thumbnails {
    margin-top: 20px;
}


.thumbnails li {
    display: inline-block;
    overflow: hidden;
}

.thumbnails li figure {
    width: 50px;
    height: 50px;
}

.thumbnails li img {
    width: 100%; /* Fill width */
    height: 100%; /* Fill height */
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

figure.zoom {
    background-position: 50% 50%;
    position: relative;
    /*margin: 150px auto;*/
    border: 5px solid white;
    box-shadow: -1px 5px 15px black;
    /*  height: 300px;
        width: 500px;*/
    overflow: hidden;
    cursor: zoom-in;
}

    figure.zoom img:hover {
        opacity: 0;
    }

    figure.zoom img {
        transition: opacity 0.5s;
        display: block;
        width: 100%;
        height: 100%;
    }

@media screen and (min-width: 350px) {
    figure.zoom {
        height: 320px;
        width: 320px;
    }
}

@media screen and (min-width: 400px) {
    figure.zoom {
        height: 350px;
        width: 350px;
    }
}

@media screen and (min-width: 600px) {
    figure.zoom {
        height: 250px;
        width: 250px;
    }
}

@media screen and (min-width: 700px) {
    figure.zoom {
        height: 300px;
        width: 300px;
    }
}


@media screen and (min-width: 800px) {
    figure.zoom {
        height: 350px;
        width: 350px;
    }
}

@media screen and (min-width: 1000px) {
    figure.zoom {
        height: 400px;
        width: 400px;
    }
}

/*@media screen and (min-width: 1200px) {
    figure.zoom {
        height: 550px;
        width: 550px;
    }
}
*/

figure.zoom img {
    object-fit: cover; /* Fill the container, cropping if needed */
}