.wc3d-product-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
}

.wc3d-product-banner:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.wc3d-product-banner .wc3d-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Styles */
.wc3d-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.wc3d-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.wc3d-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: color 0.3s;
}

.wc3d-modal-close:hover {
    color: #ccc;
}

.wc3d-viewer-container {
    width: 100%;
    background: #000;
}

.wc3d-viewer-inner {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect ratio, adjust as needed */
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.wc3d-viewer-inner:active {
    cursor: grabbing;
}

.wc3d-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.wc3d-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.wc3d-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    text-align: center;
    font-family: sans-serif;
}

.wc3d-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #333;
    border-radius: 50%;
    animation: wc3d-spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes wc3d-spin {
    to { transform: rotate(360deg); }
}

.wc3d-instruction {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-family: sans-serif;
    pointer-events: none;
    z-index: 20;
    transition: opacity 0.3s;
}
