/* Shared DigiHut factory bar. Sales chrome for every business. */
.dh {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 12px 12px;
  background: #121212;
  color: #f3eee4;
  border-bottom: 1px solid #2c2c2c;
}
.dh-id {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.dh-mark {
  flex: none;
  width: 28px;
  height: 28px;
  display: block;
}
.dh-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.dh-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dh-switch a {
  flex: 1 1 30%;
  text-align: center;
  text-decoration: none;
  border: 1px solid #3a3a3a;
  background: #1c1c1c;
  color: #f3eee4;
  padding: 9px 8px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dh-switch a[aria-current="true"] {
  background: #efe6d4;
  color: #141414;
  border-color: #efe6d4;
}
.dh-want {
  text-decoration: none;
  background: #efe6d4;
  color: #141414;
  font-weight: 600;
  padding: 11px 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 800px) {
  .dh {
    flex-direction: row;
    align-items: center;
    gap: 16px 20px;
    padding: 8px 16px;
  }
  .dh-switch { flex: 1; justify-content: center; }
  .dh-switch a {
    flex: 0 1 auto;
    min-width: 8rem;
    min-height: 36px;
    padding: 6px 12px;
  }
  .dh-want { flex: none; min-height: 36px; padding: 6px 14px; }
}
