.item-product-img img:not(:first-of-type) {
    display: none;
}

.item-product-img-dots {
    display: flex;
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    gap: 0 6px;
    z-index: 1;
}

.item-product-img:not(:hover) .item-product-img-dots {
    display: none;
}

.item-product-img__dot {
    width: 100%;
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: var(--theme-primary-border);
    opacity: 0.5;
}

.item-product-img__dot.active {
    background: var(--theme-primary);
    opacity: 1;
}

@media (max-width: 991px) {
    .item-product-img-dots {
        display: none !important;
    }
}