
/* ========= BASE ========= */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fff;
}

/* ========= SECTION ========= */
.featured-products-section {
  padding: 20px;
  background-color: #fff;
  text-align: center;
}

.featured-products-title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(270deg, #00c2ff, #33ff8c, #ffc640, #e54cff);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aurora-text 8s ease infinite;
}

@keyframes aurora-text {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========= MARQUEE CONTAINER ========= */
.marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255,255,255,0) 100%);
}

/* ========= MARQUEE ========= */
.Marquee {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.Marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
}

.Marquee-tag {
  width: 200px;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.Marquee-tag:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.featured-product-image {
  width: 70%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .featured-products-title { font-size: 37px; }
  .Marquee-tag { width: 140px; margin: 0 8px; }
  .featured-product-image { width: 85%; }
  .marquee-container::before,
  .marquee-container::after { width: 40px; }
}

@media (max-width: 480px) {
  .featured-products-title { font-size: 40px; }
  .Marquee-tag { width: 120px; margin: 0 6px; }
  .featured-product-image { width: 90%; }
  .marquee-container::before,
  .marquee-container::after { width: 25px; }
}
