/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
}

/* ── Utility Bar ── */
.header-utility {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-utility-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-left a,
.utility-right a {
  font-size: 12px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.utility-left a:hover,
.utility-right a:hover { color: var(--gold); }

/* ── Main Bar ── */
.header-main {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-main-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Browse by Category */
.browse-category-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.browse-category-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Search Bar */
.header-search {
  display: flex;
  align-items: center;
  flex: 1;
  height: 40px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.search-icon-left {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
  margin-right: 4px;
}

.header-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  padding: 0 12px;
  background: transparent;
  min-width: 0;
}

.header-search input::placeholder { color: #adb5bd; }

.search-cat-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

.search-category {
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 0 40px 0 12px;
  height: 100%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  width: 175px;
}

.search-btn {
  background: var(--gold);
  border: none;
  padding: 0 28px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  flex-shrink: 0;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.search-btn:hover { background: var(--gold-dark); }

/* Auth Buttons */
.btn-login {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 5px 11px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-login:hover { border-color: var(--gold); color: var(--gold); }

.btn-signup {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: var(--gold);
  padding: 5px 14px;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-signup:hover { background: var(--gold-dark); }
