.brands-page{
  max-width:1180px;
  margin:0 auto;
  padding:30px 16px 60px;
}
.brands-hero{
  background:linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,248,240,0.92));
  border:1px solid rgba(10,34,64,0.08);
  border-radius:20px;
  padding:22px 24px;
  box-shadow:0 18px 50px rgba(2,6,23,0.08);
}
.brands-hero h1{
  margin:0 0 8px;
  font-size:clamp(2rem, 4vw, 2.8rem);
  color:#0b2238;
}
.brands-hero p{
  margin:0 0 18px;
  color:rgba(10,34,64,0.78);
  font-size:15px;
}
.brands-tools{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.brand-search{
  display:flex;
  gap:10px;
  align-items:center;
}
.brand-search input{
  flex:1;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(10,34,64,0.16);
  background:#fff;
  font-size:14px;
}
.brand-search .search-clear{
  border:1px solid rgba(10,34,64,0.16);
  background:#fff;
  border-radius:10px;
  padding:6px 10px;
  cursor:pointer;
  font-weight:700;
  color:#0b2238;
}
.brand-letters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.brand-letters button{
  border:1px solid rgba(10,34,64,0.16);
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  color:#0b2238;
}
.brand-letters button.active{
  background:linear-gradient(90deg,#f26b38,#ffb84d);
  color:#fff;
  border-color:transparent;
}
.brands-results{
  margin-top:24px;
}
.brands-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  color:rgba(10,34,64,0.7);
  font-size:13px;
}
.brands-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.brand-card-item{
  background:linear-gradient(180deg,#fff,#fffaf5);
  border-radius:16px;
  border:1px solid rgba(10,34,64,0.08);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-shadow:0 14px 36px rgba(2,6,23,0.08);
}
.brand-card-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  height:90px;
  border-radius:12px;
  background:linear-gradient(180deg,#ffffff,#f5f7fb);
  border:1px solid rgba(10,34,64,0.08);
  overflow:hidden;
}
.brand-card-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}
.brand-card-item h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#0b2238;
}
.brand-card-meta{
  font-size:13px;
  color:rgba(10,34,64,0.7);
}
.brand-card-actions{
  margin-top:auto;
}
.brand-card-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:10px;
  background:#0b2238;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}
.brand-empty{
  padding:24px;
  border-radius:14px;
  border:1px dashed rgba(10,34,64,0.18);
  color:rgba(10,34,64,0.7);
  text-align:center;
}

@media (max-width:900px){
  .brands-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .brands-grid{grid-template-columns:1fr}
}
