/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 117:0 Unexpected "<"

**/
.m-custom-content{display:grid;grid-template-rows:[content-start] 0fr [content-end];grid-template-columns:1fr}.m-custom-content .m-parallax{grid-area:1/1/end/end}.m-custom-content__container{grid-row:content;grid-column:1/end;z-index:2}.m-custom-content__boxed{padding:15px;overflow:hidden}.m-custom-content__block-product_form .main-product__block+.main-product__block{margin-top:20px}.m-custom-content__block-product_form .main-product__block-vendor+.main-product__block-title,.m-custom-content__block-product_form .main-product__block-title+.main-product__block-price,.m-custom-content__block-product_form .main-product__block-price+.main-product__block-rating,.m-custom-content__block-product_form .main-product__block-title+.main-product__block-rating{margin-top:8px}.m-custom-content__block-product_form .main-product__block-buy_buttons .m-product-dynamic-checkout.show-add-to-cart{width:100%;margin-top:20px}.m-custom-content__block-product_form .main-product__block-title .m-product-title{color:rgb(var(--color-heading))}.m-custom-content__block-newsletter,.m-custom-content__block-social{padding:20px 16px 0}@media screen and (min-width: 768px){.m-custom-content__block-newsletter,.m-custom-content__block-social{padding:0 56px 0}}.m-custom-content__block-newsletter .newsletter-form__description{margin-top:12px}.m-custom-content__block-newsletter .newsletter-form__form{margin-top:24px}.m-custom-content__block-social .social-profiles__description{margin-top:12px}.m-custom-content__block-social .social-profiles__list{margin-top:28px}.m-custom-content__block-handpicked_products .handpicked-products__header,.m-custom-content__block-handpicked_products .image-comparison__header,.m-custom-content__block-image_comparison .handpicked-products__header,.m-custom-content__block-image_comparison .image-comparison__header{margin-bottom:20px}@media screen and (min-width: 768px){.m-custom-content__block-handpicked_products .handpicked-products__header,.m-custom-content__block-handpicked_products .image-comparison__header,.m-custom-content__block-image_comparison .handpicked-products__header,.m-custom-content__block-image_comparison .image-comparison__header{margin-bottom:40px}}.text-card-with-image__content{margin-top:24px;--child-margin-top: 24px;--text-margin-top: 12px}@media screen and (max-width: 767px){.text-card-with-image__content{--child-margin-top: 24px;--text-margin-top: 12px}}
<style>
  /* Video Popup Card Styles */
  .video-popup-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 2;
  }
  
  .video-popup-card__media:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .video-popup-card__title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .video-popup-card__author {
    margin-top: 0.5rem;
    font-style: italic;
  }
  
  /* Video Popup Modal */
  .video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .video-popup-overlay.active {
    display: flex;
    opacity: 1;
  }
  
  .video-popup-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    transition: transform 0.2s ease;
  }
  
  .video-popup-close:hover {
    transform: scale(1.1);
  }
  
  #video-popup-content {
    width: 100%;
    height: 100%;
  }
  
  #video-popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  body.video-popup-open {
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .video-popup-container {
      width: 95%;
    }
    
    .video-popup-close {
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
    }
  }

</style>