/** Shopify CDN: Minification failed

Line 65:0 Unexpected "{"
Line 65:1 Expected identifier but found "%"
Line 65:19 Expected identifier but found "%"

**/
  
   .trust-item img{
    height: 24px;
  }
.trust-lines{
    margin-top: 20px;
}
  .trust-item{
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
  }
  .limited-badge a{
     color: #fff;
     text-decoration:none;
  }
.limited-badge {
  position: absolute;
  top: 9%;
  left: 13%;
  background: #9B1C22;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
  transform: rotate(-18deg);
}


.limited-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: shine-badge 2.5s infinite;
}

@keyframes shine-badge {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Ensure .custom-hero-right is position: relative */
.custom-hero-right {
  position: relative;
}
{% comment %} end {% endcomment %}


  @media screen and (max-width: 768px) {
   .limited-badge {
    top: 6%;
    left: 7%;
    font-size: 10px;
    padding: 5px 10px;
  } 
    .hero-title {
    font-size: 22px !important;
    }
    .custom-hero-right img {
    height: auto !important;
}
  .custom-hero-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .custom-hero-left,
  .custom-hero-right {
    width: 100%;
  }

  .hero-image {
    max-width: 100%;
    height: auto;
  }
}
  .custom-hero-right img {
    height: auto;
  }
  .custom-hero-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
  }

  .custom-hero-left,
  .custom-hero-right {
    flex: 1 1 48%;
  }

  .custom-hero-left {
    padding-right: 20px;
  }

  .custom-hero-right {
    text-align: center;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  #rating-text {
    font-size: 14px;
    color: #444;
  }

  .hero-title {
    font-size: 36px;
    font-weight: 800;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }

  .hero-subheadline {
    font-size: 14px;
    font-weight: bold;
    color: #b6561eff;
  }

  .custom-red-button {
    background-color:#D94443;
    color: #fff;
    padding: 12px 24px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 15px;
    transition: background-color 0.3s ease;
    border-radius: 9999px;
    box-shadow: 6px 6px 0px black;
    border: 1px solid black;
  }

  .custom-red-button:hover {
    background-color:rgb(182, 68, 68);
  }

  .custom-red-button::after {
    content: none !important;
  }

  .trust-line {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
  }

  @media (max-width: 768px) {
    .custom-hero-left,
    .custom-hero-right {
      flex: 1 1 100%;
      text-align: center;
    }

    .custom-hero-left {
      padding-right: 0;
       text-align: left;
    }
  }