/* جعل الشعار في المنتصف بشكل ثابت على جميع مقاسات الجوال */
@media (max-width: 1023px) {

  /* ترتيب الحاوية الخاصة باللوقو */
  .salla-theme_2 .site-header .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center !important; /* اللوقو في النص */
    width: 100%;
  }

  /* ضبط الشعار نفسه */
  .salla-theme_2 .site-header .logo-wrapper .logo {
    height: 70px !important;
    margin: 0 !important;
  }
}

/* إخفاء زر البحث على الموبايل (اختياري) */
@media (max-width: 1023px) {
    button[aria-label="Search"] {
        display: none !important;
    }
}