/**
 * Features Strip - Caza Souq
 * شريط الميزات للصفحة الرئيسية
 */

/* تنسيق حاوية شريط الميزات */
.features-strip {
    background-color: #37424c;
    padding: 25px 0;
    direction: rtl;
    width: 100%;
}

.features-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* تنسيق عنصر الميزة الواحدة */
.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 15px;
    flex: 1;
    height: 110px;
}

/* تنسيق أيقونة الميزة */
.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    border: 2px solid #2d343b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px; /* RTL - الأيقونة على يمين النص */
    background-color: rgba(0, 0, 0, 0.2);
}

.feature-icon i {
    color: #f2b200;
    font-size: 24px;
}

/* تنسيق نصوص الميزة */
.feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-title {
    color: #f2b200;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 6px 0;
}

.feature-desc {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .features-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 18px !important;
        padding: 10px;
    }
    .feature-item {
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 10px 0 !important;
        border-bottom: none !important;
        border-right: 1px solid #2d343b;
        height: auto !important;
        box-sizing: border-box;
    }
    .feature-item:nth-child(2n) {
        border-right: none !important;
    }
}


/* التكيف مع شاشات أصغر */
@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 15px 0;
    }
    
    .feature-icon {
        margin: 0 0 10px 0;
    }
    
    .feature-content {
        align-items: center;
    }
}
