/* يخلي الوصف يتمدد على كامل الشاشة */
.product-single .product__description {
    width: 100vw !important;      /* يغطي عرض الشاشة */
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 100;
    right: 100;
    transform: none !important;
    box-sizing: border-box;
    overflow-x: hidden;           /* يمنع التحرك يمين/يسار */
    text-align: center;           /* لو فيه نص يخليه بالمنتصف */
}

/* الصور داخل الوصف فل سكرين */
.product-single .product__description img {
    display: block;
    width: 100% !important;      /* يملي الشاشة */
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: cover;            /* يخلي الصورة متناسبة */
}