.retailersSection {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: transparent;
}

.retailersHeading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.retailersContainer {
  background-color: transparent; /* black background */
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.retailerLogo {
  flex: 1 1 150px;
  max-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.retailerLogo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1); /* keeps logos clear on black bg */
}

/* ===================== */
/* Responsive */
@media (max-width: 992px) {
  .retailersHeading {
    font-size: 32px;
  }

  .retailersContainer {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .retailersHeading {
    font-size: 28px;
  }

  .retailerLogo {
    flex: 1 1 120px;
  }
}
