/* ================================= */
/*      FULL WIDTH FEATURED SECTION  */
/* ================================= */

/* كسر الكونتينر */
.custom-featured-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

/* السكشن */
.featured-section {
    padding: 100px 0;
    background: #ffffff;
    direction: rtl;
}

/* الكونتينر الداخلي */
.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* الجريد */
.featured-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* النص */
.featured-title {
    font-size: 44px;
    margin-bottom: 25px;
}

.featured-description {
    color: #666;
    margin-bottom: 35px;
}

/* الزر */
.shop-btn {
    display: inline-block;
    background: linear-gradient(135deg,#d4a574,#c99456);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    transition: 0.4s ease;
}

.shop-btn:hover {
    transform: translateY(-3px);
}

/* الصور */
.featured-images {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.image-box {
    overflow: hidden;
    height: 500px;
    transition: 0.4s ease;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 900px) {
    .featured-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-images {
        grid-template-columns: 1fr;
    }
}

/* اخفاء من صفحة المنتج */
body[class*="product"] .custom-featured-wrapper {
    display: none !important;
}