/*
Theme Name: Vara Child
Theme URI: http://gradastudio.com/vara
Description: This is a child theme of Vara.
Author: GradaStudio
Author URI: https://themeforest.net/user/gradastudio
Template: vara
Version: 1.0.0
*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
.rtl .elementor *:not(i):not(.fa):not([class*="icon"]):not(.elementor-icon) {
  font-family: 'Cairo', sans-serif !important;
}
.rtl ul.menu.site-header-menu li.menu-item > a,
.rtl.elementor a,
.rtl.elementor p,
.rtl .elementor span {
  font-family: 'Cairo', sans-serif !important;
}
#SR7_1_1 .vara-bullets-light.sr7-bullets {
    width: 280px !important;
}

.toggle-children {
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
    color: #333;
    user-select: none;
    display: inline-block;
    padding: 0 5px;
    background-color: #f0f0f0;
    border-radius: 3px;
    position: relative;
    z-index: 10; /* للتأكد من أن الزر فوق الرابط */
}

.cat-parent > a {
    position: relative;
    z-index: 1;
}

/* في ملف style.css */
.cat-parent > a {
    position: relative;
    padding-right: 20px; /* مساحة للزر */
}

.cat-parent > a::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 3px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
	display: none;
}

.cat-parent > a::after:hover {
    background-color: #e0e0e0;
}

.cat-parent ul.children {
    display: none;
}

.cat-parent.active > a::after {
    content: '−';
}

.cat-parent.active > ul.children {
    display: block;
}

span.toggle-children {
    margin: 0 15px;
    background: #eee;
    padding: 0px 5px;
    height: 20px;
    width: 20px;
    display: inline-block;
    cursor: pointer;
}