.carrito-container {
  position: relative;
  display: flexy;
  justify-content: center;
}

#btn-carrito {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
}

.carrito-desplegable {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  padding: 10px;
  z-index: 100;
}

.carrito-desplegable ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carrito-desplegable li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.carrito-desplegable form {
  margin-top: 10px;
}