.navigation__left {
 	display: none; 
}
.product-category-label {
	display: none;
}
.featured-brands-section {
  background: #f3f3f1;
  padding: 70px 20px;
}

.featured-brands-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.featured-brands-title {
  flex: 0 0 220px;
}

.featured-brands-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  font-family: Georgia, serif;
}

.featured-brands-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.brand-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.brand-item img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .featured-brands-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .featured-brands-title {
    flex: unset;
  }

  .featured-brands-logos {
    justify-content: center;
    gap: 30px;
  }

  .brand-item {
    flex: 0 0 100%;
  }

  .brand-item img {
    max-height: 90px;
  }
}