/* Add custom CSS styles below */ 
.s-product-options-option {
    flex-direction: column !important;
}

.s-product-options-option-label b {
    display: flex;
    width: 200%;
}
/* إخفاء قسم التسعير بالكامل من بطاقات المنتجات */
.product-card-content-meta-pricing {
    display: none !important;
}

.s-product-options-option-label b {
    display: inline-block !important;
    width: 100% !important;
    white-space: normal !important; /* يسمح بفصل السطور إذا طال النص */
    word-spacing: 5px !important; /* مسافة بين الكلمات */
    text-align: right !important;
    padding: 10px 0 !important;
    font-size: 16px !important;
}

/* تنسيق عام لجميع خيارات المنتجات */
.s-product-options-option {
    margin-bottom: 25px !important;
    width: 100% !important;
    direction: rtl !important;
}

/* تنسيق تسميات الخيارات */
.s-product-options-option-label {
    display: block !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    text-align: right !important;
}

/* تحسين النصوص داخل التسميات */
.s-product-options-option-label b,
.s-product-options-option-label span {
    display: inline !important;
    font-size: 16px !important;
    color: #333 !important;
    word-spacing: 4px !important;
    letter-spacing: 0.3px !important;
}

/* تنسيق علامة الحقل الإلزامي (*) */
.s-product-options-option-label span {
    color: #e53935 !important;
    font-weight: bold !important;
    margin-right: 5px !important;
}

/* تحسين حقول الإدخال بأنواعها */
.s-product-options-text input[type="text"],
.s-product-options-text input[type="number"],
.s-product-options-text input[type="email"],
.s-product-options-text textarea,
.s-product-options-select select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    text-align: right !important;
    background: #f9f9f9 !important;
    transition: all 0.3s ease !important;
}

/* تأثيرات التركيز على الحقول */
.s-product-options-text input:focus,
.s-product-options-text textarea:focus,
.s-product-options-select select:focus {
    border-color: #1976d2 !important;
    box-shadow: 0 0 0 3px rgba(25,118,210,0.1) !important;
    background: #fff !important;
}

/* تنسيق خيارات السيلكت (القوائم المنسدلة) */
.s-product-options-select select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg...") !important;
    background-position: left 15px center !important;
    background-repeat: no-repeat !important;
    padding-right: 15px !important;
}

/* تحسين خيارات الراديو والاختيار */
.s-product-options-radio .option,
.s-product-options-checkbox .option {
    margin-bottom: 8px !important;
    padding-right: 25px !important;
}

/* تنسيق للجوال */
@media (max-width: 768px) {
    .s-product-options-option {
        margin-bottom: 20px !important;
    }
    
    .s-product-options-option-label b {
        font-size: 15px !important;
    }
    
    .s-product-options-text input,
    .s-product-options-select select {
        padding: 10px 12px !important;
    }
}

/* لتوسيط عنوان المنتج */
.product-card-content-meta-title {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
}

___