.main-nav .menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

@media (min-width: 835px) {
    .main-nav .menu-link {
        justify-content: center;
        gap: 8px;
        line-height: 1.2;
        padding: 0;
    }
}

.main-nav .menu-arrow {
    display: inline-block;
    width: 12px;
    height: 8px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 835px) {
    .scroll-up header .main-nav > ul > li:nth-child(1) .menu-arrow,
    .scroll-up header .main-nav > ul > li:nth-child(2) .menu-arrow,
    .scroll-up header .main-nav > ul > li:nth-child(3) .menu-arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    }
}

@media (min-width: 835px) {
    .main-nav .menu-arrow {
        margin-left: 0;
    }
    
    [dir="ltr"] .main-nav .menu-arrow {
        margin-left: 0;
    }
}

.main-nav .menu-arrow.up {
    transform: rotate(180deg);
}

.main-nav .menu-item.active > .menu-link {
    background-color: #fff;
    color: #333 !important;
    border-radius: 8px;
    padding: 0 16px;
    margin: 0 4px;
}

.main-nav .menu-item.active > .menu-link .menu-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

@media (min-width: 835px) {
    .main-nav .menu-item.active > .menu-link {
        border-radius: 10px;
        padding: 8px 18px;
        font-weight: bold;
        line-height: 1.2;
    }
    
    [dir="ltr"] .main-nav .menu-item.active > .menu-link {
        font-family: 'Mont-Bold';
    }
    
    .main-nav .menu-item.active > .menu-link .menu-arrow {
        margin-top: -2px;
    }

    [dir="ltr"] .main-nav .menu-arrow {
        margin-top: -5px;
    }

    [dir="ltr"] .main-nav .menu-item.active > .menu-link .menu-arrow {
        margin-top: -3px;
    }
}

.main-nav .sub-menu {
    position: absolute;
    background-color: #fff;
    width: 300px !important;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms cubic-bezier(.4,0,.2,1);
    transition: all 300ms cubic-bezier(.4,0,.2,1);
    z-index: 999;
    box-shadow: none;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e9ecef;
    margin-top: 10px;
}

.main-nav .menu-item.active .sub-menu {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 835px) {
    .main-nav .menu-item.active .sub-menu:hover,
    .main-nav .menu-item.active .sub-menu:focus-within {
        width: 800px !important;
    }

    .main-nav .menu-item.active .sub-menu:hover:has(.nav-dropdown-items.few-items),
    .main-nav .menu-item.active .sub-menu:focus-within:has(.nav-dropdown-items.few-items) {
        width: 600px !important;
    }
}

.nav-dropdown-content {
    display: flex;
    min-height: 300px;
}

.nav-dropdown-categories {
    flex: 1;
    padding: 20px 15px;
    margin-top: 8px;
}

.nav-dropdown-items {
    flex: 2;
    padding: 20px 15px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
    position: relative;
    align-content: start;
    align-items: start;
    margin-top: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-dropdown-items::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.main-nav .menu-item.active .sub-menu:hover .nav-dropdown-items,
.main-nav .menu-item.active .sub-menu:focus-within .nav-dropdown-items {
    display: grid;
}

.nav-dropdown-items.no-items {
    display: none !important;
}

@media (min-width: 835px) {
    /* If the active category has 4 or fewer items */
    .nav-dropdown-items.few-items {
        grid-template-columns: 1fr;
    }

    /* Make both sections equal width when few-items */
    .nav-dropdown-content:has(.nav-dropdown-items.few-items) .nav-dropdown-categories,
    .nav-dropdown-content:has(.nav-dropdown-items.few-items) .nav-dropdown-items.few-items {
        flex: 1;
    }
    
    .nav-dropdown-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, max-content));
        column-gap: 20px;
        row-gap: 15px;
    }
    
    .main-nav .sub-menu {
        -webkit-transition: opacity 200ms ease-out, visibility 200ms ease-out, width 300ms ease-out;
        transition: opacity 200ms ease-out, visibility 200ms ease-out, width 300ms ease-out;
    }
}

.nav-category {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: #333;
    background: #f3f5f7;
    border: 1px solid #e9ecef;
}

@media (max-width: 834px) {
    /* .nav-category:hover, */
    .nav-category.active {
        background: #509199;
        color: #fff;
        text-decoration: none;
    }

    /* .main-nav .sub-menu .nav-category:hover, */
    .main-nav .sub-menu .nav-category.active {
        color: #fff !important;
    }

    /* .main-nav .sub-menu .nav-category:hover .nav-category-content h4, */
    .main-nav .sub-menu .nav-category.active .nav-category-content h4 {
        color: #fff !important;
    }

    .nav-category,
    .nav-category-items .nav-item,
    .main-nav .menu-link {
        -webkit-tap-highlight-color: transparent;
        border: none;
        box-shadow: none;
        background: rgb(251 251 251);
    }

    .nav-category:not(.active):focus,
    .nav-category:not(.active):active {
        background: #f3f5f7;
        color: #333;
    }

    .nav-category:not(.active):focus .nav-category-content h4,
    .nav-category:not(.active):active .nav-category-content h4 {
        color: #333;
    }

    .main-nav .sub-menu {
        border: none;
        background-color: rgb(251 251 251);
    }

    .nav-dropdown-categories {
        background: rgb(251 251 251);
    }

    .nav-category-items {
        background: rgb(251 251 251);
    }

    .main-nav .menu-item > .menu-link {
        background: rgb(251 251 251);
    }

    .main-nav .menu-item.active > .menu-link {
        background: rgb(251 251 251);
        color: #48b2c2 !important;
    }

    .nav-item {
        background: rgb(251 251 251);
    }
}

@media (min-width: 835px) {
    .nav-category:hover,
    .nav-category.active {
        background: #509199;
        color: #fff;
        text-decoration: none;
    }

    .main-nav .sub-menu .nav-category:hover,
    .main-nav .sub-menu .nav-category.active {
        color: #fff !important;
    }

    .main-nav .sub-menu .nav-category:hover .nav-category-content h4,
    .main-nav .sub-menu .nav-category.active .nav-category-content h4 {
        color: #fff !important;
    }
}

.main-nav .sub-menu .nav-category {
    color: #333 !important;
}

.main-nav .sub-menu .nav-category .nav-category-content h4 {
    color: #333 !important;
}

.main-nav .sub-menu .nav-category .nav-category-icon {
    opacity: 1;
}

.nav-category-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-category-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

.nav-category:hover .nav-category-content h4,
.nav-category.active .nav-category-content h4 {
    color: #fff;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    visibility: visible;
    opacity: 1;
    background: #f7f8fa;
    border: 1px solid #e9ecef;
}

.nav-item:hover {
    background: #509199;
    color: #fff;
    transform: translateY(-1px);
}

.nav-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

[dir="rtl"] .nav-item-image {
    margin-right: 0;
    margin-left: 12px;
}

.nav-item-content h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-transform: capitalize;
}

.nav-item:hover .nav-item-content h5 {
    color: #fff !important;
}

.no-items-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.explore-more-link {
    grid-column: 2;
    text-align: right;
    padding: 12px;
    /* margin: 50px 0 0 0; */
    border-top: none;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    visibility: visible !important;
    opacity: 1 !important;
    color: #509199 !important;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.explore-more-link:hover {
    color: #3a9ba8;
    text-decoration: underline;
}

[dir="rtl"] .nav-dropdown-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    align-items: stretch;
    justify-content: flex-start;
}

@media (max-width: 834px) {
    .header .main-nav {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    .header .main-nav ul {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    .header .main-nav ul li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden !important;
    }
    
    .header .main-nav ul li a.menu-link {
        width: 100% !important;
        box-sizing: border-box;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    [dir="ltr"] .header .main-nav ul li a.menu-link {
        font-size: 14px !important;
        font-weight: 600 !important;
        font-family: "Mont-SemiBold";
    }
    [dir="rtl"] .header .main-nav ul li a.menu-link {
        font-size: 14px !important;
        font-weight: 600 !important;
        font-family: "Frutiger LT Arabic 45";
    }

    .header .main-nav ul li.menu-item {
        width: 100% !important;
        display: block !important;
    }
    
    .main-nav .menu-arrow {
        display: inline-block !important;
        width: 12px;
        height: 8px;
        margin-left: auto !important;
        margin-right: 20px;
        transition: transform 0.3s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        flex-shrink: 0;
        z-index: auto;
        border: none;
    }
    
    .main-nav .menu-item.active > .menu-link .menu-arrow,
    .main-nav .menu-item.active > .menu-link .menu-arrow.up {
        transform: rotate(180deg);
        margin-right: 8px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2348b2c2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    }
    
    .main-nav .menu-item:not(.active) > .menu-link .menu-arrow {
        transform: rotate(0deg);
    }
    
    .header .main-nav ul li.menu-item-has-children .down-arrow {
        display: none !important;
    }
    
    body.no-scroll,
    html.no-scroll,
    body.active,
    html.active {
        overflow: hidden !important;
        overflow-x: hidden !important;
        height: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    
    .main-nav .sub-menu {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        transform: none;
        border-radius: 0;
        top: 100%;
        position: fixed;
        max-height: calc(100vh - 60px);
        height: auto;
        overflow-y: auto;
        overflow-x: hidden !important;
        z-index: 9999;
        background: #fff;
        display: none;
        box-sizing: border-box;
    }
    
    .main-nav .menu-item.active .sub-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-dropdown-content {
        flex-direction: column;
        min-height: auto;
        height: auto;
        background: rgb(251 251 251);
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    .nav-dropdown-categories {
        border-right: none;
        border-bottom: none;
        padding: 0px 15px 16px;
        background: rgb(251 251 251);
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden !important;
    }
    
    .nav-category {
        padding: 12px 15px;
        margin-bottom: 0;
        border-radius: 15px;
        display: flex;
        align-items: center;
        background: #eef2f4;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .nav-category.has-items {
        padding-right: 45px;
    }
    
    .nav-category:not(.has-items) {
        padding-right: 35px;
    }
    
    .nav-category-arrow {
        display: none;
        width: 12px;
        height: 8px;
        margin-left: auto;
        margin-right: 15px;
        transition: transform 0.3s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        pointer-events: auto;
    }
    
    .nav-category.active .nav-category-arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        transform: rotate(180deg);
    }
    
    .nav-category-arrow-touch {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        z-index: 3;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .nav-category.active {
        background: #3c8690;
        color: #fff;
        border-color: #3c8690;
    }
    
    .nav-category.has-items .nav-category-arrow {
        display: block;
    }
    
    .nav-category.active:has(+ .nav-category-items) {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    
    .nav-category-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 25px;
        height: auto;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .nav-category-content {
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }

    .nav-category-icon-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    [dir="rtl"] .nav-category-icon {
        margin-right: 0;
        margin-left: 12px;
    }
    
    .nav-category-content h4 {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        color: #333;
        font-family: "Mont-SemiBold", sans-serif;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .nav-category.active .nav-category-content h4 {
        color: #fff;
    }
    
    .nav-category-items {
        display: none;
        /* padding: 0 15px 20px 15px; */
        background: #eef2f4;
        margin-top: -8px;
        margin-bottom: -8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 3px;
        border-radius: 16px;
        overflow-x: hidden !important;
    }
    
    .nav-category.active + .nav-category-items {
        display: block;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
    
    .nav-category-items .nav-item {
        padding: 16px 20px 15px 20px !important;
        border-radius: 0;
        display: flex;
        align-items: flex-start;
        background: transparent;
        border: none;
        margin-bottom: 0;
        /* margin-left: 18px; */
        text-decoration: none;
        color: #333;
        font-family: "Mont-SemiBold", sans-serif;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        transition: background-color 0.15s ease;
    }
    
    .nav-category-items .nav-item:last-child {
        margin-bottom: 0;
    }
    
    .nav-category-items .nav-item-content {
        padding: 0 !important;
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }
    
    [dir="rtl"] .nav-category-items .nav-item-content {
        padding: 0 !important;
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }
    
    .nav-category-items .nav-item-content h5 {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        color: #333;
        font-family: "Mont-SemiBold", sans-serif;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    [dir="rtl"] .nav-category-content h4,
    [dir="rtl"] .nav-category-items .nav-item,
    [dir="rtl"] .nav-category-items .nav-item-content h5 {
        font-size: 14px !important;
        font-weight: 600 !important;
        font-family: "Frutiger LT Arabic 45", sans-serif !important;
    }

    [dir="rtl"] .nav-category-items .nav-item-content h5 {
        font-weight: normal;
    }
    
    .nav-category-items .nav-item:hover {
        background: transparent;
        color: #333 !important;
    }
    
    .nav-category-items .nav-item:hover .nav-item-content h5 {
        color: #333 !important;
    }
    
    .nav-category-items .nav-item:focus {
        background: transparent;
        color: #333 !important;
        outline: none;
    }
    
    .nav-category-items .nav-item:focus .nav-item-content h5 {
        color: #333 !important;
    }
    
    .nav-category-items .nav-item:active {
        background: #D6EFF4;
        color: #333 !important;
        outline: none;
    }
    
    .nav-category-items .nav-item:active .nav-item-content h5 {
        color: #333 !important;
    }
    
    .nav-category-items .nav-item-image {
        display: none;
    }
    
    .nav-category-items .explore-more-link {
        display: block !important;
        padding: 0px 15px 5px 15px !important;
        text-align: left;
        color: #509199 !important;
        text-decoration: none;
        font-size: 14px !important;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    [dir="rtl"] .nav-item-content,
    .explore-more-link {
        text-align: right !important;
    }

    .nav-item-content,
    [dir="rtl"] .explore-more-link {
        text-align: left !important;
    }

    .nav-category-items .explore-more-link:hover {
        color: #3a9ba8;
        text-decoration: underline;
    }
    
    .nav-dropdown-items {
        display: none !important;
    }
    
    .nav-item {
        padding: 12px 15px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        background: #fff;
        border: 1px solid #e9ecef;
        margin-bottom: 0;
    }
    
    .nav-item-image {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        border-radius: 6px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .nav-item-content h5 {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }
    
    .nav-item:hover .nav-item-content h5 {
        color: #fff !important;
    }
    
    .nav-dropdown-content {
        position: relative;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        color: #666;
        cursor: pointer;
        z-index: 11;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-radius: 50%;
        border: none;
    }
    .mobile-menu-close {
        display: none !important;
    }

    [dir="rtl"] .main-nav .menu-arrow {
        margin-left: 20px !important;
        margin-right: auto !important;
    }
    
    [dir="rtl"] .main-nav .menu-item.active > .menu-link .menu-arrow,
    [dir="rtl"] .main-nav .menu-item.active > .menu-link .menu-arrow.up {
        margin-left: 8px !important;
        margin-right: auto !important;
    }
    
    [dir="rtl"] .header .main-nav ul li a.menu-link {
        text-align: right;
        direction: rtl;
    }
    
    [dir="rtl"] .nav-category.has-items {
        padding-right: 15px !important;
        padding-left: 45px !important;
    }

    [dir="rtl"] .nav-category:not(.has-items) {
        padding-right: 15px !important;
        padding-left: 35px !important;
    }
    
    [dir="rtl"] .nav-category-arrow {
        margin-left: -25px !important;
        margin-right: auto !important;
    }
    
    [dir="rtl"] .nav-category-arrow-touch {
        right: auto !important;
        left: 0 !important;
    }
    
    [dir="rtl"]     .nav-category-content {
        text-align: right;
        direction: rtl;
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }
    
    [dir="rtl"] .nav-category-content h4 {
        text-align: right;
    }
    
    [dir="rtl"] .nav-category-items {
        direction: rtl;
        text-align: right;
    }
    
    [dir="rtl"] .nav-category-items .nav-item {
        text-align: right;
        direction: rtl;
        padding: 16px 20px 15px 20px !important;
    }
    
    [dir="rtl"] .nav-category-items .nav-item-content {
        text-align: right !important;
    }
    
    [dir="rtl"] .nav-category-items .nav-item-content h5 {
        text-align: right;
    }

    [dir="rtl"] .nav-dropdown-categories {
        direction: rtl;
        text-align: right;
        padding: 0px 15px 16px;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    [dir="rtl"] .nav-category {
        direction: rtl;
        text-align: right;
        flex-direction: row-reverse;
    }
    
    [dir="rtl"] .nav-category.active:has(+ .nav-category-items) {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    
    [dir="rtl"] .nav-dropdown-content {
        direction: rtl;
    }
    
    [dir="ltr"] .header .main-nav ul li a {
        font-size: 14px !important;
        font-weight: 600 !important;
        font-family: "Mont-SemiBold" !important;
    }
}

@media (min-width: 835px) {
    .mobile-menu-close {
        display: none !important;
    }
    .main-nav .menu-item.active .sub-menu:has(.nav-dropdown-items.no-items):hover,
    .main-nav .menu-item.active .sub-menu:has(.nav-dropdown-items.no-items):focus-within {
        width: 300px !important;
    }
    [dir="rtl"] .explore-more-link {
        margin: unset !important;
    }
}

[dir="rtl"] .nav-category {
    margin-bottom: 0;
    flex-direction: row;
    gap: 12px;
    direction: rtl;
}

[dir="rtl"] .nav-category.has-items {
    padding-left: 45px;
    padding-right: 15px;
}

[dir="rtl"] .nav-category-icon {
    margin-right: 0;
    margin-left: 12px;
}

[dir="rtl"] .nav-category-content {
    text-align: right;
}

[dir="rtl"] .nav-dropdown-items {
    padding: 20px;
    gap: 15px;
}

[dir="rtl"] .nav-item-image {
    margin-right: 0;
    margin-left: 0;
}

[dir="rtl"] .nav-item {
    gap: 12px;
}

[dir="rtl"] .main-nav .menu-arrow {
    margin-left: 0;
    margin-right: 8px;
}

@media (min-width: 835px) {
    [dir="rtl"] .main-nav .menu-arrow {
        margin-right: 0px;
    }
}

[dir="rtl"] .main-nav .menu-link {
    gap: 8px;
}

[dir="rtl"] .nav-dropdown-content {
    align-items: flex-start;
}

[dir="rtl"] .explore-more-link {
    grid-column: 2;
    text-align: left;
    justify-content: flex-end;
}

[dir="rtl"] .nav-category-arrow {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .nav-category-arrow-touch {
    right: auto;
    left: 0;
}

@media (min-width: 835px) {
    .nav-dropdown-items .nav-item,
    .nav-dropdown-items .nav-item-card {
        grid-column: 1;
    }

    .nav-dropdown-items .nav-item.column-right,
    .nav-dropdown-items .nav-item-card.column-right {
        grid-column: 2;
    }

    .nav-dropdown-items .explore-more-link {
        grid-column: 2;
        grid-row: 4;
        align-self: end;
        justify-self: end;
    }
}