
.product-slider {

    position: relative;
    user-select: none;
}
.swiper {
    width: 100%;
    cursor: grab;
    overflow: hidden;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}
/* Номер текущего фото */
.photo-number {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
}
/* Контейнер для прямоугольников */
.progress-dots {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    width: 100%;
    padding: 0 5px; /* небольшой отступ слева и справа */
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 1;
}
/* Стиль каждого прямоугольника */
.progress-dots__dot {
    flex: 1;
    height: 4px;
    margin: 0 3px;
    background-color: #ccc;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    cursor: default;
    min-width: 20px; /* минимальная ширина */
}
.progress-dots__dot.active {
    background-color: #006fff;
}

