.wp-floating-menu {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background-color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpfm-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.wpfm-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #555;
  transition: all 0.2s ease;
}

.wpfm-item:hover {
  color: #000;
  transform: translateY(-2px);
}

.wpfm-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpfm-icon {
  width: 24px;
  height: 24px;
}

.wpfm-count {
  margin-left: 6px;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
}

/* Like Active State */
.wpfm-like.active .wpfm-icon {
  fill: #e0245e;
  stroke: #e0245e;
}

.wpfm-like.active .wpfm-count {
  color: #e0245e;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .wp-floating-menu {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #f0f0f0;
  }

  .wpfm-inner {
    width: 100%;
    justify-content: space-around;
    gap: 0;
  }

  .wpfm-item:hover {
    transform: none;
  }
}
