/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"
Line 50:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .video-gallery-wrapper {
    background-color: {{ section.settings.background_color }};
    padding: 20px;
  }
  .video-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .video-item {
    min-width: 300px;
    scroll-snap-align: start;
    text-align: center;
  }
  .video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
  }
  .video-title {
    margin-top: 10px;
    font-weight: bold;
  }
  .video-price {
    margin: 5px 0;
    color: #333;
  }
  .video-buy-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
</style>