/* TheFlavorMap — shared wordmark (matches home page header) */
.tfm-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary, #1a1a1a);
}
.tfm-brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary, #e85d04) 0%, var(--primary-dark, #d00000) 100%);
  border-radius: var(--radius-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  color: #fff;
}
.tfm-brand-logo .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.tfm-brand-logo .logo-text span {
  color: var(--primary, #e85d04);
}

@media (max-width: 480px) {
  .tfm-brand-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .tfm-brand-logo .logo-text {
    font-size: 16px;
  }
}

/* Dark sidebars (admin / owner dashboards) */
.sidebar .tfm-brand-logo {
  color: #f5f5f5;
}
.sidebar .tfm-brand-logo .logo-text span {
  color: var(--primary, #e85d04);
}
.sidebar-brand-line {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 10px 0 0;
  padding: 0;
}
