/* Product Video Style */
.sinhoni-product-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail-container:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: #2d3691;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-play-button svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.video-thumbnail-container:hover .video-play-button {
    transform: scale(1.1);
    background: #1e256a;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    .video-play-button svg {
        width: 30px;
        height: 30px;
    }
}
