/* =========================================
   Replace Breadcrumb Separator Icon
   ========================================= */

/* 1. Hide the original SVG icon from the theme */
.separate_icon svg {
    display: none !important;
}

/* 2. Add the new custom icon in its place */
.separate_icon::before {
    content: "" !important;
    display: inline-block !important;
    width: 40px !important;  /* يمكنك تعديل عرض الأيقونة */
    height: 40px !important; /* يمكنك تعديل ارتفاع الأيقونة */
    background-image: url("https://lastingsmile.com/wp-content/uploads/2025/08/icon-breadcrumb-new40-x-40-px-1.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}


/* =========================================
   Replace Sub-Heading Icon (Star)
   ========================================= */

/* 1. This rule targets the icon in both LTR and RTL */
.layout-3 .section-title .elementor-heading-title::before {
    background-image: url("https://lastingsmile.com/wp-content/uploads/2025/08/icon-star-new40-x-40-px.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 16px !important;  /* يمكنك تعديل عرض الأيقونة */
    height: 16px !important; /* يمكنك تعديل ارتفاع الأيقونة */
}

/* 2. This rule adjusts the icon's position for RTL (Arabic) */
body.rtl .layout-3 .section-title .elementor-heading-title::before {
    left: auto;
    right: 0;
}