body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;    
}

h1, h2 {
    color: #333;
    text-align: center;
    background-color: #b71c1c;
}

#lista-productos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.producto {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    width: 200px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.img-producto {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.producto button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.producto button:hover {
    background-color: #45a049;
}

#lista-carrito {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

#lista-carrito li {
    list-style: none;
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#vaciarCarrito {
    margin-top: 10px;
    background-color: #e53935;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

#vaciarCarrito:hover {
    background-color: #d32f2f;
}

.btn-eliminar {
    margin-left: 10px;
    padding: 3px 8px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-eliminar:hover {
    background-color: #b71c1c;
}

#productos, #carrito {
    width: 100%;
    max-width: 800px;
    padding: 1rem;
}

#lista-productos {
    justify-content: center;
}

@media (max-width: 600px) {
    .producto {
        width: 100%;
    }

    #lista-carrito li {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-eliminar {
        align-self: flex-end;
    }
}
