.product360-viewer {
    margin-top: 24px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.product360-viewer__header,
.product360-viewer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product360-viewer__header {
    margin-bottom: 12px;
}

.product360-viewer__hint,
.product360-viewer__counter,
.product360-viewer__label {
    color: #666;
    font-size: 12px;
}

.product360-viewer__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 320px;
    user-select: none;
    touch-action: pan-y;
    cursor: grab;
}

.product360-viewer__stage.is-dragging {
    cursor: grabbing;
}

.product360-viewer__image {
    display: block;
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.product360-viewer__nav {
    border: 1px solid #ccc;
    background: #fff;
    color: #222;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .2s ease;
}

.product360-viewer__nav:hover {
    background: #f5f5f5;
}

.product360-viewer__footer {
    margin-top: 12px;
}

@media (max-width: 767px) {
    .product360-viewer__stage {
        min-height: 220px;
        gap: 8px;
    }

    .product360-viewer__nav {
        padding: 6px 10px;
    }
}
