
.rotate360-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.rotate360-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: grab;
    user-select: none;
}

.rotate360-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.rotate360-controls button {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}

.rotate360-controls button:hover {
    background: rgba(0,0,0,0.8);
}
