*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    color: #333;
    user-select: none;
}
b{
    color: #000
}
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
  }
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    
}
.contenedor{
    min-width: 730px;
    width:75%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 17px
}
.div-img{
    height: 100vh;
    margin: auto;
    width: 75%;
    min-width: 730px;
    background-image: url('img/flayer1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    scroll-snap-align: start;
}
.contenido{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:100vh;
    background: #fff;
    scroll-snap-align: start;
    text-transform: capitalize;
}
h1{
    color: #E64A19;
    font-size: 45px;
}
*::-webkit-scrollbar {
    width: 12px; /* Ancho de la barra de desplazamiento */
}

*::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color de fondo de la pista */
    border-radius: 10px; /* Bordes redondeados */
}

*::-webkit-scrollbar-thumb {
    background: #E64A19; /* Color del "pulgar" (la parte que se arrastra) */
    border-radius: 10px; /* Bordes redondeados del pulgar */
}
*::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color del pulgar al pasar el mouse */
}
  /* Eliminar las flechas en WebKit */
*::-webkit-scrollbar-button:start,
*::-webkit-scrollbar-button:end {
    display: none;
}
.muestra-lajas{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75vh;

    grid-gap: 20px;
    overflow-y: auto;
    padding: 15px;
}
.laja{
    width: 160px;
    height: 200px;
    border-radius: 5px;
    display: inline-block;
    transition: 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;
    text-decoration: none;
}
.laja:hover{
    transition: 0.1s;
    box-shadow: 0 0 5px #000;
    transform: perspective(1000px) rotateY(-18deg)
}
.laja h3{
    font-size: 22px;
    

}
.laja img{
    border-radius: 5px;
    padding: 10px;
    width: 130px;
    height: 130px;
    margin-left: 0;
}
.horario, .productos, .direccion{
    border-left: 1px solid #E64A19;
    border-right: 1px solid #E64A19;
    width: 100%;
    background: #eee;
    text-align: center;
    scroll-snap-align: start;
}
.direccion{
    background: #fff;
    border-bottom: 1px solid #E64A19;
}
.horario, .direccion{
    padding: 8px 0;
}
.productos>div> p{
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #E64A19;

}

.productos>div{
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
}
.productos>div>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-between;
    align-items: start;
    overflow: auto;
    height: 0px;
    animation-fill-mode: forwards;

}
.activo{
    height: 450px;
    animation: activando 0.5s;
}
.desactivado{
    animation: desactivando 0.5s;
}
@keyframes activando{
    0%{
        height: 0px;
    }
    100%{
        height: 450px;
    }
    
}
@keyframes desactivando{
    0%{
        height: 450px;
    }
    100%{
        height: 0px;
    }
    
}
.productos>.activo p{
    background: #eee;
}
.div-elemento-venta{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 65px;
    background: #fff;
    border-bottom: 1px solid #E64A19;
    padding:15px;

    position: relative;
}
.div-elemento-venta p{
    min-width: 120px;
    width: 15%;
    text-align: right;
    text-transform: capitalize;
}
.div-elemento-venta h3{
    min-width: 200px;
    width: 55%;
    text-align: left    ;
    margin-left: 75px;
    text-transform: capitalize;
}


/*
.div-informacion-venta{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 35px;
    align-items: center;
    background: #fff;

    width: 80%;
}
.div-informacion-venta div{
    display: flex;
    flex-direction: row;
    justify-content: left;
    grid-gap: 15px;
}
.div-informacion-venta div b{
    text-align: left;
}
.div-informacion-venta div p{
    min-width: 101px;
}
*/
button{
    min-width: 730px;
    width: 75%;
    border: none;
    height: 10vh;
    background-color: #E64A19;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    position: fixed;
    bottom: 0;
    color: #eee;
    font-size: 20px;
    font-weight: bold;
    margin: auto;

    scroll-snap-align: start;
    z-index: 1000;
}
.seleccionable:hover{
    cursor: pointer;
}
.seleccionable:active{
    cursor: default;
}
span{
    height: 10vh;
}
.productos>div >p:hover, .div-elemento-venta:hover{
    background: #eee;
}
.footer{
    color: #ff7b22;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: #E64A19 1px solid;
    border-left: #E64A19 1px solid;
    background: #fbf8f1;
    scroll-snap-align: start;
    font-size: 24px;
    z-index: 700;
}
.footer *{
    color: #ff7b22;
    z-index: 700;
}
.footer >div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 730px;
    grid-gap: 25px;
}
.footer >div>div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 730px;
}
.footer-img{
    min-width: 150px;
    width: 25%;
    height: 35vh;
    min-height: 150px;
    z-index: 500;
}
.footer-img img{
    width: 100%;
    height: 100%;
    min-width:206px ;
    min-height:215px ;
    object-fit: cover;
    object-position: center center;
}
.footer-text{
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    justify-content: center;
    align-self: center;
    margin-bottom: 10px;
    margin-left: 15px;

}
.footer-text a{
    text-decoration: none;
}
.footer-text i{
    margin-right: 7.5px;
}

.deslizante{
    background: rgba(0, 0, 0, 0.3);
    position: fixed;

    width: 100vw;
    height: 100%;
    top: -100%;
    z-index: 1500;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 730px;
    transition: 0.5s;

}
.viendo{

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding: 15px;
    height: 50vh;
    background: #fff;
    position: relative;
    scroll-snap-align: start;
    
}
.div-visualizar-laja{

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    
}
.vis-h3{
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 2000;
    transform: translate(-50%);
    font-size: 35px;
    min-width: 270px;

    text-transform: capitalize;
    text-align: center;
    color: #E64A19;
}
.cont-img{
    object-fit: cover;
    max-width: 50%;
    object-position: center center;
    min-width: 180px;
    min-height: 180px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}   
.cont-img img{
    max-width: 220px;
    max-height: 180px;
    width: 80%;
    height: 80%;
    z-index: 500;
}

.div-descripcion-laja{

    width: 50%;
    background: #fff;
    margin-left: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 7.5px;

    text-align: center;


}
.laja-desc{
    text-transform: capitalize;
}
.div-descripcion-laja h3{
    text-transform: capitalize;
}
.cantidad{
    width: 80px;
    font-size: 20px;
    border: none;
    border-bottom: #E64A19 1px solid;
}
.flecha{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    background: #E64A19;
    transition: 0.5s;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    
}
.flecha i{
    color: #fff;

}
.flecha:hover{
    cursor: pointer;
    box-shadow: 0 0 2px #000;
    transition: 0.5s;
    text-shadow: 0 0 2px #000;
}


.resultado{
    border-bottom: 1px solid #E64A19;
    width: 160px;
    max-width: 190px;
    text-align: center;
    margin-top: 15px;
}
.resultado p{
   text-align: left;
}




@media screen and (max-width: 900px) {
    .div-informacion-venta div{
        flex-direction: column;
        grid-gap: 0;
    
    }
    .div-elemento-venta p{
        margin-left: 0;
    }
    .div-elemento-venta h3{
        margin-left: 15px;
    }
    .viendo{
        flex-direction: column;
    }
}

@media screen and (min-width: 1000px) {
    .div-informacion-venta div{
    grid-gap: 50px;
    }


}

.pedido{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    max-width: 730;
    height: 70vh;
    background: #fff;
    position: relative;
    font-size: 20px;
    


}
.agregar, .comprar{
    width: 100px;
    height: 30px;
    background: #E64A19;
    color: #fff;
    border: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    text-decoration: none;
}
.agregar i{
    color: #fff;
}
.agregar:hover, .comprar:hover{
    cursor: pointer;
    box-shadow: 0 0 2px #000;
    transition: 0.5s;
    text-shadow: 0 0 2px #000;
}
.agregar:active, .comprar:active{
    cursor: default;
}
.comprar{
    background-color: #25d366;
}
.carrito-img{
    width: 50px;
    height: 50px;
}
.pedido-div{
    height: 60%;
    width: 80%;
    overflow: auto;
}

.fa-trash-alt{
    color: #E64A19;
    font-size: 20px;
    cursor: pointer;

    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    opacity: 0;
}

.div-elemento-venta:hover .fa-trash-alt{
    opacity: 1;
    transition: 0.5s;
}