#floatingCart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1050; /* au-dessus de tout */
}

#floatingCart .cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#floatingCart .cart-btn:hover {
  background-color: #333;
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1051;
}
.cart-btn {
  position: relative;
}
