/* تنسيق أيقونات التطبيقات في header الموبايل */
.app-store-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 2px;
}

.app-store-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.app-store-image {
    height: 26px;
    width: auto;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* تحسين للشاشات الصغيرة جداً */
@media (max-width: 360px) {
    .app-store-icons {
        gap: 6px;
    }
    
    .app-store-image {
        height: 22px;
    }
}

/* إضافة تأثيرات للأيقونات */
.app-store-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-store-link:hover::before {
    opacity: 1;
}

/* تحسين لأيقونة Apple */
.app-store-link.apple i::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: -3px;
    right: 2px;
}

/* تحسين التوسطة في mobile-top-bar */
.mobile-top-bar .mobile-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* التأكد من عدم تداخل الأيقونات مع المحتوى الآخر */
.mobile-top-bar-content .login-link {
    flex-shrink: 0;
}

.mobile-top-bar-content .app-store-icons {
    flex-shrink: 0;
}
