* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
body{
    background-color: #fbfbff;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 9px;
    height: 9px;    
}
body::-webkit-scrollbar-thumb {
    background: rgb(160, 160, 160);
    border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
}
body::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 4px;
}
.Grilla_Filtros{
    margin: 3% auto;
    display: grid;
    grid-template-columns: 300px max-content;  
    grid-gap: 10px;
    width: max-content;
    background-color: transparent;
}
.contenedor_titulo_filtros{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.imagen_filtros{
    max-width: 30px;
}
.Opciones_Filtros{
    background-color: transparent;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    padding: 12px 20px;
    height: max-content;
    width: 300px;
    border-radius: 2px;
    text-transform: capitalize;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.040);
    overflow: hidden;
    transition: 0.2s ease-in-out;
}
.Opciones_Filtros.activo{
    height: 100%;
    margin-bottom: 10px;
}
.Opciones_Filtros span{
    font-family: 'Poppins';
    font-size: 1.1em;
    color: #1a1919;
    font-weight: 600;
}
.boton_categorias_tienda{
    border: none;
    outline: none;
    font-size: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    width: max-content;
    background-color: transparent; 
}
.Contenedor_Maestro_Productos hr{
    color:#9a9a9a;
    margin-bottom: 10px;
}
.Caja_Titulo{
    background-color: #f8f8f8;
    padding: 15px 20px 5px 15px;
    margin-bottom: 10px;
}
.Titulo_Categoria{
    font-family: 'Poppins';
    font-size: 19px;
    color: #333333;
    font-weight: 600;
    width: 100%;
}
.Opciones_Filtros a{
    font-family: 'Poppins';
    font-size: .95em;
    font-weight: 400;
    color: #808080;
    margin-top: 5px;
    transition: .3s;
    padding: 5px 0px;
    height: 100%;
    display: flex;
    align-items: center;
}
.Opciones_Filtros a i{
    font-size: .6em;
    margin-right: 5px;
    text-align: center;
}
.Opciones_Filtros a:hover{
    color: #1a76d1;
}
.Opciones_Filtros .categoria_activa{
    color: rgb(36, 166, 253);/*rgb(36, 166, 253)*/
    font-weight: 500;
    font-size: 17px;
    position: relative;
}
/* .Opciones_Filtros .categoria_activa::after{
    content: '';
    position: absolute;
    width: 3px;
    height: 15px;
    background-color: #1a76d1;
    left: -6px;
} */


.Opciones_Filtros .titulo_filtros{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #202020;
}
.Opciones_Filtros .titulo_filtros.dos{
    margin-top: 5px;
}
.Contenedor_Grilla_Productos{   
    display: grid;
    grid-template-columns: 250px 250px 250px 250px;   
    column-gap: 5px;
    row-gap: 5px;
    margin-top: 15px;  
    width: max-content;
}
.producto{
    overflow: hidden;
    height: 380px;
    width: 250px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    border: none;
    background-color: #fff;
    display: flex; 
    flex-direction: column;
    position: relative;
    
    
}
.Agregar_Carrito{
    font-family: 'Poppins';
    background-color: #e5f2e5;
    font-size: 15px;
    color: #008001;
    width: max-content;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 2px;  
    transition: 0.2s ease-in-out; 
    padding: 2px 8px;
    margin-top: 15px;
    position: absolute;
    bottom: 10px;
}
.Agregar_Carrito ion-icon{
    font-size: 18px;
    margin-right: 3px;
}
.producto .Agregar_Carrito:hover{
    opacity: 80%;
}
.producto.mostrar{
    overflow: hidden;
    height: 370px;
    width: 250px;
    cursor: pointer;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.080);
    border-radius: 3px;
    display: flex; 
    flex-direction: column;
    transition-duration: 0.2s;
    padding: 0;
    /* border: 1px solid #e6e7ec; */
    background-color: #ffffff;
    position: relative;
}
.producto img{
    transform: scale(0.8);
    width: 100%;
    height: 260px;
    object-fit: contain;
    transition: 0.2s ease-in-out;
}
.producto .Caja_Imagen_Carousel a{
    display: flex;
}
.producto:hover img{  
    transform: scale(0.83);   
}
.informacion_producto{   
    display: flex;
    flex-flow: column;
    text-align: left;  
    padding: 0px 20px;
    padding-top: 1px;
    height: 75px; 
    width: 100%;
    border-top: 1px solid #e6e7ec;
}
.descripcion_producto{
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 11px;
    color: #252525;
    margin: 0px 0px;
    transition: 0.2s;
    width: 100%;
    height: max-content;
    
    text-align: left;
    height: 30px;
    letter-spacing: 0.1px;   
}
.categoria_producto{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    color: #4b4b4b;
    margin: 0px 0px;
    transition: 0.2s;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 15px;
    text-transform: uppercase; 
    letter-spacing: 0.1px;   
    margin-bottom: 0px;
    font-size: 13px;
    text-transform: capitalize;
    color: rgba(75, 75, 75, 0.600);
}
.precio_producto{
    font-family: 'Poppins';   
    margin: 0px 0px;
    margin-top: 1px;
    font-size: 16px;  
    color: #1a76d1;
    font-weight: 500;   
    width: 100%;
    display: block;
    text-align: left;
    line-height: 15px;
}
.precio_producto_antiguo{
    line-height: 12px;
    font-size: 14px;
    font-family: 'Poppins';
    text-align: left;
    font-weight: 400;
    color: rgba(119, 119, 119, 0.692);
    width: 100%;
    display: block;
}
.cabecera_tienda{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 8px 10px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.040);
}
.titulo_cabecera_actual{
    color: #202020;
    font-weight: 600;
    font-size: 22px;
    width: max-content;
    font-family: 'Poppins';
    text-transform: capitalize;
}
.productos_no_encontrados{
    font-family: 'Poppins';
    font-size: 19px;
    width: max-content;
    color: #ec3636;
    background-color: rgba(212, 82, 82, 0.200);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
.vista_rapida_producto .precio_producto_antiguo{
    position: initial;
}
.Contenedor_Grilla_Productos .precio_producto_antiguo{
    bottom: 44px;
}
.producto_oferta{
    font-family: 'Poppins';
    font-weight: 500; 
    font-size: 15px;
    position: absolute;
    left: 10px;
    top: 10px;
    color: #ffffff;
    background-color: #e67a00;
    border-radius: 3px;
    padding: 1px 6px;
    z-index: 2;
}
.existencia_producto.enstock{
    font-family: 'Poppins';
    font-size: 0.9em; 
    background-color: rgba(40, 167, 70, 0.100); 
    color: #28a745;
    border-radius: 2px;
    font-weight: 500;
    width: 80px;
    padding: 2px 7px;
    text-align: center;
    margin-left: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.existencia_producto.sinstock{
    font-family: 'Poppins';
    font-size: 0.9em; 
    background-color: transparent; 
    background-color: #fbeaec;
    color: #dc3545;  
    border-radius: 2px;
    padding: 2px 7px;
    font-weight: 500;
    width: 80px;
    margin-left: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.Caja_Botones_Indices{
    margin: 3% 0%;
    width: auto;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.Boton_Indice{
    background-color: transparent;
    color: #535353;
    box-shadow: 0 0 0.1em rgba(56, 56, 56, 0.767) ;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 14px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 0px 5px;
    border-radius: 2px;
    border: 1px solid #f2f2f2;
    outline: none;  
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Boton_Indice.activo{
    border: none;
    color: #ffffff;
    background-color: #1a76d1;
}

.overlay_vista_rapida{
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.500);
    z-index: 2;
}
.vista_rapida_producto{
    display: none;
    flex-direction: row;
    background-color: #fff;
    width: 1200px;
    height: 530px;
    position: fixed;
    border-radius: 5px;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.vista_rapida{
    position: absolute; 
    top: 8px;
    right: 45px;
    width: 30px;
    height: 30px;
    background-color: #cadef2;
    font-size: 18px;
    color: #2185e9;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: 0.2s ease-in-out; 
    opacity: 0; 
}


.vista_rapida_producto .Contenedor_Imagen{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}
.vista_rapida_producto .imagen_vista_rapida{
    max-width: 100%;
    max-height: 100%;
}
.vista_rapida_producto .Seccion_Datos{
    padding: 50px 50px 50px 50px; 
    background-color: #f1f3fb;
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 50%;
    height: 100%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.010);
    border-radius: 10px;
}
.vista_rapida_producto .descripcion_producto{
    font-family: 'Poppins';
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    /* line-height: 25px; */
    color: #333;
    text-align: left;
    text-transform: uppercase;
}
.vista_rapida_producto .marca{
    font-family: 'Poppins';
    font-weight: 500;
    color: #444;
    padding-bottom: 5px;
    border-bottom: 1px solid #c0c0c0;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.vista_rapida_producto .precio_producto{
    font-family: 'Poppins';
    font-size: 27px;
    color: #1a76d1;
}
.vista_rapida_producto .existencia_producto{
    max-width: max-content;
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 550;
}
.vista_rapida_producto .Aclaracion{
    font-size: 0.9em;
    font-family: 'Poppins';
    border-top: 1px solid #c0c0c0;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c0c0c0;
}


.vista_rapida_producto .Boton_Consultar{
    font-size: 1.1em;
    font-family: 'Poppins';
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
    background-color: #008001;
    border: none;
    padding: 10px 20px;
    width: max-content;
    height: 50px;
    cursor: pointer;
    border-radius: 4px;
    transition: .2s ease-in-out;
    outline: none;
    margin-top: 20px;
}
.vista_rapida_producto .Boton_Consultar:hover{
    background-color: #04a004;
    transform: scale(1.05);
}
.vista_rapida_producto .producto_oferta{
    max-width: max-content;
    position: initial;
    margin-bottom: 20px;
}


.vista_rapida_producto .Redes_Iconos_Producto{
    display: flex;
    flex-direction: row;
    height: max-content;
}
.vista_rapida_producto #WSP{
    font-size: 30px;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    text-align: center;
    padding-top: 7px;  
    color: #fff;
    background-color: #008001;
}
.vista_rapida_producto #WSP:hover{
    background-color: #069606;
}
.vista_rapida_producto #FB{    
    margin-right: 10px;
    font-size: 30px;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    text-align: center;
    padding-top: 7px;  
    color: #fff;
    background-color: #3b589a;
}
.vista_rapida_producto #FB:hover{
    background-color: #4c71c7;
}
.vista_rapida_producto #IG{
    margin-right: 10px;
    font-size: 30px;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    color: #fff;
    text-align: center;
    padding-top: 7px;
    padding-right: 1px;
    background-color: #ce2582;
}
.vista_rapida_producto #IG:hover{
    background-color: #dd2c8d;
}
.vista_rapida_producto .boton_cerrar_vista_rapida{
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #cadef2;
    color: #2185e9;
    transition: 0.2s ease-in-out;
    padding: 2px;
    border-radius: 5px;
}
.vista_rapida_producto .boton_cerrar_vista_rapida:hover{
    background-color: #b6d6f5;
}
.visualizaciones_producto{
    position: absolute;
    top: 8px;
    right: 8px;
    height: 30px;
    font-family: 'Poppins';
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000a8;
    transition: 0.2s ease-in-out;
}
.visualizaciones_producto ion-icon{
    font-size: 18px;
    margin-left: 3px;
}
@media screen and (max-width:1390px){
    .Contenedor_Grilla_Productos{   
        grid-template-columns: 225px 225px 225px 225px;
    }
    .producto.mostrar{
        height: 375px;
        width: 225px;
    }
    .Agregar_Carrito{
        bottom: 13px;
    }
}
@media screen and (max-width:1300px){
    .Contenedor_Grilla_Productos{   
        grid-template-columns: 225px 225px 225px;
    }
}
@media screen and (max-width:1250px){
    .vista_rapida_producto{
        width: 100%;
    } 
}
@media screen and (max-width:1020px){
    .Grilla_Filtros{
        grid-template-columns: none;
        grid-template-rows: max-content max-content;
        
    }
    .Contenedor_Grilla_Productos{   
        grid-template-columns: 225px 225px 225px 225px;
    }
    .Opciones_Filtros{
        margin-bottom: 10px;
        height: 47px;
        width: 100%;
    }
    .boton_categorias_tienda{
        display: flex;
    }
    .precio_producto{
        font-size: 15px;  
        /* line-height: 25px; */
    }
    .precio_producto_antiguo{
        font-size: 13px;
    }
}
@media screen and (max-width:935px){
    .Contenedor_Grilla_Productos{   
        grid-template-columns: 225px 225px 225px;
    }
    .Grilla_Filtros{
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:765px){
    .vista_rapida_producto{
        position: fixed;
        flex-direction: column;
        height: 93%;
        width: 93%;
        overflow-y: scroll;
    }
    .vista_rapida_producto .Seccion_Datos{
        width: 100%;
        height: max-content;
    }
    .vista_rapida_producto .Contenedor_Imagen{
        width: 100%;
        height: 50%;      
    }
}
@media screen and (max-width:700px){
    .Contenedor_Grilla_Productos{   
        grid-template-columns: 250px 250px;
    }
    .producto.mostrar{
        height: 380px;
        width: 250px;
    }
}
@media screen and (max-width:530px){
    .Contenedor_Grilla_Productos{  
        grid-template-columns: 200px 200px;
    }
    .producto.mostrar{
        height: 380px;
        width: 200px;
    }
}
@media screen and (max-width:410px){
    .Contenedor_Grilla_Productos{  
        grid-template-columns: 180px 180px;
        width: 100%;
    }
    .producto.mostrar{
        height: 380px;
        width: 180px;
    }
}