/* ================================= */
/*        FULL WIDTH FEATURES        */
/* ================================= */

/* كسر الكونتينر */
.custom-features-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

/* السكشن */
.features-section {
    padding: 80px 0;
    background: #fafafa;
    direction: rtl;
}

/* الكونتينر الداخلي */
.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* الجريد */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* العنصر */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* الأيقونة */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    stroke: #1a1a1a;
    stroke-width: 1.5;
    fill: none;
}

/* العنوان */
.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* الوصف */
.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* اخفاء من صفحة المنتج */
body[class*="product"] .custom-features-wrapper {
    display: none !important;
}