:root { --celeste: #008ec9;}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    padding_: 20px;
}
.catalogo-container {
    display: grid;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(5, 1fr);
}

.ancho{ max-width: 1400px;   margin: 0 auto;}

@media (max-width: 1400px) {
    .catalogo-container{ width: 96%;} .ancho{ width: 96%;}
}
@media (max-width: 992px) {
    .catalogo-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.producto-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
}

.producto-card:hover {
    border-color: var(--celeste);
}

.img-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.titulo {
    font-size: 14px;
    color: #333;
    height: 40px;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1.4;
}

 

.precio{ 
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.ce{color: var(--celeste);}.ne{color:#000;}
.fl{ float:left}
.r{ text-align:right;}
.l{ text-align:left;}
.c{ text-align:center;}
.cien{ width: 100%;}
.w50{ width: 50%;}
.w30{ width: 30%;}
.w20{ width: 20%;}
.w70{ width: 70%;}
.b{ font-weight: bold;}
.rap10{border-top: 1px dashed #ccc;padding:10px}
.bot{border-bottom: 1px dashed #ccc;}
.p-b5{padding-bottom:5px}
.dedo{cursor: pointer;cursor: hand;}
/*
#login input[type=text],input[type=email],input[type=number],input[type=date],input[type=text],select{height: 40px;padding: 10px; border: 1px solid #ebebeb;width: 100%;background: #fff}
*/
.formu input{height: 40px;padding: 10px; border: 1px solid #ebebeb;width: 100%;background: #fff}
.precio-habitual {
    font-size: 12px;
    color: #999;
    text-decoration_: line-through;
    margin-bottom: 15px;
}
.add {
    background-color:  var(--celeste);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    
    transition: background 0.3s;
}

.add:hover {
    background-color: #00aeef;
}