/* VyP Nav Menu Widget Styles */

.vyp-nav-menu {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.vyp-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-right: -10px;
}

.vyp-hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #ed3c28;
    transition: all 0.3s ease;
}

.vyp-nav-panel {
    position: relative;
}

.vyp-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.vyp-menu li {
    position: relative;
}

.vyp-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: inherit;
}

/* Dropdown desktop */
.vyp-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background-image: url('https://firebrick-walrus-490307.hostingersite.com/wp-content/uploads/2025/12/fondo_mancha_blancos_opt.webp');
    background-size: auto;
    background-repeat: repeat;
    min-width: 210px;
    z-index: 1000;
}

.vyp-menu li:hover > .sub-menu {
    display: block;
}

.vyp-menu .sub-menu li {
    display: block;
}

.vyp-menu .sub-menu a {
    padding: 8px 20px;
}

.current-menu-ancestor > a, .current-menu-item > a {
    color: #ed3928!important;
    font-weight: 500;
}

.vyp-menu li:hover a {
    /* text-decoration-style: dashed; */
    text-underline-offset: 4px;
}

.current-menu-item {
    pointer-events: none;
}

/* desktop only */
@media (min-width: 850px) {
    .vyp-nav-panel {
        display: flex;
        justify-content: flex-end;
        margin-right: -15px;
    }
    .vyp-nav-close {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 849px) {
    .vyp-nav-toggle {
        display: flex;
    }

    .vyp-nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-image: url('https://firebrick-walrus-490307.hostingersite.com/wp-content/uploads/2025/12/fondo_mancha_blancos_opt.webp');
        background-size: auto;
        background-repeat: repeat;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 60px 20px 20px;
    }

    .vyp-nav-panel.active {
        right: 0;
    }

    .vyp-menu {
        flex-direction: column;
        gap: 0;
    }

    .vyp-menu .sub-menu {
        position: static;
        display: block;
        background: none;
        padding-left: 20px;
        min-width: auto;
    }

    body.vyp-nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    .vyp-hamburger-line {
        height: 2px;
        width: 22px;
    }
    button.vyp-nav-close {
        border: none;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 44px;
        font-weight: 100;
        font-family: 'NeueHaas';
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
    }
    
    ul#menu-menu-principal {
        text-align: center;
        gap: 10px;
    }
}