/* עד 1024px – כולל טאבלטים וטלפונים */
@media (max-width: 1024px) {
    /* עיצוב לניידים וטאבלטים */


.custom-mobile-nav-list {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

body {
    overflow-x: hidden;
}

.custom-mobile-nav-container {
    overflow: hidden;
}

.custom-mobile-nav {
    overflow-y: auto; 
    max-height: 100vh;
}

a.menu-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    color: #292d2f;
    text-decoration: none;
    font-size: 16.5px;
    font-weight: 500;
}

img.right-icon {
    margin: 20px 15px 20px 30px;
    width: 120px;
    height: 80px;
    border: 2px solid black;
    border-radius: 25px;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}


img.right-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* ×©×›×‘×ª ×ž×˜ */
    border-radius: 25px; /* ×¤×™× ×•×ª ×ž×¢×•×’×œ×•×ª */
}

span.menu-text {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}


span.menu-arrow {
    font-size: 18px;
    width: 30px;
    border-radius: 100px;
    height: 30px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    background: lightslategrey;
    color: #fafafa;
}



a{}

.custom-mobile-nav-list {
     /* ×’×•×‘×” ×ž×§×¡×™×ž×œ×™ ×™×—×¡×™×ª ×œ×ž×¡×š */
    overflow-y: auto; /* ×”×¤×¢×œ×ª ×’×œ×™×œ×” ×× ×›×™×ª ×¨×§ ×›×©×¦×¨×™×š */
    scrollbar-width: thin; /* ×”×•×¤×š ××ª ×”×¡×§×¨×•×œ ×œ×‘×¨ ×“×§ */
    scrollbar-color: #aaa #f5f5f5; /* ×¦×‘×¢ ×¡×§×¨×•×œ */
}

/* âœ… ×¢×™×¦×•×‘ ×”×œ×•×’×• â€“ ×™×™×©×•×¨ ×œ×™×ž×™×Ÿ */
.logo-main-menu {
    display: block;
    position: absolute;
    top: 10px;
    right: 15px; /* â—â— ×ž×™×•×©×¨ ×œ×™×ž×™×Ÿ â—â— */
    width: 120px;
    height: auto;
}



/* âœ… ×¢×™×¦×•×‘ ×¤×¡ ×’×œ×™×œ×” */
.custom-mobile-nav::-webkit-scrollbar {
    width: 6px;
}

.custom-mobile-nav::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

/* âœ… ×”×¦×’×ª ×”×ª×¤×¨×™×˜ */
.custom-mobile-nav-container.active {
}

#custom-mobile-nav-overlay.active {
    display: block;
}

/* âœ… ×›×¤×ª×•×¨×™ × ×™×•×•×˜ */
.custom-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

/* âœ… ×¢×™×¦×•×‘ ×›×¤×ª×•×¨ ×—×–×•×¨ */
.back-btn, .home-btn {
    display: none;
}

.back-btn.show, .home-btn.show {
    display: block;
}



.custom-mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    transition: opacity 0.3s ease-in-out;
}


#custom-mobile-nav  {
        background: #fafafa;
        gap: 10px;
}

/* âœ… ×ª×¤×¨×™×˜ × ×™×™×“ */
.custom-mobile-nav-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 100000;
    transition: left 1.1s ease-in-out;
    display: flex;
    flex-direction: column;
}



.custom-mobile-nav-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0px 10px 0px 10px;
    font-size: 30px;
    background: transparent;
}





   
.custom-mobile-nav-btn.home-btn {
    background: none;
    color: #282828;
    cursor: pointer;
}

.close-btn { font-size: 22px; }
.back-btn, .home-btn { display: none; }

/* âœ… ×”×¦×’×ª ×›×¤×ª×•×¨ ×—×–×¨×” */
.back-btn.show, .home-btn.show {
    display: block;
}

/* âœ… ×ª×¤×¨×™×˜ */
.custom-mobile-nav-list {
    list-style: none;
}

/* âœ… ×ª×¤×¨×™×˜ ×¤×¢×™×œ */
.custom-mobile-nav-list.active {
    display: block;
    padding: 0px 30px;
    opacity: 1;
    visibility: visible;
}
#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li:nth-child(7) > a,
#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li:nth-child(10) > a   {
    padding: 20px 0;
}

#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li:nth-child(2) > a {
    padding-top: 25px;
}

/* âœ… ×”×¦×’×ª ×”×ª×¤×¨×™×˜ */
.custom-mobile-nav-container.active {
    left: 0;
}

#custom-mobile-nav-overlay.active {
    display: block;
}

a.title-d   {
    font-size:16px;
}

a.title-c {
    padding: 12px 0px;
    font-size: 15px;
}

.menu-category-mobile {
    list-style: none;

}

.menu-category-mobile li {
    list-style-type: none;
}
span.menu-arrow-d {
    padding-left: 25px;
}
#main-menu > li:nth-child(8) > a   {
    padding-top: 30px;
}

#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li > a {}
#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li > a > img.right-icon   {
       padding-left: 30px;

    

}


.menu-category-mobile.has-submenu:hover  {
    background: #ddd;
    
}


.menu-category-mobile,
.menu-category-mobile.has-submenu  {
}
#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li > a    {
}

a.title-a   {
    font-size: 20px ;
    font-weight: 600;
}
a.title-b   {
    font-size: 18px ;
    font-weight: 450;
}

a.title-c   {
    font-size: 16px ;
    font-weight: 350;
}

.title-a    {
        padding: 20px 0px;
}


#custom-mobile-nav > ul.custom-mobile-nav-list.main-menu.active > li > a    {display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-between;align-items: center;width: 100%;color: #282828;}

    
.menu-mobile-icon   {
    width: 25px;
}

#custom-mobile-nav > ul.menu-iconts-nav-mobile > li > a  {
color: var(--primary-color);
    width: 80%;
    text-align: right;
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

li.menu-category-mobile {
}

#custom-mobile-nav > ul.menu-iconts-nav-mobile > li > a > img  {
    padding: 0px 10px 0px 25px;
}
img.menu-category-mobile.logo-main-menu {
    margin-top: -20px;
    margin-left: -8px;
}
#custom-mobile-nav > a {
    width: 100%;
        border-top: 2px solid #ddd;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#main-menu > li.menu-category-mobile.logo-main-menu > a > img {
        width: 50%;
        padding-top: 20px;
}

img.right-icon-mobile-nav {
    width: 35px;
    height: auto;
    padding: 25px 25px;
}


a.menu-link-mobile-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

span.menu-arrow-mobile-nav {
    padding-left: 30px;
}

span.menu-text-mobile-nav {
    width: 65%;
}

a.menu-link-mobile-nav {

    font-size: 17px;
    color: black;
    width: 90%;
    margin-right: 5%;

}

li.custom-mobile-nav-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

li.custom-mobile-nav-item {
    padding: 20px 20px;
    border-bottom: 1px solid #ddd;
}



.custom-mobile-nav-btn {
    padding: 10px 15px;
    background-color: #dddd;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
}

button#custom-mobile-nav-back {
    font-size: 25px;
}

.close-btn {
    font-size: 35px;
    font-weight: bold;
}

button#custom-mobile-nav-home {
    font-size: 18px;
    border-radius: 20px;
    padding: 10px 20px;
    background: var(--primary-color);
    font-weight: bold;
    color: #fafafa;
}

#main-menu > li:first-child > a {
    margin-top: 10px !important;
}
#main-menu > li:last-child > a {
    margin-bottom: 10px !important;
}
#custom-mobile-nav > div {
    border-bottom: 2px solid var(--primary-color);
    background: #dddddd;
}

ul.menu-iconts-nav-mobile {
    border-top: 2px solid var(--primary-color);
}







.category-icon-main {
    margin: 0 10px;
    vertical-align: middle;
    border-radius: 4px;
}

.title-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-name {
    flex: 1;
    margin-left: 10px;
}
}