/* =====================================================
   SUHAD STORE - GLASS HEADER
===================================================== */

body {
  background: linear-gradient(
    135deg,
    #FAF8F5 0%,
    #F3ECE1 40%,
    #E8ECE3 75%,
    #6B705C 100%
  ) !important;
  background-attachment: fixed;
}


.main-nav-container{
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  margin: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(85,98,76,0.10);
  position: sticky;
  top: 10px;
  z-index: 999;
  transition: .3s;
}

.main-nav-container .flex.items-stretch.justify-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
  min-height: 56px;
}

/* الشعار: داخل الصف الطبيعي، بدون absolute إطلاقًا */
.navbar-brand{
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 14px;
  padding: 6px 14px;
  box-shadow: 0 4px 14px rgba(85,98,76,0.10);
  transition: .3s;
}

.navbar-brand:hover{
  transform: scale(1.03);
}

.navbar-brand img{
  max-height: 42px !important;
  width: auto;
}

/* القائمة */
custom-main-menu a{
  font-weight: 500;
  color: #2F3437;
}

custom-main-menu a:hover{
  color: #55624C;
}

/* البحث */
.header-search{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(85,98,76,0.08);
}

/* الأيقونات: دوائر زجاجية موحدة */
.header-btn__icon,
.sicon-user,
.sicon-shopping-bag,
.sicon-search{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  transition: .3s;
  flex-shrink: 0;
}

.header-btn__icon:hover,
.sicon-user:hover,
.sicon-shopping-bag:hover,
.sicon-search:hover{
  background: #55624C;
  border-color: #55624C;
  color: #fff;
}

/* ===========================
   MOBILE
=========================== */
@media(max-width: 991px){

  .main-nav-container{
    margin: 8px;
    padding: 8px 12px;
    border-radius: 18px;
  }

  .main-nav-container .flex.items-stretch.justify-between{
    min-height: 48px;
  }

  .navbar-brand{
    padding: 4px 10px;
    border-radius: 12px;
  }

  .navbar-brand img{
    max-height: 34px !important;
  }

  .header-btn__icon,
  .sicon-user,
  .sicon-shopping-bag,
  .sicon-search{
    width: 34px;
    height: 34px;
  }
}

/* ===========================
   SMALL PHONES
=========================== */
@media(max-width: 420px){
  .navbar-brand span,
  .navbar-brand img{
    max-height: 28px !important;
  }
}