/* The Shop tab brand directory (/shop). */
.bdir-title { margin: 8px 4px 2px; font-size: clamp(24px, 6vw, 34px); font-weight: 800; }
.bdir-sub { margin: 0 4px 20px; color: #8a90a0; font-size: 14px; }

.bdir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.bdir {
  display: flex;
  flex-direction: column;
  border: 1px solid #212536;
  border-radius: 18px;
  background: #12151f;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .1s, box-shadow .15s;
}
.bdir:hover {
  border-color: #3a4674;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
}
.bdir__head {
  height: 120px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: radial-gradient(70% 120% at 50% 0%, #1a1f33, #0d0f17);
  border-bottom: 1px solid #1c2030;
}
.bdir__logo { max-width: 76%; max-height: 84px; object-fit: contain; display: block; }
.bdir__word {
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #eef0f5;
  text-align: center;
}
.bdir__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 8px;
}
.bdir__name { font-size: 16px; font-weight: 700; color: #f4f4f6; }
.bdir__count { font-size: 12px; color: #8a90a0; white-space: nowrap; }
.bdir__thumbs {
  display: flex;
  gap: 6px;
  padding: 0 14px 14px;
}
.bdir__thumb {
  flex: 1 1 0;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #0d0f17;
  border: 1px solid #1c2030;
}
.bdir__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
