@media (max-width: 768px) {
    /* استهداف حاوية الشعار الرئيسية في ثيم ساند وإجبارها على التوسط بالكامل */
    header .logo, 
    header .logo-wrapper, 
    header .site-logo, 
    header .header-logo,
    .store-header .logo-wrapper,
    [class*="logo-wrapper"], 
    [class*="header-logo"] {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: auto !important;
        max-width: 160px !important; /* يحافظ على حجم متناسق للشعار */
        z-index: 99 !important;
        float: none !important;
    }

    /* ضمان محاذاة الرابط والصورة داخل الحاوية في المنتصف تماماً */
    header .logo a, 
    header .logo img,
    [class*="logo"] img {
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* منع اختفاء الأزرار الجانبية (القائمة والسلة) وتأمين مكانها */
    header .header-buttons, 
    header .nav-buttons,
    .store-header [class*="burger"],
    .store-header [class*="cart"] {
        z-index: 100 !important;
    }
}