.categories-showcase {
  width: 100%;
}

.categories-showcase-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 20px;
}

.categories-showcase-swiper {
  width: 100%;
}

.categories-showcase-element {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.categories-showcase-thumbnail {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.categories-showcase-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.categories-showcase-element h2 {
  color: var(--body-text);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.categories-showcase-element:hover {
  opacity: 0.8;
}
