/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* Aspect Ratio 9:16 for Shorts */
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Iframe */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.product-detail {
    background: rgba(255, 255, 255, 0.9);
    /* Semi-transparent background */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    border-top: 1px solid #eaeaea;
    /* Optional border for separation */
}

.product-detail img {
    max-height: 60px;
    /* Limit the image size */
    width: auto;
}
