.model-card{
    width:220px;

    background:#1f1f1f;

    border:1px solid #333;
    border-radius:10px;

    overflow:hidden;

    transition:transform .2s ease, border-color .2s ease;
    cursor:pointer;
}

.model-card:hover{
    transform:translateY(-3px);
    border-color:#555;
}

/* Imagen rectangular */
.model-image{
    width:100%;
    aspect-ratio:16/9;

    background:#2a2a2a;
}

.model-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.model-info{
    padding:10px 12px;
}

.model-title{
    color:white;
    font-size:15px;
    font-weight:600;
    margin-bottom:4px;
}

.model-category{
    color:#9e9e9e;
    font-size:12px;
    margin-bottom:6px;
}

.model-price{
    color:white;
    font-size:16px;
    font-weight:bold;
}