/* ========================================
   Top Categories Carousel - VernatShop
   ======================================== */

.brands-wrapper * {
  box-sizing: border-box;
}

.brands-wrapper {
  padding: 38px 0;
}

.brands-title {
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
  font-size: 32px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.brands-item {
  width: calc((100% - 100px) / 6);
  border-radius: 10px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.brands-item a {
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brands-item img {
  width: 80%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .brands-list {
    gap: 10px;
  }
  .brands-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 20px) / 3);
    border-radius: 10px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  }
}

@media (max-width: 764px) {
  .brands-title {
    font-size: 24px;
  }
}

@media (max-width: 550px) {
  .brands-wrapper {
    padding: 15px 0;
  }
  .brands-list {
    gap: 10px;
  }
  .brands-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 10px) / 2);
    border-radius: 10px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  }
}
