.wc-360-viewer {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    background-color: #000;
}

.wc-360-frame {
    display: none;
    width: 100%;
    height: auto;
    pointer-events: none;
    object-fit: contain;
}

.wc-360-frame.active {
    display: block;
}

.wc-360-controls {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 10;
    display: flex;
    gap: 10px;
    transition: opacity 0.3s;
}

.wc-360-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-360-btn i {
    pointer-events: none;
}

.wc-360-viewer.fullscreen {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none;
    z-index: 9999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wc-360-viewer.fullscreen .wc-360-controls {
    position: relative;
    bottom: unset;
    right: unset;
    left: unset;
    margin-top: 1rem;
    justify-content: center;
}
