/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi Child Theme for YouTube Shorts Product Videos
Author: Your Name
Author URI: https://yoursite.com
Template: Divi
Version: 1.0.0
Text Domain: divi-child
*/


.product-video-container {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}
.product-video-container h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}
.youtube-shorts-embed {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 0;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.youtube-shorts-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .youtube-shorts-embed {
        max-width: 100%;
        padding-bottom: 177.78%;
    }
}