/* غلاف بنفس عرض كونتينر سلة */
.sigl-wrapper { padding: 16px 0; }
.sigl-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* الجريد: 3 صور جنب بعض لو في مساحة، وإلا يلف لسطر جديد */
.sigl-grid {
  display: flex;
  align-items: center;
  justify-content: center;   /* توسيط الصف كله */
  gap: 12px;                 /* المسافة بين الصور */
 flex-wrap: nowrap;       /* ❌ منع النزول تحت */
  overflow-x: auto;        /* ✅ تمكين السحب الأفقي في الشاشات الصغيرة */
  -webkit-overflow-scrolling: touch; /* سلاسة في الموبايل */
}

.sigl-grid::-webkit-scrollbar {
  display: none; /* إخفاء الاسكرول في كروم/سفاري/إيدج */
}

/* كل عنصر صورة */
.sigl-item {
  display: inline-block;
  flex: 0 0 auto;            /* لا تكبير ولا تصغير إجباري */
  border-radius: 10px;
  overflow: hidden;          /* عشان أي تأثير أو حدود ينطبق صح */
  text-decoration: none;
}

/* الصورة بمقاسها الأصلي */
.sigl-item img {
  display: block;
  width: auto;               /* بالمقاس الأصلي */
  height: auto;              /* بالمقاس الأصلي */
  max-width: 100%;           /* فقط لو الصورة أكبر من الحاوية تصغر */
  image-rendering: auto;
  transition: transform .25s ease;
}

/* لمسة بسيطة على الهوفر */
.sigl-item:hover img { transform: scale(1.03); }

/* موبايل: هتتلف تلقائي بسبب flex-wrap */
@media (max-width: 768px) {
  .sigl-grid { gap: 10px; }
}
/* إخفاء زر القائمة (البرجر) والمنيو */
.mburger,
custom-main-menu,
.main-menu,
.main-menu li,
.main-menu a,
.sub-menu {
    display: none !important;
}

/* تنسيق الهيدر العام */
.inner .flex.items-stretch {
    justify-content: flex-start !important;
    align-items: center;
    position: relative;
    min-height: 80px;
    padding: 10px 20px;
    box-sizing: border-box;
}

/* اللوجو في النص على الديسكتوب */
.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
}

.navbar-brand img {
    width: 100px !important;
    height: 100px !important;
    min-height: 80px;
    display: block;
}

/* أيقونات السلة والحساب على الشمال (ديسكتوب) */
.flex.items-center.justify-end {
    margin-right: auto;
    margin-left: 0 !important;
    display: flex;
    align-items: center;
    gap: 15px;
    order: -1;
}

/* 🎯 ضبط الموبايل */
@media (max-width: 767px) {
  /* اللوجو يروح يمين */
  .navbar-brand {
      position: relative !important;
      left: auto !important;
      right: auto !important;
      transform: none !important;
      margin-left: auto !important;  /* 👈 يخلي اللوجو يزق لليمين */
      margin-right: 0 !important;
      order: 2; /* 👈 يحطه في آخر الهيدر (يمين) */
      max-width: 50px;
  }

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

  /* الأيقونات تفضل شمال */
  .flex.items-center.justify-end {
      margin-left: 0 !important;
      margin-right: auto !important;
      order: 1; /* 👈 الأيقونات تيجي قبل اللوجو */
      gap: 10px;
  }

  .inner .flex.items-stretch {
      min-height: 65px;
      padding: 8px 12px;
  }
}