body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffeef5;
  margin: 0;
  padding: 0;
}

.carrito-header {
  background-color: #f8c8dc;
  padding: 20px;
  text-align: center;
  position: relative;
}

.volver {
  position: absolute;
  left: 20px;
  top: 20px;
  text-decoration: none;
  color: #d63384;
  font-weight: bold;
}

h1 {
  color: #d63384;
  font-size: 2rem;
}

.carrito-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  padding: 40px;
  gap: 20px;
}

.producto-carrito {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.producto-carrito img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.carrito-footer {
  background: #f8c8dc;
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  color: #7b2c56;
}

#comprar-btn {
  margin-top: 15px;
  background-color: #ff8bb3;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
}

.footer {
  background-color: #ffe0eb;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  margin-top: 30px;
  color: #555;
}