/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 504:0 Unexpected "<"

**/
<style>
.hero-video-bundle .bundle-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-video-bundle .bundle-badge {
      margin: 0px auto;
  line-height: 0;
  margin-bottom: 6px; /* space between badge and label */
  width: var(--badge-w, 56px);
}

.hero-video-bundle .bundle-badge svg,
.hero-video-bundle .bundle-badge img {
  display: block;
  width: 56px;
  height: auto;
}
  /* Reset and Base Styles */
  .hero-video-bundle * {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-video-bundle {
    position: relative;
    min-height: 100vh;
    background-color: #475569;
    /*overflow: hidden;*/
    display: flex;
    flex-direction: column;
  }

  /* Video Background */
  .hero-video-bundle .video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

  .hero-video-bundle video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-video-bundle .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
      transparent,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.4));
  }

  /* Main Content */
  .hero-video-bundle .main-content {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-video-bundle .content-container {
     font-family: var(--font-family);
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
  }

  .hero-video-bundle h1 {
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    /*letter-spacing: -0.025em;*/
    font-weight: 300;
  }

  .hero-video-bundle .subheading {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 36rem;
    line-height: 1.5;
  }

  .hero-video-bundle .cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.25rem;
    cursor: pointer;
  }

  .hero-video-bundle .cta-button:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
  }

  .hero-video-bundle .reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-video-bundle .star-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
    fill: #fbbf24;
  }

  .hero-video-bundle .reviews-text {
    font-size: 0.8125rem;
    font-weight: 300;
  }

  /* Bundle Section */
  .hero-video-bundle .bundle-section {
    position: relative;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.9);
  }

  .hero-video-bundle .bundle-container {
    font-family: var(--font-family);
    position: relative;
  }

  /* Product Cards Container */
  .hero-video-bundle .product-cards {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -30px;
    pointer-events: none;
    width: 260px;
    height: 150px; /* Increased height for proper image display */
  }

  /* Product Image Container */
  .hero-video-bundle .product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-video-bundle .product-image-container >img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    max-width: 100%;
  }

  /* Individual Product Cards */
  .hero-video-bundle .card {
    position: absolute;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-video-bundle .card-white {
    left: 0;
    bottom: 0;
    width: 80px;
    height: 115px;
    background-color: white;
    transform: rotate(-6deg);
  }

  .hero-video-bundle .card-black {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 125px;
    background-color: black;
    border: 1px solid #374151;
    z-index: 10;
  }

  .hero-video-bundle .card-pink {
    right: 0;
    bottom: 0;
    width: 80px;
    height: 115px;
    background-color: #fce7f3;
    transform: rotate(6deg);
  }

  .hero-video-bundle .card-text {
    font-size: 0.875rem;
    font-weight: 300;
  }

  .hero-video-bundle .card-cable {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 1.5px;
  }

  /* Bundle Content */
  .hero-video-bundle .bundle-content {
    padding: 0.25rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
  }

  .hero-video-bundle .bundle-title {
    color: white;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }

  .hero-video-bundle .bundle-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
  }

  .hero-video-bundle .bundle-option {
    text-align: center;
  }

  .hero-video-bundle .bundle-label {
    color: white;
    font-size: 0.6875rem;
    margin-bottom: 0.125rem;
  }

  .hero-video-bundle .bundle-discount {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
  }

  .hero-video-bundle .bundle-divider {
    width: 1px;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
  }

  /* Rich Text Support */
  .hero-video-bundle .rich-text strong,
  .hero-video-bundle .rich-text b {
    font-weight: 600;
  }

  .hero-video-bundle .rich-text em {
    font-style: italic;
  }

  /* Mobile Styles */
  @media (max-width: 767px) {
    .hero-video-bundle .bundle-content {
      padding-top: 2rem;
      text-align: center;
    }

    .hero-video-bundle .desktop-only {
      display: none !important;
    }
    .mobile-only br {
    display: none;
}
.hero-video-bundle .reviews {
    justify-content: center;}

.hero-video-bundle .content-container {
    text-align: center;}
  }

  /* Desktop Styles */
  @media (min-width: 768px) {
    .hero-video-bundle .main-content {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .hero-video-bundle .subheading {
      margin-bottom: 2rem;
    }

    .hero-video-bundle .cta-button {
      padding: 1rem 2.5rem;
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }

    .hero-video-bundle .reviews-text {
      font-size: 0.875rem;
    }

    .hero-video-bundle .mobile-only {
      display: none !important;
    }

    /* Desktop Product Cards - Touch Bottom */
    .hero-video-bundle .product-cards {
      left: auto;
      right: 15%;
      transform: translateX(0);
      margin-bottom: -110px;
      width: 380px;
      height: 220px; /* Proper height for desktop */
    }

    .hero-video-bundle .product-image-container img.desktop-only {
      transform: translateX(0);
      left: auto;
      right: 0;
    }

    .hero-video-bundle .card-white {
      width: 110px;
      height: 180px;
    }

    .hero-video-bundle .card-black {
      width: 120px;
      height: 195px;
    }

    .hero-video-bundle .card-pink {
      width: 110px;
      height: 180px;
    }

    .hero-video-bundle .card-text {
      font-size: 1.125rem;
    }

    .hero-video-bundle .card-cable {
      width: 3.5rem;
      bottom: 1rem;
    }

    /* Desktop Bundle Layout */
    .hero-video-bundle .bundle-content {
      padding: 0rem 3rem 0.7rem;
    }

    .hero-video-bundle .bundle-desktop {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .hero-video-bundle .bundle-title {
      font-size: 20px;
      /*white-space: pre-line;*/
      margin-bottom: 0;
    }

    .hero-video-bundle .bundle-options {
            align-items: self-end;
      gap: 2.5rem;
    }

    .hero-video-bundle .bundle-label {
      font-size: 12px;
    }

    .hero-video-bundle .bundle-discount {
      font-size: 24px;
    }

    .hero-video-bundle .bundle-divider {
      height: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .hero-video-bundle .main-content {
      padding-left: 4rem;
      padding-right: 4rem;
    }

    .hero-video-bundle .product-cards {
      right: 12%;
      margin-bottom: -110px;
    }

    .hero-video-bundle .card-white {
      width: 125px;
      height: 200px;
    }

    .hero-video-bundle .card-black {
      width: 135px;
      height: 215px;
    }

    .hero-video-bundle .card-pink {
      width: 125px;
      height: 200px;
    }

    .hero-video-bundle .card-text {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1280px) {
    .hero-video-bundle .main-content {
      padding-left: 5rem;
      padding-right: 5rem;
    }

    .hero-video-bundle .product-cards {
      right: 15%;
      margin-bottom: -120px;
    }
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-video-bundle .animate-in {
    animation: fadeIn 0.8s ease-out;
  }

  .hero-video-bundle .delay-200 {
    animation-delay: 0.2s;
  }

  .hero-video-bundle .delay-400 {
    animation-delay: 0.4s;
  }

  .hero-video-bundle .delay-600 {
    animation-delay: 0.6s;
  }
  @media (max-width: 760px) {
    .hero-video-bundle .main-content{
      justify-content: flex-start;
      padding-top:60px;
    }
    .hero-video-bundle .content-container {
        text-align: left;
    }
    .hero-video-bundle .reviews {
        justify-content: left;
    }
  }
  .bundle-content .mobile-only {
    padding-top: 30px;
}

</style>