/* Shop by Brands */
.smbp-brands-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 16px;
}
.smbp-brands-title {
  text-align: center;
  color: #0952a5 !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  margin: 0 0 24px !important;
}
.smbp-brands-grid {
  display: grid;
  grid-template-columns: repeat(var(--smbp-cols, 6), 1fr);
  gap: 16px;
}
.smbp-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 16px 12px;
  box-shadow: 0 3px 12px rgba(9, 82, 165, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  color: #1a1a2e !important;
}
.smbp-brand-card:hover {
  transform: translateY(-4px);
  border-color: #0952a5;
  box-shadow: 0 8px 22px rgba(9, 82, 165, 0.12);
}
.smbp-brand-logo {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #fafbfc;
  border-radius: 8px;
  overflow: hidden;
}
.smbp-brand-card-lg .smbp-brand-logo {
  height: 110px;
}
.smbp-brand-logo img {
  max-width: 90%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.smbp-brand-card-lg .smbp-brand-logo img {
  max-height: 90px;
}
.smbp-brand-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #0952a5;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.smbp-brand-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}
.smbp-brand-count {
  font-size: 11px;
  color: #0952a5;
  font-weight: 600;
}
.smbp-brands-empty {
  text-align: center;
  color: #6b7280;
  padding: 24px;
}

/* Brand page */
.smbp-brand-page {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 16px;
}
.smbp-brand-page-header {
  text-align: center;
  margin: 24px 0 32px;
}
.smbp-brand-page-title {
  color: #0952a5 !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
}
.smbp-brand-page-sub {
  color: #6b7280;
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .smbp-brands-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 600px) {
  .smbp-brands-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
