/** Shopify CDN: Minification failed

Line 25:10 Expected identifier but found whitespace
Line 25:22 Unexpected "20s"

**/
.marquee-effect .swiper-wrapper {
 display: flex;
  width: max-content;
  animation: scroll-rtl 60s linear infinite;
}

.logo-carousel-section {
  margin-top: 30px;
  background: #bb7cfe;
  padding: 10px 0;
  white-space: nowrap; /* Prevent text from breaking */
  overflow: hidden; /* Ensure content is not cut off */
}

.logo-carousel-section img {
  max-height: 30px;

}
animation: scroll-rtl 20s linear infinite; /* slower */
animation: scroll-rtl 10s linear infinite; /* faster */

.logo-carousel-section .deal-title {
  /* font-size: 24px; */
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap; /* Prevent text from breaking */
}
.deal-title {
    color: white;
    font-size: 22px;
}
.logo-carousel-section .deal-item-content {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-start; /* Align items in a row without extra space */
      margin-right: 30px;
}
@keyframes scroll-rtl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 1366px) {
  .logo-carousel-section img {
    max-height: 20px;

  }

  .logo-carousel-section .deal-item-content {
    gap: 15px;
        margin-right: 15px;
  }

  .logo-carousel-section .deal-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .logo-carousel-section .deal-title {
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .logo-carousel-section .deal-title {
    font-size: 14px;
  }

  .logo-carousel-section .deal-item-content {
    gap: 10px;
        margin-right: 10px;
  }

  .logo-carousel-section img {

  }
}

.swiper-slide {
  margin-right: 0 !important;
}


.swiper-container {
  overflow: hidden;
}

.swiper-slide {
  flex-shrink: 0; /* Prevent shrinking */
  width: auto; /* Allow width to adapt to content */
}