#categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
  justify-content: center;
}

#categories ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  width: 130px;
  height: 130px;
  background-color: var(--secondary-background-color);
  border-radius: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: box-shadow 500ms, transform 500ms;
}

#categories ul li a:hover,
#categories ul li a:focus-visible {
  filter: opacity(1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}

#categories ul li a .icon {
  color: var(--main-text-color);
  font-size: 60px;
}

#categories ul li a span {
  color: var(--main-text-color);
  font-weight: 900;
  font-size: 20px;
}

#banners {
  display: flex;
  height: 300px;
  overflow-x: auto;
  scroll-snap-stop: always;
  scroll-snap-type: x mandatory;
  margin-top: 30px;
  padding-inline: 40px;
}

#banners li {
  min-width: 100vw;
  display: flex;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-align: start;
}

#banners img {
  width: 80vw;
  object-position: center;
  object-fit: cover;
  border-radius: 30px;
}
