.product-gallery {
    position: absolute;
    top: 7%;
    left: 46%;
    width: 100px;
    z-index: 160;
}

.product-gallery img {
    border: 1px solid var(--gray-100-color);
    cursor: pointer;
    margin: 0 0 20px 0;
}

.product-gallery img:hover {
    border: 1px solid var(--gray-200-color);
}

.product-gallery img.active {
    border: 2px solid var(--color-light-grey);
    box-shadow: 1px 1px 4px var(--gray-300-color);
    cursor: auto;
}

.product-title {
    font-size: var(--text-2xl);
}

.product-info {
    display: flex;
    font-size: var(--text-sm);
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
}

.product-price small {
    color: var(--gray-400-color);
    font-size: 1.3rem;
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: normal;
}

@media (max-width: 1580px) {
    .product-gallery img {
        margin: 0 0 12px 0;
    }
}

@media (max-width: 1140px) {
    .product-gallery {
        width: 80px;
    }
}

@media (max-width: 960px) {
    .product-gallery {
        width: 60px;
    }
}

@media (max-width: 767px) {
    .product-gallery {
        width: 100%;
        position: unset;
        display: flex;
    }

    .product-gallery img {
        width: 20%;
        margin: 12px 10px 12px 0;
    }
}