.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  direction: rtl;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-icon {
  font-size: 28px;
  color: var(--color-surface);
}
.brand-icon svg {
  width: 32px;
}
.brand-text h1 {
  font-size: 20px;
  margin: 0;
  color: var(--color-brand-accent);
}
.brand-text span {
  font-size: 14px;
  color: var(--color-muted);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-desktop a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.2s;
}
.nav-desktop a:hover {
  color: var(--color-brand-accent);
}

.icon-btn {
  font-size: 18px;
}

.btn-login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.2s;
}
.btn-login:hover {
  background: var(--color-brand-accent);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background: white;
}
.nav-mobile a {
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}
.nav-mobile a:hover {
  color: var(--color-brand-accent);
}
.nav-mobile .mobile {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-mobile.active {
    display: flex;
  }
}

/*# sourceMappingURL=header.css.map */
