/********* COLORES */

/* OSCUROS 1 = #000000
/* OSCUROS 2 = #353535
/* OSCUROS 3 = #5B5B5B

/* COLORES 1 = #fcbd0e
/* COLORES 2 = #b92929

/********* TIPOGRAFIAS */

/* font-family: "Montserrat", sans-serif;

/********* NAVEGADOR */

.navegador {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 96;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 196, 0, 0.3);

    border-bottom: 2px solid #FFC400;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.logo-navegador {
    width: 150px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 10px;
    background-image: url('../img/logo.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.iconos-navegador {
    width: auto;
    height: 30px;
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
}

.icono-navegador {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0 7.5px;
    cursor: pointer;
    font-size: 18px;
    position: relative;
}

.icono-navegador.nav {
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 1px;
    border-radius: 999px;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}

/********* SOMBRA */

.sombra-navegador {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.75;
    z-index: 97;
    display: none;
    cursor: pointer;
}

.sombra-navegador.active {
    display: block;
}

/********* PANEL OPCIONES */

.panel-opciones {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -310px;
    background: #ffffff;
    z-index: 98;
    display: flex;
    flex-direction: column;
    transition: 0.28s all ease-out;
}

.panel-opciones.active {
    right: 0;
}

.header-panel-opciones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.titulo-header-panel-opciones {
    margin: 0;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.boton-cerrar-panel-opciones {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #111;
}

.contenido-panel-opciones {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.opcion-panel-opciones {
    width: 100%;
    height: 40px;
    margin: 20px auto;
    border-radius: 5px;
    display: flex;
}

.icono-panel-opciones {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000000;
    border-radius: 5px;
    margin: 0 auto;
    font-size: 20px;
}

.texto-panel-opciones {
    width: calc(100% - 45px);
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    margin-left: 7px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: #5e5e5e;
    cursor: pointer;
}

.opcionalt-panel-opciones {
    width: 90%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 5px;
    background-color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin: 10px auto;
    margin-top: 30px;
}