/* cihazvar.com — sade header (beyaz, düşük kontrast) */

:root {
  --hdr-bg:         #ffffff;
  --hdr-bg-bar:     #ffffff;
  --hdr-bg-cat:     #ffffff;
  --hdr-border:     #e8eaed;
  --hdr-border-2:   #f1f3f5;
  --hdr-text:       #1f2937;
  --hdr-text-muted: #6b7280;
  --hdr-accent:     #007287;
  --hdr-accent-dk:  #005a6b;
  --hdr-glass:      #f9fafb;
  --hdr-glass-hov:  #f3f4f6;
  --hdr-search-bg:  #f3f4f6;
  --hdr-shadow:     0 1px 0 rgba(0, 0, 0, 0.04);
}

/* ─── Sticky wrapper ─── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: var(--hdr-bg);
  border-bottom: none;
  box-shadow: none;
}
#site-header.is-scrolled .h-catnav {
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
}

/* ─── Main bar ─── */
.h-bar {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: max(var(--site-gutter, 24px), calc((100vw - var(--container, 1180px)) / 2));
  padding-right: max(var(--site-gutter, 24px), calc((100vw - var(--container, 1180px)) / 2));
  background: var(--hdr-bg-bar);
  border-bottom: none;
  box-sizing: border-box;
}

/* ─── Logo ─── */
.h-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--hdr-text);
  min-width: 120px;
}
.h-logo:hover { color: #111827; text-decoration: none; opacity: 0.92; }
.h-logo-img { height: 28px; width: auto; display: block; }
.h-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* ─── Search ─── */
.h-search {
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
}
.h-search-form {
  display: flex;
  align-items: center;
  height: 40px;
  background: var(--hdr-search-bg);
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.h-search-form:focus-within {
  border-color: #d1d5db;
  background: #fff;
}
.h-search-icon {
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #9ca3af;
  pointer-events: none;
}
.h-search-icon svg { width: 15px; height: 15px; stroke-width: 2; }
.h-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--hdr-text);
  padding: 0;
  min-width: 0;
}
.h-search-input::placeholder { color: #9ca3af; font-weight: 400; }
.h-search-submit {
  flex-shrink: 0;
  height: 32px;
  margin: 4px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: var(--hdr-accent);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.h-search-submit:hover { background: var(--hdr-accent-dk); }

/* ─── Action buttons ─── */
.h-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.h-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 34px;
  border: 1px solid var(--hdr-border);
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.h-ghost:hover {
  background: var(--hdr-glass-hov);
  border-color: #d1d5db;
  color: #111827;
}

.h-outlined {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 34px;
  border: 1px solid var(--hdr-border);
  border-radius: 8px;
  background: #fff;
  color: #4b5563;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.h-outlined:hover {
  border-color: #cbd5e1;
  color: var(--hdr-accent);
  background: #fafafa;
}

.h-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: var(--hdr-accent);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
  transition: background 0.15s ease;
}
.h-primary:hover {
  background: var(--hdr-accent-dk);
  color: #fff;
}
.h-primary svg, .h-ghost svg, .h-outlined svg {
  width: 14px; height: 14px; stroke-width: 2; flex-shrink: 0;
}

.h-sep {
  width: 1px;
  height: 18px;
  background: var(--hdr-border);
  margin: 0 2px;
  flex-shrink: 0;
}

.h-user-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px 0 6px;
  height: 34px;
  border: 1px solid var(--hdr-border);
  border-radius: 8px;
  background: #fff;
  color: var(--hdr-text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.h-user-toggle:hover, .h-user-toggle.show {
  border-color: #d1d5db;
  background: var(--hdr-glass-hov);
}
.h-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--hdr-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.h-avatar img { width: 100%; height: 100%; object-fit: cover; }
.h-caret {
  width: 12px; height: 12px;
  color: #9ca3af;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.h-user-toggle.show .h-caret { transform: rotate(180deg); }

.h-dropdown-menu {
  border: 1px solid var(--hdr-border) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  padding: 6px !important;
  min-width: 185px;
  background: #fff;
  margin-top: 6px !important;
}
.h-dropdown-menu .dropdown-item {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.h-dropdown-menu .dropdown-item:hover { background: #f9fafb; color: #111827; }
.h-dropdown-menu .dropdown-item svg {
  width: 14px; height: 14px; stroke-width: 2; color: #9ca3af; flex-shrink: 0;
}
.h-dropdown-menu .dropdown-divider { margin: 4px 0; border-color: #f3f4f6; }
.h-dropdown-menu .dropdown-item.is-danger { color: #dc2626; }
.h-dropdown-menu .dropdown-item.is-danger:hover { background: #fef2f2; color: #dc2626; }

/* ─── Kategori şeridi — sade ─── */
.h-catnav {
  --h-catnav-h: 50px;
  background: var(--hdr-bg-cat);
  border-top: 1px solid var(--hdr-border-2);
  border-bottom: 1px solid var(--hdr-border);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.2s ease;
}
.h-catnav-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-height: var(--h-catnav-h);
  padding-left: max(var(--site-gutter, 24px), calc((100vw - var(--container, 1180px)) / 2));
  padding-right: max(var(--site-gutter, 24px), calc((100vw - var(--container, 1180px)) / 2));
  gap: 10px;
  box-sizing: border-box;
}
.h-catnav-scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.h-catnav-scroll::-webkit-scrollbar { display: none; }
.h-catnav-mob { display: none; }
.h-catnav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: var(--h-catnav-h);
}
.h-catnav-li { flex-shrink: 0; }
.h-catnav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--hdr-text-muted);
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.h-catnav-item:hover {
  background: var(--hdr-glass-hov);
  color: var(--hdr-text);
}
.h-catnav-item.is-active {
  background: #eef7f9;
  color: var(--hdr-accent);
}
.h-catnav-item.is-active .h-catnav-label { font-weight: 600; color: var(--hdr-accent); }
.h-catnav-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f3f4f6 !important;
  color: #6b7280 !important;
}
.h-catnav-icon svg { width: 16px; height: 16px; }
.h-catnav-item.is-active .h-catnav-icon {
  background: #dceef2 !important;
  color: var(--hdr-accent) !important;
  box-shadow: none;
}
.h-catnav-label {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.h-catnav-help {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  margin: 6px 0;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--hdr-text-muted);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.h-catnav-help:hover {
  color: var(--hdr-accent);
  background: var(--hdr-glass-hov);
}
.h-catnav-help-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #eef7f9;
  color: var(--hdr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h-catnav-help-icon svg { width: 14px; height: 14px; }
.h-catnav-help-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.45;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .h-catnav-list {
    justify-content: flex-start;
    width: 100%;
    gap: 4px;
  }
}

/* ─── Hamburger ─── */
.h-burger {
  display: none;
  width: 34px; height: 34px;
  border: 1px solid var(--hdr-border);
  background: #fff;
  border-radius: 8px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--hdr-text);
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.h-burger:hover { background: var(--hdr-glass-hov); }
.h-burger svg { width: 18px; height: 18px; stroke-width: 2; }

/* ─── Mobile drawer ─── */
.h-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1060;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.h-overlay.is-open { opacity: 1; }

.h-drawer {
  position: fixed;
  top: 0; right: -290px;
  width: 275px; height: 100%;
  background: #fff;
  z-index: 1070;
  border-left: 1px solid var(--hdr-border);
  display: flex; flex-direction: column;
  transition: right 0.28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.h-drawer.is-open { right: 0; }

.h-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--hdr-border);
  flex-shrink: 0;
  background: #fff;
}
.h-drawer-brand {
  font-size: 17px; font-weight: 700;
  color: #1f2937; letter-spacing: -0.02em;
}
.h-drawer-brand em { font-style: normal; color: var(--hdr-accent); }
.h-drawer-x {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hdr-border); background: #fff; border-radius: 6px;
  cursor: pointer; color: #6b7280;
}
.h-drawer-x:hover { background: var(--hdr-glass-hov); color: #111827; }
.h-drawer-x svg { width: 15px; height: 15px; stroke-width: 2.5; }

.h-drawer-search {
  padding: 12px 14px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.h-drawer-sform {
  display: flex;
  align-items: center;
  height: 38px;
  background: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
}
.h-drawer-sform:focus-within {
  border-color: #d1d5db;
  background: #fff;
}
.h-drawer-sform svg { width: 15px; height: 15px; stroke-width: 2; color: #9ca3af; margin: 0 10px; flex-shrink: 0; }
.h-drawer-sform input {
  flex: 1;
  border: none; background: transparent; outline: none;
  font-family: inherit; font-size: 13.5px; color: #111827;
  padding-right: 8px;
}
.h-drawer-sform input::placeholder { color: #9ca3af; }

.h-drawer-nav { flex: 1; padding: 8px 8px 0; }
.h-drawer-sec {
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #9ca3af; padding: 12px 8px 5px;
}
.h-drawer-link {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 8px; border-radius: 6px;
  font-size: 13.5px; font-weight: 500;
  color: #6b7280; text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.h-drawer-link:hover { background: #f9fafb; color: #111827; }
.h-drawer-link.is-active { background: #eef7f9; color: var(--hdr-accent); font-weight: 600; }
.h-drawer-link.is-active svg { color: var(--hdr-accent); }
.h-drawer-link svg { width: 15px; height: 15px; stroke-width: 2; color: #9ca3af; flex-shrink: 0; }

.h-drawer-foot {
  padding: 12px 12px 20px;
  border-top: 1px solid var(--hdr-border);
  display: flex; flex-direction: column; gap: 7px;
  flex-shrink: 0;
}
.h-drawer-foot .h-primary,
.h-drawer-foot .h-outlined,
.h-drawer-foot .h-ghost {
  width: 100%;
  justify-content: center;
  height: 38px;
  font-size: 13.5px;
}

/* Mobil üst bar — ikonlar + ilan ver */
.h-mob-bar {
  display: none;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.h-mob-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hdr-border);
  border-radius: 8px;
  background: #fff;
  color: var(--hdr-text-muted);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.h-mob-ico:hover {
  background: var(--hdr-glass-hov);
  color: var(--hdr-accent);
  border-color: rgba(0, 114, 135, 0.25);
}
.h-mob-ico svg {
  width: 18px;
  height: 18px;
}
.h-mob-ilan {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  height: 36px;
  border-radius: 8px;
  background: var(--hdr-accent);
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 114, 135, 0.25);
}
.h-mob-ilan svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  flex-shrink: 0;
}

/* Mobil arama — logo / bildirim / ilan ver satırının altı */
.h-search-mob {
  display: none;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .h-search { max-width: none; }
  .h-actions .h-ghost,
  .h-actions .h-outlined,
  .h-actions .h-sep,
  .h-actions .h-user-toggle,
  .h-actions .h-msg-wrap,
  .h-actions .h-primary { display: none; }
  .h-burger { display: flex; }
  .h-actions {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .h-search { display: none; }
  .h-search-mob {
    display: block;
    padding: 0 14px 10px;
    background: var(--hdr-bg-bar);
  }
  .h-search-mob-form {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 10px 0 14px;
    background: #fff;
    border: 1px solid #c9d1d9;
    border-radius: 6px;
    box-shadow:
      inset 0 1px 3px rgba(15, 23, 42, 0.055),
      inset 0 -1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .h-search-mob-form:focus-within {
    border-color: #94a3b8;
    box-shadow:
      inset 0 1px 3px rgba(15, 23, 42, 0.06),
      0 0 0 2px rgba(0, 114, 135, 0.07);
  }
  .h-search-mob-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
  }
  .h-search-mob-voice,
  .h-search-mob-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
  }
  .h-search-mob-voice svg,
  .h-search-mob-submit svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
  }
  .h-search-mob-voice:hover,
  .h-search-mob-submit:hover {
    background: #f1f5f9;
    color: var(--hdr-accent);
  }
  .h-search-mob-submit {
    color: var(--hdr-accent);
  }
  .h-search-mob-voice.is-listening {
    color: var(--hdr-accent);
    background: rgba(0, 114, 135, 0.08);
    animation: hVoicePulse 1.2s ease-in-out infinite;
  }
  @keyframes hVoicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 114, 135, 0.15); }
    50% { box-shadow: 0 0 0 4px rgba(0, 114, 135, 0.12); }
  }
  .h-search-mob-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--hdr-text);
    font-family: inherit;
  }
  .h-search-mob-input::placeholder {
    color: #64748b;
    font-weight: 500;
  }
  .h-bar {
    height: 52px;
    gap: 0;
    padding-left: 14px;
    padding-right: 14px;
    justify-content: flex-start;
  }
  .h-logo {
    min-width: 0;
    flex: 0 1 auto;
    max-width: calc(100% - 260px);
  }
  .h-logo-text { font-size: 1.05rem; }
  .h-logo-img { height: 24px; }
  .h-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 6px;
    align-items: center;
  }
  .h-actions .h-notif-wrap {
    display: block !important;
    flex-shrink: 0;
  }
  .h-actions .h-notif-wrap .h-notif-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--hdr-border);
    border-radius: 8px;
    background: #fff;
    color: var(--hdr-text-muted);
  }
  .h-actions .h-notif-wrap .h-notif-btn:hover,
  .h-actions .h-notif-wrap .h-notif-btn.show {
    background: var(--hdr-glass-hov);
    color: var(--hdr-accent);
    border-color: rgba(0, 114, 135, 0.25);
  }
  .h-mob-bar {
    display: flex;
    margin-left: 0;
  }
  .h-actions .h-outlined,
  .h-actions .h-ghost,
  .h-actions .h-msg-wrap,
  .h-actions .h-sep,
  .h-actions .h-user-toggle,
  .h-actions .h-primary {
    display: none !important;
  }
  .h-burger {
    display: flex;
    width: 36px;
    height: 36px;
    margin-left: 4px;
    flex-shrink: 0;
  }
  .h-drawer-foot:empty {
    display: none;
    padding: 0;
    border: none;
  }
  .h-catnav {
    --h-catnav-h: auto;
    box-shadow: none;
    border-bottom: 1px solid var(--hdr-border);
  }
  .h-catnav-box {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  .h-catnav-scroll {
    display: none;
  }
  .h-catnav-mob {
    display: block;
    width: 100%;
    padding: 0 10px 6px;
  }
  .h-catnav-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    margin: 0;
    border: 1px solid var(--hdr-border);
    border-radius: 10px;
    background: var(--hdr-glass);
    color: var(--hdr-text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  }
  .h-catnav-toggle:hover {
    background: var(--hdr-glass-hov);
  }
  .h-catnav-mob.is-open .h-catnav-toggle {
    background: #eef7f9;
    border-color: rgba(0, 114, 135, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 114, 135, 0.08);
  }
  .h-catnav-toggle-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--hdr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hdr-accent);
  }
  .h-catnav-toggle-ico svg {
    width: 15px;
    height: 15px;
  }
  .h-catnav-toggle-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .h-catnav-toggle-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--hdr-text);
    line-height: 1.2;
  }
  .h-catnav-toggle-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--hdr-accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .h-catnav-toggle-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--hdr-text-muted);
    transition: transform 0.2s ease;
  }
  .h-catnav-mob.is-open .h-catnav-toggle-chevron {
    transform: rotate(180deg);
  }
  .h-catnav-mob-panel {
    display: none;
    overflow: hidden;
  }
  .h-catnav-mob.is-open .h-catnav-mob-panel {
    display: block;
    animation: hCatMobIn 0.2s ease;
  }
  @keyframes hCatMobIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: none; }
  }
  .h-catnav-list--mob-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0 2px;
    margin: 0;
    width: 100%;
    list-style: none;
    min-height: 0;
  }
  .h-catnav-list--mob-stack .h-catnav-li {
    width: 100%;
    flex-shrink: 0;
  }
  .h-catnav-list--mob-stack .h-catnav-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    padding: 7px 8px;
    border-radius: 8px;
    text-align: left;
  }
  .h-catnav-list--mob-stack .h-catnav-item.is-active {
    background: #eef7f9;
    color: var(--hdr-accent);
  }
  .h-catnav-list--mob-stack .h-catnav-icon {
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .h-catnav-list--mob-stack .h-catnav-icon svg {
    width: 15px;
    height: 15px;
  }
  .h-catnav-list--mob-stack .h-catnav-label {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .h-catnav-help {
    display: none;
  }
}
@media (max-width: 640px) {
  .h-bar { padding-left: 12px; padding-right: 12px; }
}

/* Bildirim */
.h-notif-wrap { position: relative; }
.h-notif-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--hdr-border);
  border-radius: 8px;
  background: #fff;
  color: var(--hdr-text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.h-notif-btn:hover {
  background: var(--hdr-glass-hov);
  color: #374151;
}
.h-notif-btn .h-notif-ico {
  display: flex; align-items: center; justify-content: center;
  line-height: 0; color: inherit;
}
.h-notif-btn .h-notif-ico svg { width: 18px; height: 18px; flex-shrink: 0; }
.h-notif-badge {
  position: absolute; top: 2px; right: 2px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 8px; background: #ef4444; color: #fff;
  font-size: 10px; font-weight: 700; line-height: 16px; text-align: center;
  display: none;
  box-shadow: 0 0 0 2px #fff;
}
.h-notif-badge.show { display: block; }
.h-notif-dd { width: min(380px, calc(100vw - 24px)); max-height: 420px; overflow: hidden; padding: 0; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.h-notif-dd .dropdown-header { padding: 12px 14px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--hdr-border); }
.h-notif-list { max-height: 320px; overflow-y: auto; }
.h-notif-item {
  display: block; padding: 10px 14px; border-bottom: 1px solid #f9fafb;
  text-decoration: none; color: inherit; font-size: 13px; transition: background .15s;
}
.h-notif-item:hover { background: #f9fafb; }
.h-notif-item.unread { background: #f0f9ff; }
.h-notif-item .t { font-weight: 600; color: #111827; margin-bottom: 2px; }
.h-notif-item .b { color: #6b7280; font-size: 12px; line-height: 1.35; }
.h-notif-item .tm { font-size: 11px; color: #9ca3af; margin-top: 4px; }
.h-notif-foot { padding: 8px; border-top: 1px solid var(--hdr-border); text-align: center; }
.h-notif-foot a { font-size: 12px; font-weight: 600; color: var(--hdr-accent); text-decoration: none; }
.h-notif-empty { padding: 24px 16px; text-align: center; color: #9ca3af; font-size: 13px; }
