/* ==========================================================================
   MAUA MERCHANT/VENDOR - Custom Styling Overrides
   ========================================================================== */

/* Place custom merchant-specific rules here to keep hub.css clean */

.vendor-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  height: 60px;
  background-color: rgba(var(--card-bg-raw), 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-width: 480px;
  margin: 0 auto;
  transition: background-color 0.2s, border-color 0.2s;
}

.vendor-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.vendor-logo-container {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(227, 141, 3, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.vendor-brand:hover .vendor-logo-container {
  transform: scale(1.05);
  background-color: var(--primary-hover);
}

.vendor-logo-img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.vendor-brand-title {
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--title-color) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
