/* Floating Cart Button Styles */
.cfw-floating-cart {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2d6a4f, #1b4d34);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(45,106,79,0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.cfw-floating-cart:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 8px 20px rgba(45,106,79,0.5);
}

.cfw-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4e50;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  display: none;
  min-width: 20px;
  text-align: center;
}
