/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
.store-logo {
  width: 32px;
  height: 32px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee-left 35s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-right 35s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-wrap: nowrap;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .marquee {
    mask-image: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1.25rem;
  }

  .marquee-group {
    gap: 1rem;
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .marquee-group[aria-hidden="true"] {
    display: none;
  }

  .brand-logo {
    height: 34px;
  }
}

.glow-soft {
  color: inherit;
  text-shadow: 0 0 6px rgba(0, 255, 234, 0.35);
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
