@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --gris-oscuro: #242428;
    --rosa: #DCC1C0;
    --crema: #DED6C1;
    --cafe: #7D6F56;
    --guinda: #715152;
    --color-marca: var(--gris-oscuro);
    --karla: "Karla", sans-serif;
    --color-iconos: #FFF;
    --color-iconos-hover: var(--rosa);

    --texto: var(--karla);
    --fondo-boton: var(--cafe);
    --boton-hover: var(--rosa);
    --color-boton-hover: var(--gris-oscuro);
    --color-boton: #FFF;
    --nombre-producto: var(--color-marca);
    --descripcion-producto: var(--color-marca);
    --precio-producto: var(--color-marca);
    --fondo-modal: rgba(255,255,255,.8);
    --fondo-confirmacion: #fff;
    --borde-confirmacion: var(--color-marca);
    --fondo-boton-cerrar: var(--color-marca);
    --borde-boton-cerrar: var(--color-marca);
    --color-boton-cerrar: #FFF;
    --color-boton-eliminar: var(--color-marca);
    --division-articulo: var(--color-marca);
    --fondo-header: #F0a;

    --amarillo-paypal: #ffbe37;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
/*::placeholder{
    font-weight: 700;
}*/
.top{
    width: 100%;
    height: 70px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-family: var(--texto);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 8%;
    padding-left: 8%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section > aside{
    display: flex;
    justify-content: center;
    align-items: center;
}
section > h1{
    margin-bottom: 1vw;
}
h1{
    font-size: 2vw;
    font-weight: 400;
    text-align: center;
    width: 100%;
}
h2{
    font-size: 2.2vw;
    font-variation-settings: "wdth" 75;
    font-weight: 500;
    width: 100%;
}
h3{
    font-size: 1.3vw;
}
p{
    font-size: 1.3vw;
    font-weight: 400;
    line-height: 1.2;
}
a{
    text-decoration: none;
    color: inherit;
}
.tope{
    position: relative;
    width: 100%;
    /*height: 90px;*/
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 2;
    /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
    /*background-color: #FFF*/
    background-color: var(--gris-oscuro);
}
header > a{
    display: none;
}
header > nav a.logo-header{
    width: 190px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header > nav a.logo-header > svg .st0, header > nav a.logo-header > svg .st1{
    fill: #fff;
}
/*header > nav a.logo-header > img{
    height: 80%;
}*/
header > aside{
    width: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
header > aside > button, header > aside > a{
    font-size: 18px;
    background-color: transparent;
    border: 0px;
    margin: 5px;
    cursor: pointer;
    color: var(--color-iconos);
}
header > aside > button:hover, header > aside > a:hover{
    color: var(--color-iconos-hover);
}
header > nav{
    width:calc(100% - 100px);
    padding-left: 100px;
    height: 100%;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--amarillo);
    z-index: 10;
}
header > nav > a{
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 300;
    color: #FFF;
    font-size: 14px;
}
header > nav > a:hover{
    color: var(--rosa);
}


/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    top: 26px;
    z-index: 3;
    box-sizing: content-box;
    padding: 10px;
    display: none;
}
label span{
    background: #fff;
    height:1px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label span:nth-of-type(1){
    width:50%;
}
label span:nth-of-type(2){
    width:100%;
}
label span:nth-of-type(3){
    width:75%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(2px,-1px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(13px, -2px) rotatez(45deg);
}
.solo-movil{
    display: none;
}

/*body > a{
    position: fixed;
    bottom: 60px;
    right: 50px;
    width: 60px;
    height: 60px;
    z-index: 5;
    border:solid 2px #FFF;
    border-radius: 50px;
    background-image: url(/images/E3AFA6EBF74AB28B.png);
    background-position: center center;
    background-size: 145%;
}
body > a > img{
    width: 100%;
}*/

/*********************
 *     NOSOTROS      *
 ********************/
.nosotros{
    background-color: var(--gris-oscuro);
    flex-direction: row;
}
.nosotros > article{
    width: 50%;
    background-color: var(--gris-oscuro);
    display: flex;
    color: #FFF;
    padding: 7vw;
    padding-bottom: 0px;
    padding-top: 0px;
    flex-direction: column;
}
.nosotros > article > h2{
    font-weight: 500;
    text-align: center;
    padding-bottom: 1vw;
    font-size: 1.6vw;
}
.nosotros > article > p{
    font-weight: 300;
    text-align: justify;
    font-size: 1.1vw;
}


/*********************
 *     PRODUCTOS     *
 ********************/
.productos{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.productos > a{
    display: flex;
    width: 15%;
    line-height: 2.5;
    font-size: 1.2vw;
    font-weight: 400;
    color: #FFF;
    margin-top: 1vw;
    justify-content: center;
    align-items: center;
    background-color: var(--gris-oscuro);
    /*border: solid 1px var(--gris-oscuro);*/
    border:0px;
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    margin-top: 4vw;
    display: none;
}
.productos > a:hover{
    animation-name: enciende-boton;
}

/*************************
 *  PRODUCTO RESPONSIVO  *
 *************************/
.producto-responsivo{
    width: 300px;
    height: 470px;
}
.producto-responsivo > a{
    width: 100%;
    height: 275px;
}
.producto-responsivo > article{
    padding: 10px;
}
.producto-responsivo > article > h3{
    font-size: 14px;
}
.producto-responsivo > article > p{
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.producto-responsivo > article > h2{
    font-size: 14px;
    height: 30px;
    line-height: 30px;
}
.producto-responsivo > article > aside{
    height: 30px;
}
.producto-responsivo > article > aside > button{
    width: 20px;
    height: 25px;
}
.producto-responsivo > article > aside > input{
    width: 45px;
    height: 25px;
}
.producto-responsivo > article > aside > button{
    width: 70px;
    height: 25px;
}

/*************************
 *    PRODUCTO LIQUIDO   *
 *************************/
.producto-liquido{
    width: 22%;
    height: 29vw
}
.producto-liquido > a{
    width: 100%;
    height: 21vw;
}
.producto-liquido > article{
    padding-top: 1vw;
}
.producto-liquido > article > h3{
    font-size: 1.2vw;
}
.producto-liquido > article > p{
    font-size: 1.1vw;
    margin-top: .8vw;
    margin-bottom: 1vw;
}
.producto-liquido > article > h2{
    font-size: 1.6vw;
    height: 2vw;
    line-height: 2vw;
}
.producto-liquido > article > aside{
    height: 2vw;
}
.producto-liquido > article > aside > button{
    width: 5vw;
    height: 1.8vw;
    font-size: 1vw;
}
.producto-liquido > article > aside > input{
    width: 3.5vw;
    height: 1.8vw;
    font-size: 1vw;
}

/*************************
 *        BANNER         *
 *************************/
.banner{
    height: 42vw;
    background-image: url(/../images/NW_1.webp);
    background-position: center center;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-end;
}
.banner > article{
    width: 13vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.banner h1{
    width: 100%;
    font-size: 4vw;
    color: #FFF;
    font-weight: 800;
    line-height: .9;
    text-align: right;
}
.banner h1 > span{
    font-weight: 600;
    font-size: 2.3vw;
}
.banner h2{
    display: flex;
    width: 80%;
    line-height: 2.5;
    font-size: 1.2vw;
    font-weight: 400;
    color: #FFF;
    margin-top: 2vw;
    justify-content: center;
    align-items: center;
    background-color: var(--gris-oscuro);
    /*border:solid 1px var(--gris-oscuro);*/
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
/*.banner h2:hover{
    animation-name: enciende-boton;
}*/

/*************************
 *    PRODUCTO GIFT      *
 *************************/
.gift{
    width: 47%;
    height: 26vw;
    padding: 2vw;
    background-color: #f2f2f2;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 1.5%;
    margin-top: 0px;
    background-position: center center;
    background-size: cover;
    background-image: url(/../images/gift.webp);
}
.gift > h2{
    display: flex;
    width: 50%;
    line-height: 2.5;
    font-size: 1.2vw;
    font-weight: 400;
    color: #FFF;
    margin-top: 1vw;
    justify-content: center;
    align-items: center;
    background-color: var(--gris-oscuro);
    /*border: solid 1px var(--gris-oscuro);*/
    border:0px;
    /*animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;*/
}
/*.gift > h2:hover{
    animation-name: enciende-boton;
}*/
/*************************
 *    PRODUCTO GENERAL   *
 *************************/
.producto{
    margin: 1.5%;
    margin-top: 0px;
    /*background-color: #FA0;*/
    /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
}
.producto > a{
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-color: #f2f2f2;*/
    /*border: solid 1px rgba(0, 0, 0, .05);*/
}
.producto > a > div{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-image: url(/../portadas/fotografia-still-life.jpg);*/

    animation-name: fadeOut;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
.producto > a:hover > div{
    animation-name: fadeIn;
}

@keyframes fadeIn{
    from{opacity: 0}
    to{opacity: 1}
}
@keyframes fadeOut{
    from{opacity: 1}
    to{opacity: 0}
}
.producto > article{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.producto > article > h3{
    font-weight: 800;
    width: 100%;
    /*text-transform: uppercase;*/
    color: var(--nombre-producto);
}
.producto > article > p{
    font-weight: 300;
    width: 100%;
    color: var(--descripcion-producto);
}
.producto > article > h2{
    font-weight: 400;
    width: 100%;
    color:var(--precio-producto);
}
.producto .cantidad{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/*.producto .cantidad > input{
    text-align: center;
    font-family: var(--texto);
    border-radius: 0px;
    border:solid 1px var(--fondo-boton);
}*/
.producto .cantidad > button{
    width: 30px;
    height: 30px;
    text-align: center;
    font-family: var(--texto);
    border-radius: 0px;
    /*border:solid 1px var(--fondo-boton);*/
    border: 0px;
    background-color: #FFF;
    color: #333;
    cursor: pointer;
    padding: 0px;
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
.producto > .cantidad > button:hover{
    /*background-color: #777;
    color: #FFF;*/
    animation-name: enciende-boton;
}


@keyframes apaga-boton{
    from{background-color: var(--boton-hover); color: var(--color-boton-hover);}
    to{background-color: var(--fondo-boton); color: var(--color-boton)}
}
@keyframes enciende-boton{
    from{background-color: var(--fondo-boton); color: var(--color-boton)}
    to{background-color: var(--boton-hover); color: var(--color-boton-hover);}
}

/*************************
 *      MODAL LOGIN      *
 *************************/
#modalLogin{
    width: 100%;
    background-color: var(--fondo-modal);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
#modalLogin > .login-contenido > input{
    background-color: #FFF;
    border-radius: 0px;
    height: 30px;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 10px;
    font-family: var(--texto);
    border: solid 1px var(--color-marca);
}
.login-contenido{
    width: 300px;
    height: 200px;
    padding-left: 35px;
    padding-right: 35px;
    background-color: var(--fondo-confirmacion);
    border:solid 1px var(--borde-confirmacion);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
#modalLogin > .login-contenido > h2{
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    color: var(--color-marca);
    font-size: 18px;
}

#modalLogin > .login-contenido > button{
    border-radius: 0px;
    border: solid 1px var(--fondo-boton);
    border: 0px;
    width: 100px;
    height: 25px;
    /*margin: 5px;*/

    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
}
#modalLogin > .login-contenido > button:hover{
    animation-name: enciende-boton;
}

/*************************
 *   MODAL CONFIRMACION  *
 *************************/
#modalConfirmacion{
    width: 100%;
    background-color: var(--fondo-modal);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.modal-contenido{
    width: 350px;
    height: 175px;
    padding: 20px;
    background-color: var(--crema);
    /*border:solid 1px var(--borde-confirmacion);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.modal-contenido > #modalMensaje{
    font-size: 16px;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    font-weight: 500;
}
.modal-contenido > button{
    border-radius: 0px;
    /*border: solid 1px var(--fondo-boton);*/
    border: 0px;
    width: 90px;
    height: 33px;
    margin: 5px;
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    font-weight: 800;
    font-size: 15px;
}
.modal-contenido > button:hover{
    animation-name: enciende-boton;
}

/*************************
 *     CARRITO MODAL     *
 *************************/
#carrito-modal{
    display: flex;
    right: -450px;
    flex-wrap: wrap;
    position: fixed;
    top: 0px;
    width: 400px;
    height: 100vh;
    padding: 20px;
    background-color: #FFF;
    z-index: 4;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#carrito-modal > button{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: var(--fondo-boton-cerrar);
    /*border:solid 1px var(--borde-boton-cerrar);*/
    border: 0px;
    color: var(--color-boton-cerrar);

    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
}
#carrito-modal > button:hover{
    animation-name: enciende-boton;
}
#carrito-contenido{
    width: 100%;
}
#carrito-contenido > h3{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 50px;
}
#carrito-contenido > article{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    padding-top: 20px;
}
#carrito-contenido > article > h3{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
#carrito-contenido > article > .btn-checkout{
    animation-name: apaga-boton;
    display: flex;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    border-radius: 0px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--fondo-boton);
    border: 0px;
    font-weight: 700;
    font-size: 20px;
}
#carrito-contenido > article > .btn-checkout:hover{
    animation-name: enciende-boton;
}
.mini-item{
    padding: 20px;
    padding-left: 0px;
    padding-right: 0px;
    border-bottom: solid 1px var(--division-articulo);

    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.mini-item > h2{
    font-size: 22px;
    font-weight: 800;
    padding-bottom: 10px;
}
.mini-item > p{
    font-size: 20px;
    font-weight: 400;
    width: 230px
}
.mini-item > p > span{
    /*font-size: 18px;*/
    font-weight: 600;
}
.mini-controles{
    width: 130px;
    margin-top: 10px;
}
.mini-controles > button{
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    border-radius: 0px;
    border: solid 1px var(--fondo-boton);
    border: 0px;
    width: 30px;
    height: 25px;
    margin: 1px;
}
.mini-controles > button:hover{
    animation-name: enciende-boton;
}
.mini-controles > button.eliminar{
    animation-name: unset;
    background-color: transparent;
    border:0px;
    color: var(--color-boton-eliminar);
}
.mini-controles > button.eliminar:hover{
    color: #F00;
}

/*************************
 *        REGISTRO       *
 *************************/
.registro{
    flex-wrap: wrap;
    flex-direction: row;
}
.registro > aside:nth-child(1){    
    border-right: solid 1px var(--color-marca);
}
.registro > aside{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    /*background-color: #FA0;*/
    width: 50%;
    padding-left: calc(25% - 200px);
    padding-right: calc(25% - 200px);
}
.registro > aside > h2{
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
}
.registro > aside > p{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.registro > aside > form{
    width: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.registro > aside > form > input, .registro > aside > form > select{
    background-color: #FFF;
    border-radius: 0px;
    height: 30px;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 10px;
    font-family: var(--texto);
    border: solid 1px var(--color-marca);
    font-weight: 700;
}
.registro > aside:nth-child(2) > form > input{
    text-align: center;
}
.registro > aside > form > button, .registro > aside > h3{
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    border-radius: 0px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: solid 1px var(--fondo-boton);
    border: 0px;
    width: 150px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--texto);
}
.registro > aside > form > button:hover, .registro > aside > h3:hover{
    animation-name: enciende-boton;
}
.registro > aside > h2{

}

/**********************
 *   RESUMEN COMPRA   *
 *********************/
.resumen-compra{
    height: calc(100vh - 200px);
}
.resumen-compra > h1{
    font-weight: 600;
    margin-bottom: 2vw;
}
.resumen-compra > article{
    width: 100%;
    display: flex;
    font-size: 22px;
    justify-content: flex-end;
    padding-right: 10px;
}
.resumen-compra > article > p{
    font-size: 22px;
}
.resumen-compra > article > p:nth-child(1){
    font-weight: 700;
}
.resumen-compra > article > p:nth-child(2){
    width: 100px;
    text-align: right;
}
.resumen-compra > table{
    width: 100%;
    margin-bottom: 2vw;
}
.resumen-compra > p{
    font-size: 16px;
}
.resumen-compra > table th{
    background-color: var(--color-marca);
    color: #FFF;
    font-size: 14px;
    height: 30px;
    font-weight: 800;
}
.resumen-compra > table td{
    font-size: 16px;
    height: 30px;
    font-weight: 400;
    padding-right: 10px;
    padding-left: 10px;
}
.resumen-compra > table td:nth-child(1){
    width: 75%;
}
.resumen-compra > table td:nth-child(2){
    text-align: center;
    width: 10%;
}
.resumen-compra > table td:nth-child(3), .resumen-compra > table td:nth-child(4){
    text-align: right;
    width: 15%;
}
.resumen-compra > h3{
    text-align: right;
    width: 100%;
    padding-right: 10px;
    margin-top: 10px;
    font-size: 22px;
    color: var(--color-marca);
    /*background-color: #FA0;*/
}
.resumen-compra > div{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}
.boton-paypal{
    width: 250px;
    height: 35px;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--amarillo-paypal);
    border: 0px;
    cursor: pointer;
}
.boton-paypal:hover{
    background-color: #e2e2e2;
}

.boton-paypal > p{
    font-size: 14px;
    padding-right: 5px;
}
.boton-paypal > img{
    height: 80%
}

/**********************
 *      ESTELAR       *
 *********************/
.estelar{
}
.estelar > article{
    width: 100%;
    display: flex;
}
.estelar > article > article{
    width: 40%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.estelar > article > article *{
    width: 100%;
    text-align: left;
    color: #000;
}
.estelar > article > article > h4{
    font-weight: 500;
    font-size: 1.5vw;
    margin-bottom: 1vw;
}
.estelar > article > article > h2{
    font-weight: 500;
    font-size: 2.5vw;
    margin-top: 2vw;
}
.estelar > article > article > p{
    font-size: 1.1vw;
    margin-top: 0vw;
}
.estelar > article > article > h1{
    font-weight: 700;
    font-size: 2.5vw;
    margin-bottom: 2vw;
    line-height: .9;
}
.estelar > article > article > h1 > span{
    font-weight: 300;
    font-size: 2.5vw;
}
.estelar > article > div{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 40%;
    height: 35vw;
    /*background-color: #f2f2f2;*/
    border: solid 1px rgba(0, 0, 0, .05);
}
.estelar > article > aside{
    width: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.estelar .cantidad-input{
    width: 15%;
    height: 2.8vw;
    border-radius: .5vw;
    font-size: 1.7vw;
    margin-top: 3vw;
}
.estelar .btn-agregar{
    display: flex;
    width: 40%;
    line-height: 1.8;
    font-size: 1.2vw;
    font-weight: 400;
    color: #FFF;
    margin-top: 1vw;
    justify-content: center;
    align-items: center;
    background-color: var(--gris-oscuro);
    /*border: solid 1px var(--gris-oscuro);*/
    border:0px;
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    margin-top: 2vw;
    cursor: pointer;
}
.estelar .btn-agregar:hover{
    animation-name: enciende-boton;
}

/**********************
 *       VISTA        *
 *********************/
.vista{
    width: 8vw;
    height: 8vw;
    /*background-color: #f2f2f2;*/
    border: solid 1px rgba(0, 0, 0, .05);
    /*border-bottom: 0px;*/
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    margin-bottom: 1vw;
}
.vista:hover{
    opacity: .8;
}
/*.vista:last-child{
    border-bottom: solid 1px #999;
}*/

/**********************
 *      MOSAICO       *
 *********************/
.mosaico{
    height: 100vh;
    padding: 0px;
    overflow: hidden;
}
.mosaico > aside{
    width: 120%;
    transform: rotate(5deg);
}
.mosaico > aside > div{
    width: 24%;
    font-size: 0px;
}
.mosaico > aside > div > img{
    width: 100%;
}

/*********************
 *      FOOTER       *
 ********************/
footer{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    background-color: var(--gris-oscuro);
    color: #FFF;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
}
footer .logo-footer{
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .logo-footer > svg .st0, footer .logo-footer > svg .st1{
    fill: #fff;
}
footer > div{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 220px;
}
footer h2{
    font-size: 16px;
    font-weight: 700;
    width: 120px;
}
footer a{
    font-size: 20px;
    margin: 5px;
    padding: 5px;
}
footer a:hover{
    /*background-color: var(--rosa);*/
    /*color: #000;*/
    color: var(--rosa);
}

@media (max-width: 480px){
    section{
        padding-bottom: 15vw;
        padding-top: 15vw;
        padding-right: 7.5%;
        padding-left: 7.5%;
        flex-wrap: wrap;
    }
    footer > article{
        width: 150px;
    }
    footer h2{
        display: none;
    }
    footer a {
        font-size: 20px;
        margin: 10px;
    }

    .banner{
        height: 100vw;
        background-image: url(/../images/banner-movil.webp);
    }
    .banner > article{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .banner h1{
        font-size: 12vw;
        text-align: center;
    }
    .banner h2{
        width: 50%;
        line-height: 2;
        font-size: 5vw;
        margin-top: 6vw;
    }
    .banner h1 > span{
        font-size: 10vw;
    }

    .nosotros > article{
        width: 100%;
    }
    .nosotros > article > h2{
        font-size: 6vw;
        line-height: .9;
        padding-bottom: 4vw;
        padding-left: 15%;
        padding-right: 15%;
    }
    .nosotros > article > p{
        font-size: 4vw;
        text-align: center;
    }
    .nosotros > article:nth-child(1) > p{
        padding-bottom: 13vw;
    }

    .gift{
        width: 100%;
        height: 90vw;
        margin: 0px;
    }
    .gift > h2{
        font-size: 5vw;
        width: 86%;
        margin-left: 7%;
        margin-bottom: 7vw;
    }

    .producto-liquido{
        width: 48%;
        /*height: 70vw;*/
        height: 65vw;
    }
    .producto-liquido > a{
        /*height: 50vw;*/
        height: 42vw;
    }
    .producto{
        margin: 0px;
        margin-top: 4vw;
    }
    .producto:nth-child(odd){
        margin-left: 4%;
    }
    .producto-liquido > article > h3{
        font-size: 4vw;
    }
    .producto > article > h2{
        font-size: 5vw;
    }
    .producto-liquido > article {
        padding-top: 3vw;
    }
    .producto-liquido > article > h2 {
        height: auto;
        line-height: 1.2;
    }
    .productos > a{
        width: 45%;
        line-height: 2;
        font-size: 5vw;
        margin-top: 12vw;
    }
    header{
        height: 65px;
    }

    header > nav{
        position: fixed;
        top: 65px;
        right: 0px;
        width: 100%;
        right: -100%;
        height: calc(100vh - 100px);
        background-color: #fff;
        border-radius: 0px;
        padding-left: 0px;
        flex-wrap: wrap;
        align-content: center;
        padding-bottom: 40vw;
        /*display: none;*/

    }
    header > nav a.logo-header{
        display: none;
    }
    header > nav > a{
        width: 80%;
        text-align: center;
        font-size: 5vw;
        line-height: 3;
        color: #000;
        color: #000;
        border-bottom: solid 1px #000;
    }
    header > a{
        display: flex;
        width: 150px;
        height: 100%;
    }
    header > a > svg .st0, header > a > svg .st1{
        fill: #fff;
    }
    header > aside{
        width: 150px;
    }
    .top{
        height: 65px;
    }

    label{
        display: flex;
        top: 9px;
    }

    .estelar{
        padding-bottom: 0px;
    }
    .estelar > article{
        margin: 0px;
        flex-direction: column-reverse;
    }
    .estelar > article.producto:nth-child(odd){
        margin-left: 0px;
    }
    .estelar > article > article > h1{
        font-size: 9vw;
    }
    .estelar > article > article > h1 > span{
        font-size: 7vw;
    }
    .estelar > article > article{
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
    .estelar > article > article > p{
        font-size: 4vw;
    }
    .estelar > article > article > h2 {
        font-size: 7vw;
        margin-top: 6vw;
    }
    .estelar .btn-agregar{
        font-size: 5vw;
        margin-top: 5vw;
    }
    .estelar > article > aside{
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }
    .vista{
        margin: 0vw;
        width: 18vw;
        height: 20vw;
    }
    .estelar > article > div{
        width: 100%;
        height: 85vw;
    }
    #carrito-modal{
        width: 100%;
    }
    #carrito-contenido > p{
        font-size: 4vw;
    }
    #carrito-modal{
        height: calc(100vh - 55px);
    }

    .registro{
        flex-direction: column-reverse;
    }
    .registro > aside{
        width: 100%;
        padding: 0px;
    }
    .registro > aside:nth-child(1){
        border:0px;
    }
    .registro > aside:nth-child(2){
        margin-bottom: 15vw;
    }
    .resumen-compra{
        padding-left: 5%;
        padding-right: 5%;
    }
    .resumen-compra > h1 {
        font-weight: 600;
        margin-bottom: 5vw;
        font-size: 6vw;
    }
    .resumen-compra > p {
        width: 100%;
        font-size: 22px;
        text-align: right;
        padding-right: 3%;
    }
    .resumen-compra > div{
        justify-content: center;
    }
    .resumen-compra > table{
        margin-bottom: 6vw;
    }
    footer{
        height: 65px;
    }
    footer .logo-footer{
        width: 110px;
    }
    .resumen-compra > table td{
        font-size: 14px;
    }
    .resumen-compra > table th{
        font-size: 12px;
    }
}

header > nav.abierto{
    animation-name: abrir-menu;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}
header > nav.cerrado{
    animation-name: cerrar-menu;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

header.gris{
    animation-name: hace-gris;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}
header.blanco{
    animation-name: hace-blanco;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}
header.blanco > aside > button{
    color: var(--gris-oscuro);
}
header.blanco > a > svg .st0, header.blanco > a > svg .st1{
    fill: var(--gris-oscuro);
}

@keyframes hace-gris{
    from{background-color: #FFF}
    to{background-color: var(--gris-oscuro);}
}
@keyframes hace-blanco{
    from{background-color: var(--gris-oscuro);}
    to{background-color: #FFF}
}

@keyframes abrir-menu{
    from{right: -100%}
    to{right: 0px;}
}
@keyframes cerrar-menu{
    from{right: 0%}
    to{right: -100%;}
}











.producto .cantidad > button, .estelar .btn-agregar{
    display: none;
}
