/* Estilos generales */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ead2f5;
  color: #333;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Título principal */
h1 {
  color: #444;
  margin-bottom: 20px;
}

/* Contenedor de inputs */
div {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

/* Inputs */
input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

input:focus {
  border-color: #7e57c2;
}

/* Botón Agregar */
button#btnAgregar {
  background-color: #843986;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 600;
}

button#btnAgregar:hover {
  background-color: #eeb2f0;
}

/* Lista del carrito */
ul#listaCarrito {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 400px;
}

ul#listaCarrito li {
  background: white;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Botón eliminar */
ul#listaCarrito li button {
  background: transparent;
  border: none;
  color: #c62828;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

ul#listaCarrito li button:hover {
  transform: scale(1.2);
}

/* Total */
#total {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}