/* ============================================
   Floating Sidebar (shared by all pages)
   ============================================ */
.floating-sidebar {
  position: fixed;
  right: 16px;
  top: 30%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 20px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.floating-sidebar .sidebar-btn {
  width: 24px;
  height: 24px;
  background: transparent;
  color: #333;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s;
}

.floating-sidebar .sidebar-btn:hover {
  color: var(--primary-blue);
}

.floating-sidebar .wechat-btn:hover {
  opacity: 0.9;
}

.floating-sidebar .cart-badge .el-badge__content {
  background-color: var(--primary-orange);
  border: none;
}

.floating-sidebar .close-btn {
  color: #B0B0B0;
  font-size: 28px;
}

.floating-sidebar .close-btn:hover {
  color: #999;
}
