@media (min-width: 992px) {
    /* جعل الفوتر حاوية مرجعية */
    footer, .footer {
        position: relative !important; 
    }
    
    /* ضبط الحاوية اليسرى بالكامل لمنع التداخل */
    .footer-bottom__inside-footer-top {
        position: absolute !important;
        left: 2% !important; /* دفع العنصر لأقصى اليسار */
        bottom: 30px !important;
        width: 320px !important; /* تحديد العرض بدقة لمنع التداخل مع الروابط */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* توسيط محتويات هذا البلوك */
    }
}

/* ----------------------------------- */
/* تنسيق وتوسيط قسم تطبيقات الجوال تحديداً */
/* ----------------------------------- */
salla-apps-icons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 15px !important;
}

salla-apps-icons h3 {
    text-align: center !important;
    width: 100% !important;
}

.s-apps-icons-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important; /* لضمان عدم خروج الأزرار عن المساحة */
    gap: 10px !important; /* مسافة بسيطة بين زري آبل وجوجل */
}

/* توسيط عنوان النشرة البريدية ليتناسق مع التطبيقات (اختياري) */
.aali-newsletter-wrapper {
    text-align: center !important;
    width: 100% !important;
}

.aali-newsletter-wrapper .newsletter-title h3 {
    text-align: center !important;
}/* إخفاء قسم النشرة البريدية */
.aali-newsletter-wrapper {
    display: none !important;
}


/* تحويل رابط الماركات ليتوافق مع تصميم القائمة (Flexbox) */
a.brands-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* إضافة الأيقونة الوهمية بجانب النص */
a.brands-link::before {
    content: "";
    display: inline-block;
    width: 45px; /* عرض الأيقونة - يمكنك تعديله ليطابق باقي الأيقونات */
    height: 45px; /* ارتفاع الأيقونة */
    border-radius: 50%; /* لجعل خلفية الأيقونة دائرية تماماً مثل باقي القائمة */
    background-color: #fce8eb; /* لون الخلفية الوردي الفاتح (اختياري، يمكنك حذفه إذا كانت صورتك بخلفية) */
    background-image: url('https://cdn.salla.sa/AoyGZ/i5g6ChJ8vfKeFOgq2RDz3bFzQS1GOOjYcmfhbVx1.png'); /* ⚠️ استبدل هذا النص برابط صورتك */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 0.5rem; /* المسافة بين الأيقونة والنص في الجوال */
}

/* ضبط المسافة للشاشات الأكبر (التابلت) */
@media (min-width: 768px) {
    a.brands-link::before {
        margin-left: 1.5rem !important;
    }
}