.wc-video-bubble {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
}

.bubble-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff5722;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.bubble-icon:hover {
    transform: scale(1.1);
}

.bubble-video-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.bubble-video-wrapper {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.bubble-video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wc-video-bubble {
        left: 10px;
        bottom: 10px;
    }
    
    .bubble-icon {
        width: 40px;
        height: 40px;
    }
    
    .bubble-video-wrapper {
        width: 95%;
    }
}