/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 20 2025 | 05:50:09 */
/* Product Accordion Video Container */
.product-accardion-video-container {
    width: 100%;
    max-width: 100%;
}

/* Video Wrapper - 16:9 Aspect Ratio */
.product-accardion-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
}

/* Video Thumbnail Container */
.product-accardion-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-accardion-video-thumbnail:hover {
    opacity: 0.9;
}

/* Video Preview Image */
.product-accardion-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button Overlay */
.product-accardion-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.product-accardion-video-thumbnail:hover .product-accardion-video-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* YouTube iframe Container */
.product-accardion-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-accardion-video-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-accardion-video-wrapper {
        border-radius: 4px;
    }
}
