/* 1. إزالة المسافة الفارغة وجعل البانر يملأ العمود بالكامل بجانب الكروت */
.p_w_d_design-container {
    min-height: unset !important;
    height: 380px !important;    /* ارتفاع يطابق كروت المنتجات تماماً */
    width: 100% !important;     /* إلغاء المسافة الفارغة على يسار البانر */
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* 2. ضبط الصورة لتغطي كامل المساحة بشكل متناسق وبدون تشويه */
.p_w_d_design-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}