.product-specification-video .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 258px; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
}

.product-specification-video .featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.product-specification-video .video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-image: url('../images/play_video_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.product-specification-video .video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.product-specification-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}
