.fade-slide {
  animation: slideFade 0.5s ease;
}
.gradient-text {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #36bcd4 0%, #3cc2a9 50%, #6bc07d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@keyframes slideFade {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.highlight-img {
  height: 350px;
}
.highlight-img img {
  border-radius: 20px;
}
/* Below md (max-width: 768px) */
@media (max-width: 767.98px) {
  .highlight-img {
    height: 220px;
  }
  .highlight-img img {
    border-radius: 10px;
  }
}

/* Below sm (max-width: 576px) */
@media (max-width: 575.98px) {
  .highlight-img {
    height: 150px;
  }
  .highlight-img img {
    border-radius: 10px;
  }
}

.scroll-link {
  position: relative;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.scroll-link:hover {
  color: #36bcd4;
}

.scroll-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #36bcd4;
  transition: width 0.3s;
}

.scroll-link:hover::after {
  width: 100%;
}

.scroll-link.active {
  color: #6bc07d;
}

.scroll-link.active::after {
  width: 100%;
  background: #6bc07d;
}

@media (max-width: 548px) {
  .product-card h5 {
    font-size: 12px !important;
  }

  .product-card img {
    max-height: 130px !important;
  }

  .product-card .size-btn {
    font-size: 8px !important;
    padding: 3px 8px !important;
  }
  .inquiry-btn-css {
    padding: 5px 15px;
    font-size: 12px !important;
  }
  .inquiry-btn-css >span{
    font-size: 12px !important;
  }
}




.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Prevent wrapping inside swiper-slide */
/* .swiper-slider-logos {
  flex-shrink: 0;
  width: auto;
  margin-right: 20px;
} */
