/* Основные стили контейнера просмотрщика */
.product-viewer {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    background-color: none;
    cursor: grab;
    user-select: none;
}

/* Стили изображения продукта */
.product-viewer__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Индикатор загрузки */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    transition: opacity 0.5s ease;
}

/* Спиннер загрузки */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Прогресс-бар */
.progress-bar {
    width: 80%;
    max-width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: #000000;
    transition: width 0.3s ease;
}

/* Анимация спиннера */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Индикатор автовращения */
.auto-rotate-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

/* Состояние при перетаскивании */
    .product-viewer--dragging {
        cursor: grabbing;
}

/* Подсказка текст */
.viewer-hint {
    position: absolute;
    bottom: 20px;          /* отступ снизу */
    left: 50%;             /* центрирование по горизонтали */
    transform: translateX(-50%); /* смещение на половину ширины — центр по оси X */
    
    color: rgb(255, 255, 255);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    text-transform: uppercase;
    background: black;
    padding: 5px 15px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease;
}


