/* 1. إخفاء أزرار التمرير والترقيم */
.swiper-pagination,
.slider_buttons_container,
.slider_button {
    display: none !important;
}

/* 2. تحويل الحاوية لشبكة منظمة (3 عناصر للكمبيوتر) */
.swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 20px !important; /* المسافة بين البطاقات */
    transform: none !important; /* إلغاء حركة السلايدر */
    width: 100% !important;
}

/* 3. تصميم عصري وتأثير مرور الماوس */
.swiper-slide {
    width: 100% !important;
    margin: 0 !important;
    height: auto !important;
    border-radius: 16px; /* حواف انسيابية دائرية */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* حركة ناعمة */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* ظل ناعم وخفيف */
    cursor: pointer;
    overflow: hidden;
}

/* تأثير الـ Hover عند التفاعل بالماوس */
.swiper-slide:hover {
    transform: translateY(-8px); /* ارتفاع البطاقة لأعلى */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); /* تعميق الظل لإعطاء إحساس بالبروز */
}

/* 4. إعدادات الموبايل (قسمين جنب بعض) */
@media (max-width: 768px) {
    .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 جنب بعض للموبايل */
        gap: 12px !important; /* مسافة أصغر تناسب الشاشات الصغيرة */
    }
}