.yekta-menu .yekta-menu-content ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.yekta-menu {
    position: relative;
}

.yekta-menu .yekta-menu-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.yekta-menu .yekta-menu-hamburger span {
    background: #333;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.yekta-menu .yekta-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0);
    color: #fff;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.yekta-menu .yekta-menu-overlay.active {
    display: flex;
}

.yekta-menu .yekta-menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    text-align: center;
}

.yekta-menu .yekta-menu-content ul li a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}

.yekta-menu .yekta-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
}

.yekta-menu .yekta-menu-hamburger.active {
    display: none;
}

.yekta-menu .yekta-menu-content.desktop-view {
    display: none;
}

@media (min-width: 768px) {
    .yekta-menu .yekta-menu-hamburger {
        display: none;
    }

    .yekta-menu .yekta-menu-content.desktop-view {
        display: flex;
    }

    .yekta-menu .yekta-menu-overlay {
        display: none !important;
    }

    .yekta-menu .yekta-menu-content ul {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
}