.product-360-viewer {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.product-360-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.product-360-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    /*transition: opacity 0.3s ease;*/
}

.product-360-container img.active {
    opacity: 1;
}

.product-360-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.product-360-controls button {
    background: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.product-360-controls button:hover {
    background: #555;
}