/**
 * Brands We Carry block — catalogue landing + standalone placement.
 */

.brands-we-carry.brands-section {
  background: #2a2f34;
  padding: 50px 40px;
  border-top: 1px solid #1a1a1a;
  box-sizing: border-box;
}

.brands-we-carry .brands-section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.brands-we-carry .section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008080;
  margin-bottom: 6px;
}

.brands-we-carry .section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #f0f2f4;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
  margin: 0 0 30px;
}

.brands-we-carry .section-title em {
  font-style: normal;
  color: #008080;
}

.brands-we-carry .brands-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #1e1e1e;
}

.brands-we-carry .brand-item {
  flex: 1;
  padding: 22px 20px;
  border-right: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #00afb9;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  min-width: 0;
  text-align: center;
}

.brands-we-carry .brand-item:last-child {
  border-right: none;
}

.brands-we-carry .brand-item:hover,
.brands-we-carry .brand-item:focus {
  color: #008080;
  background: #161616;
}

@media (max-width: 900px) {
  .brands-we-carry .brands-row {
    flex-wrap: wrap;
  }

  .brands-we-carry .brand-item {
    flex: 1 0 50%;
    border-right: none !important;
    border-bottom: 1px solid #1e1e1e;
  }
}

@media (max-width: 560px) {
  .brands-we-carry.brands-section {
    padding: 36px 20px;
  }

  .brands-we-carry .section-title {
    font-size: 30px;
  }

  .brands-we-carry .brand-item {
    flex: 1 0 100%;
    font-size: 15px;
    letter-spacing: 1px;
  }
}
