/* 1. إخفاء القائمة الجانبية (الثلاثة خطوط) بجميع أشكالها لتقليل التشتت */
.header-side-menu-icon, .icon-menu, .side-menu-open, .header__right-side .icon-menu, [class*="icon-menu"], [class*="side-menu"], .s-header__menu-toggle {
    display: none !important;
}

/* 2. إخفاء أيقونة وقسم التخفيضات والعروض */
.main-menu__item--sale, .nav-link[href*="sale"], .special-offers-link, a[href*="offers"], .product-card__sale-label, .s-nav__item--sale {
    display: none !important;
}

/* 3. تنظيف الهيدر من البحث والوضع الليلي مع "إظهار" أيقونة تسجيل الدخول للعميل */
.header-search-icon, .search-icon, .site-header__search, [class*="search"], .theme-mode-toggle {
    display: none !important;
}
.header-user-icon, .icon-user, .s-header__user-control, .header__user-login {
    display: flex !important; /* إظهار خانة تسجيل الدخول فوق */
    visibility: visible !important;
    opacity: 1 !important;
}

/* 4. إجبار زر "إضافة للسلة" على الظهور بشكل دائم وتنسيقه كبطل للصفحة */
.product-card__add-to-cart, .s-product-card__add-to-cart {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    width: 100% !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-top: 10px !important;
    font-weight: bold !important;
    justify-content: center !important;
}

/* 5. إظهار وصف المنتج، الكمية، والخيارات فوراً لسهولة الشراء السريع */
.product-card__description, .product-card__options, .product-card__quantity, .product-card__footer, [class*="product-card__quantity"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 10px !important;
}

/* 6. منع الانتقال لصفحة المنتج (تعطيل الروابط للبقاء في الرئيسية) */
.product-card__image a, .product-card__title a {
    pointer-events: none !important;
    cursor: default !important;
}

/* 7. تنسيق بطاقة المنتج (Landing Page Style) لتتوسط الصفحة وتبرز بقوة */
.product-card {
    max-width: 500px !important;
    width: 95% !important;
    margin: 30px auto !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    padding: 20px !important;
    border-radius: 20px !important;
    background: #fff !important;
}

/* 8. إخفاء الفلاتر، أدوات التصنيف، والمفضلة (القلب) */
.store-products-filter, .products-sorting, .category-header, .product-card__wishlist, [class*="filter"], [class*="sorting"] {
    display: none !important;
}

/* 9. تحسين مظهر السعر وتكبيره ليكون واضحاً للعميل */
.product-card__price {
    font-size: 1.6rem !important;
    color: #000 !important;
    text-align: center !important;
    font-weight: bold !important;
}

/* 10. إخفاء قسم "حسابي" والروابط القانونية من أسفل الصفحة تماماً */
.footer-main .footer-column:not(:last-child), 
.s-footer__column-title:not(:contains("تواصل")), 
.footer-links, .s-footer__links, [class*="footer__menu"], .footer-copyrights {
    display: none !important;
}

/* 11. إظهار قسم "تابعنا" فقط في الأسفل (تيك توك وانستقرام) */
.footer-column, .s-footer__social {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}
.social-icons a, .s-footer__social-link {
    display: inline-block !important;
    margin: 10px !important;
    font-size: 26px !important;
    color: #000 !important;
}