nav{
    height: 130px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #737373;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--principal);
    /* color: blue; */
    font-size: 1.6rem;
    font-family: 'Botera';
    padding: 0 6px;
}

nav .logo{
    flex-basis: auto;
}

nav .logo img{
    height: 79px;
}

nav .opciones{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

nav .option{
    position: relative;
    font-weight: bold;
}

nav .option a, nav .option a:link{
    text-decoration: none;
    color:inherit;
}

nav .active::before{
    position: absolute;
    content: '•';
    width: 10px;
    height: 10px;
    bottom: 3px;
    left: calc(50% - 4px);
    font-size: 1.6rem;
}

nav .oculto{
    position: relative;
    display: none;
}

nav .burguer{
    position: absolute;
    padding-left: 6px;
    top: 9px;
    left: 9px;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
}

nav .carrito button{
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    padding: 6px;
    pointer-events: none;
}

nav .carrito img{
    width: 30px;
}

nav .shop{
    position: relative;
}

/* nav .shop a{
    padding: 9px;
} */

nav .badge{
    pointer-events:none;
    position: absolute;
    width: 21px;
    height: 21px;
    bottom: 0px;
    right: -1px;
    border: 0;
    font-size: 10px;
    font-weight: bold;
    color: white;
    background-color: #F58220;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-family: 'Verdana';
}


@media screen and (max-width: 836px) {
    nav{
        height: 90px;
        padding-top: 6px;
        padding-bottom: 6px;
        flex-direction: column;
        background-color: white;
        border-bottom-width: 0;
    }

    nav .burguer {
        width: 30px;
    }

    nav .logo{
        width: 100%;
        height: 100%;
        text-align: center;
        border-bottom-width: 1px;
        border-bottom-color: #737373;
        border-bottom-style: solid;
    }

    nav .logo img{
        height: 69px;
    }

    nav .opciones{
        position: absolute;
        width: 0;
        top: 90px;
        background: white;
        overflow: hidden;
        flex-direction: column;
        z-index: 100;
    }

    nav .option{
        border: 0;
        /* width: 0; */
        /* height: 0; */
        /* background-color: white; */
        /* overflow: hidden; */
        /* top: 90px; */
        /* position: absolute; */
        /* z-index: 100; */
        margin-left: 24px;
    }

    nav .active::before{
        content: '';
    }
    
    nav .mostrar{
        width: 100%;
        transition: all 0.6s ease-in;
    }

    nav .carrito{
        position: absolute;
        top: 30px;
        right: 9px;
    }

    nav .oculto{
        display: block;
    }

    nav .badge{
        right: -4px;
    }
}