ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.producto-tarjeta {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
    list-style: none;
}

.producto-tarjeta:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.imagen-producto img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.titulo-producto {
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
}

.precio {
    color: #d90000;
    font-size: 18px;
    font-weight: bold;
}

.ficha-tecnica {
    font-size: 14px;
    list-style: none;
    margin: 10px 0;
    padding: 0;
}

.ficha-tecnica li {
    margin-bottom: 5px;
}

.boton-comprar {
    margin-top: 10px;
}