/* ✅ الهيدر الأول */
.header-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#0353a4;
  color:#fff;
  padding:15px 20px;
  height:75px;
  position:relative;
  overflow:hidden;
}

.site-name{
  font-size:25px;
  font-weight:bold;
  font-family:'Aljazeera',Arial,sans-serif;
}

.logo{display:flex;align-items:center;height:100%;}
.logo img{height:65px;display:block;}

/* ✅ الهيدر الثاني */
.header-auth{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:10px;
  padding:5px 15px;
  background:#f8f9fa;
  overflow-x:auto;
  white-space:nowrap;
  max-width:100%;
  direction:ltr;
}

.header-auth button{
  padding:3px 15px;
  font-size:15px;
  border:none;
  background:#0353a4;
  color:#fff;
  cursor:pointer;
  border-radius:5px;
  transition:.3s;
  direction:rtl;
}
.header-auth button:hover{background:#0056b3;}


/* نافذة منبثقة */
.popup2{
  font-family:'Aljazeera',Arial,sans-serif;
  position:relative;
  margin:0 auto;
  background:#0466c8;
  color:#fff;
  padding:5px;
  font-size:15px;
  text-align:center;
  box-shadow:0 2px 5px rgba(0,0,0,.1);
  border-radius:5px;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.popup2.show{opacity:1;visibility:visible;}

.homeOne{
  background:#0353a4;
  color:#fff;
  padding: 0 3px;
}

/* شريط الأقسام */
.header-main,
.header-sub{
  display:flex;
  align-items:center;
  gap:6px;
  padding:3px 5px;
  margin:1px 0;
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
  direction:rtl;
  scrollbar-width:none;
}
.header-main::-webkit-scrollbar,
.header-sub::-webkit-scrollbar{height:0;background:transparent;}

.header-main button,
.header-sub button,
.category-btn{
  flex:0 0 auto;
  border:none;
  cursor:pointer;
  padding:5px 9px;
  font-size:15px;
  border-radius:6px;
  color:#f9fafb;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.header-main .category-btn{background:#0353a4;}
#first-branches button{background:#0353a4;}
#second-branches button{background:#0353a4;}

.header-main button:hover,
.header-sub button:hover,
.category-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(15,23,42,.25);
  opacity:.96;
}
.header-main button:active,
.header-sub button:active,
.category-btn:active{
  transform:translateY(0);
  box-shadow:none;
  opacity:.9;
}
