.grid-productos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.tarjeta-producto {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}

/* Imagen */
.imagen-producto {
    width: 100%;
    height: auto;
    display: block;
}

/* Título del producto */
.titulo-tarjeta {
    font-size: 1rem;      /* tamaño normal */
    line-height: 1.3;
    margin-top: 10px;
    white-space: normal; /* permite varias líneas */
    overflow: visible;
    text-overflow: unset;
    text-align: center;
}
