.farmed-menu { list-style:none; padding:0; margin:0; }

.farmed-menu .sub-menu {
    display:none;
    padding-right:15px;
}

.farmed-menu-item.open > .sub-menu {
    display:block;
}

.farmed-menu-link-wrapper {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.farmed-sub-toggle {
    background:none;
    border:0;
    width:24px;
    height:24px;
    cursor:pointer;
}

.farmed-arrow {
    width:8px;
    height:8px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    transition:.2s;
}

.has-children.open > .farmed-menu-link-wrapper .farmed-arrow {
    transform:rotate(-135deg);
}

.farmed-menu-toggle {
    background: none;
    border: 0;
    padding: 0 !important;
    cursor: pointer;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.farmed-menu-toggle:hover {
    background: none;
}

.farmed-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    display: block;
}

.farmed-sub-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
    transform: rotate(0deg);
    display: block;
}

.farmed-menu-item.open > .farmed-menu-link-wrapper .farmed-sub-toggle svg {
    transform: rotate(180deg);
}

button.farmed-sub-toggle {
    background: white !important;
    border: none !important;
    padding: 0 !IMPORTANT;
}

.farmed-offcanvas-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 60px 30px;
        height:100vh;

}

.farmed-offcanvas-panel.active {
    right: 0;
}

.farmed-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99998;
    height:100vh;
}

.farmed-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.farmed-menu-open {
    overflow: hidden;
}

.farmed-menu-toggle svg,
.farmed-close svg {
    width: 24px;
    height: 24px;
    display: block;
}

.farmed-menu-toggle svg path,
.farmed-close svg path {
    fill: currentColor;
}

ul#menu-header li {
    font-size: 18px;
    font-family: 'yekan bakh';
    font-weight: 400;
    line-height: 44px;
}
ul#menu-header {
    padding: 0;
    list-style: none;
}

button.farmed-close {
    padding: 0 !important;
    background: white;
    border: none !important;
    position: absolute;
    left: 24px;
    top: 24px;
}

li.farmed-menu-item.has-children.open ul {
    padding: 0;
    list-style: none;
}

ul#menu-header li:hover a {
    color: #e98e3d;
}

button.farmed-close:hover {
    padding: 0 !important;
    background: white;
    border: none !important;
    position: absolute;
    left: 24px;
    top: 24px;
}