body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 2rem;
    background: #f7f7f7;
}

/* grid de productos con separación entre filas y columnas */
#lista-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.producto {
    background: #fff;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 350px;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.producto img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
    background: #f0f0f0;
    margin-bottom: 1rem;
}

.producto-info {
    flex: unset;
    width: 100%;
    text-align: center;
}

.producto h3 {
    margin: 0 0 0.5rem 0;
}

.producto button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.producto button:hover {
    background: #0056b3;
}
#carrito {
    margin-top: 2rem;
}
#carrito ul {
    list-style: none;
    padding: 0;
}
