/* استایل عمومی برای ویجت ویژگی‌های محصولات */
.my-product-features {
    list-style-type: none; /* حذف نقاط لیست */
    padding: 0; /* حذف پدینگ */
    margin: 0; /* حذف مارجین */
}

.my-product-features li {
    display: flex; /* استفاده از فلاکس برای تراز کردن آیکن و متن */
    align-items: center; /* تراز عمودی */
    margin-bottom: 10px; /* فاصله بین آیتم‌ها */
    font-size: 16px; /* اندازه پیش‌فرض فونت */
    color: #333; /* رنگ متن پیش‌فرض */
    list-style-type: none;
}

.my-product-features li i {
    margin: 8px; /* فاصله بین آیکن و متن */
    color: #0073aa; /* رنگ آیکن */
}

.my-product-features li strong {
    font-weight: bold; /* ضخیم شدن عنوان ویژگی */
}