.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-cart-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  color: #1a237e;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.floating-cart-button:hover {
  background-color: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.floating-cart-button i {
  font-size: 24px;
}

.icon-wrapper {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e53935;
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
}

.label {
  font-size: 15px;
}

