
/*------------------------------------------------------*/
.productGlr{
    margin: 4% 9%;
}
.productGlr h1{
    font-weight: 600;
    color: #18377A;
    text-align: center;
    margin: 4% 0;
}
/*------------------------------------------------------*/


/*------------------------------------------------------*/
.productGlr .productsBox{
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 50px;
    justify-items: center;
}
.productGlr .offerBox{
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    gap: 50px;
    justify-items: center;
}
.productGlr .productsBox a,
.productGlr .offerBox a{
    text-decoration: none;
}
.productGlr .productsBox .productBox,
.productGlr .offerBox .productBox{
    margin: 10px 0;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}
.productGlr .productsBox .productBox img,
.productGlr .offerBox .productBox img{
    width: 100%;
    height: auto;
}
.productGlr .productsBox .productBox span,
.productGlr .offerBox .productBox span{
    display: flex;
    flex-direction: column;
    padding: 10px;
} 

/*------------------------------------------------------*/
.productGlr .productsBox .productBox span .categoria,
.productGlr .offerBox .productBox span .categoria{
    font-size: 0.8rem;
    color: #18377A;
    margin-bottom: 5px;
    
}
.productGlr .productsBox .productBox span h5,
.productGlr .offerBox .productBox span h5{
    font-size: 1.2rem;
    line-height: 23px;
    font-weight: 750;
    color: #18377A;
    height: 50px;
    display: flex;
    
}
.productGlr .productsBox .productBox span h5 div,
.productGlr .offerBox .productBox span h5 div{
    font-size: 10pt;
}

.productGlr .productsBox .productBox span .datos,
.productGlr .offerBox .productBox span .datos{
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 22px;  
}
.productGlr .productsBox .productBox span .datos .medidas,
.productGlr .offerBox .productBox span .datos .medidas{
    color: #18377A;
    display: flex;
    align-items: center;
    justify-content: center ;
    width: auto;
    padding: 0 5px;
    text-align: center;
    margin: 0 5px 0 0;
    background-color: #e6e6e6;
    font-size: 0.9rem;
}
.productGlr .productsBox .productBox span .datos .gramaje,
.productGlr .offerBox .productBox span .datos .gramaje{
    color: #18377A;
    display: flex;
    align-items: center;
    justify-content: center ;
    width: auto;
    padding: 0 5px;
    text-align: center;
    margin: 0 5px 0 0;
    background-color: #e6e6e6;
    font-size: 0.9rem;
}
.productGlr .productsBox .productBox span .datos .color,
.productGlr .offerBox .productBox span .datos .color{
    margin-left: 8px;
    border: 1px solid #e6e6e6;
    height: 20px;
    width: 20px;
}
/*------------------------------------------------------*/

.productGlr .productsBox .productBox span button,
.productGlr .offerBox .productBox span button{
    margin: 15px 0;
    height: 35px;
    width: 100%;
    border-radius: 17px;
    background-color: #09BB1B;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.productGlr .productsBox .productBox span a li,
.productGlr .offerBox .productBox span a li{
    list-style: none;
}
.productGlr .button_more{
    margin: 20px;
    width: 280px;
    height: 40px;
    font-size: large;
    font-weight: bold;
    color: #fff;
    border-radius: 70px;
    border: 0;
    background-color: #18377A
}  
.productsBox .button_more:hover{
    background-color: #E6BD5C;
    }



/* Media queries para tamaños de pantalla más pequeños */
@media screen and (max-width: 768px) {
    .productGlr .productsBox {
        grid-template-columns: repeat(2, minmax(150px, 1fr)); /* Modificamos el número de columnas y el tamaño mínimo de las columnas */
        gap: 10px; /* Reducimos el espacio entre los elementos */
    }
}

/* Media queries para tamaños de pantalla aún más pequeños, como dispositivos móviles */
@media screen and (max-width: 480px) {
    .productGlr .productsBox {
        grid-template-columns: repeat(1, minmax(100px, 1fr)); /* Cambiamos a una sola columna */
        gap: 5px; /* Reducimos aún más el espacio entre los elementos */
    }
}










