/* Storefront hub — 50+ brand logo showcase */
.storefront-hub-brands {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, .25);
}

.storefront-hub-brands-head {
  margin-bottom: 10px;
  text-align: center;
}

.storefront-hub-brands-eyebrow {
  margin: 0 0 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f59e0b;
}

.storefront-hub-brands-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}

.storefront-hub-brands-sub {
  margin: 4px 0 0;
  font-size: .76rem;
  line-height: 1.4;
  color: var(--muted);
}

.storefront-hub-brands-section {
  margin-top: 12px;
}

.storefront-hub-brands-section-label {
  margin: 0 0 6px;
  padding-left: 2px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #64748b;
}

.storefront-hub-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 6px 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.hub-brand-tile img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 32px;
  object-fit: contain;
}

@media (min-width: 400px) {
  .storefront-hub-brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hub-brand-tile {
    min-height: 52px;
  }

  .hub-brand-tile img {
    height: 34px;
  }
}

@media (min-width: 520px) {
  .storefront-hub-brands-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
}
