.catalogo-page{
    width:90%;
    max-width:1200px;
    margin:50px auto;
}

.catalogo-title{
    text-align:center;
    margin-bottom:40px;
}

.catalogo-header{
    grid-column:1 / -1;
}


.categorias-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.categoria-card{
    cursor:pointer;
    border-radius:15px;
    overflow:hidden;
    border:2px solid #F198B9;
    transition:.3s;
}

.categoria-card:hover{
    transform:translateY(-5px);
}

.categoria-card img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
}

.categoria-card h3{
    text-align:center;
    padding:15px;
}

.productos-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.producto-card{
    border:2px solid #F198B9;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
}

.producto-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
}

.producto-card h3{
    padding:15px;
    text-align:center;
    font-size:16px;
    line-height:1.3;
    min-height:85px;
}

.ver-mas-btn{
    width:90%;
    margin:0 auto 15px;
    display:block;
    padding:12px;
    border:none;
    background:#000;
    color:#fff;
    border-radius:30px;
    cursor:pointer;
}

.ver-mas-btn:hover{
    background:#F198B9;
    color:#000;
}

.producto-detalles{
    display:none;
    padding:15px;
    border-top:1px solid #eee;
}

.producto-detalles p{
    margin-bottom:10px;
}

.volver-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:30px;
    margin-bottom:30px;
    cursor:pointer;
}

.volver-btn:hover{
    background:#F198B9;
    color:#000;
}

.categoria-titulo{
    margin-bottom:30px;
    text-align:center;
}

#catalogoContenido{
    max-width:1200px;
    margin:0 auto;
    width:100%;
}

.producto-detalles strong{
    display:block;
    margin-top:10px;
    font-size:20px;
    color:#F198B9;
}

.producto-card{
    transition:.3s;
}

.producto-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.volver-btn{
    display:inline-block;
    width:auto;
    max-width:250px;

    background:#000;
    color:#fff;

    border:none;
    border-radius:30px;

    padding:12px 20px;

    cursor:pointer;

    margin-bottom:20px;
}

@media (max-width:768px){

    #catalogoContenido{
        grid-template-columns:1fr;
    }

    .productos-grid{
    grid-template-columns:1fr;
}
}