/* التنسيق النهائي: 3 أيقونات في صف واحد بدون سحب - بحر النوادر */
#bahr-feats-final {
    width: 100% !important;
    margin: 30px 0 !important;
    direction: rtl !important;
    background: transparent !important;
}

.bahr-feats-title {
    text-align: center !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin-bottom: 20px !important;
}

.bahr-grid-system {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 10px !important; /* مسافة بسيطة بين الأيقونات */
    padding: 0 10px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.feat-item {
    flex: 1 !important; /* توزيع متساوي للثلاثة */
    text-align: center !important;
}

.feat-item img {
    width: 100% !important;
    max-width: 150px !important; /* حجم متوازن للكمبيوتر */
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important;
}

/* حركة النط الخفيفة */
.feat-item:hover img {
    transform: translateY(-8px) !important;
}

/* ضبط الجوال: 3 أيقونات جنب بعض بدون سحب */
@media (max-width: 768px) {
    .bahr-grid-system {
        gap: 5px !important; /* تضييق المسافة ليتسع الصف للثلاثة */
        padding: 0 5px !important;
    }

    .feat-item img {
        max-width: 100px !important; /* حجم مثالي ليظهر الثلاثة بوضوح في شاشة الجوال */
    }

    .bahr-feats-title {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
}