/* Sticky top navbar */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: saturate(180%) blur(10px);
}

/* Nav inner container */
.site-header .nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Left: burger / menu */
.site-header .nav__left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 72px;
}

/* Center: logo */
.site-header .nav__logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.site-header .nav__logo a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Right: icons (cart, account, etc.) */
.site-header .nav__right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 72px;
}

/* Links */
.site-header a{
  color: #111;
  text-decoration: none;
}
.site-header a:hover{
  opacity: .75;
}

/* Buttons/icons */
.nav__icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  cursor: pointer;
}
.nav__icon-btn:hover{
  border-color: rgba(0,0,0,.18);
}

/* Desktop menu row (optional) */
.site-header .nav__links{
  display: none;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}

/* Responsive: show links on wider screens */
@media (min-width: 992px){
  .site-header .nav__links{
    display: flex;
  }
  .site-header .nav__logo{
    flex: 0;
  }
}

/* RTL support (Arabic) */
html[dir="rtl"] .site-header .nav{
  flex-direction: row;
}