.floating-wheel {
  position: fixed;
  bottom: 80px;
  left: 10px;
  width: 90px;
  height: 90px;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.floating-wheel-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  animation: floatPulse 2s infinite ease-in-out;
  background: #fff;
  text-decoration: none;
}

.floating-wheel-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.floating-wheel-label {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.floating-wheel-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.floating-wheel-close:hover {
  background: #e53935;
}

@keyframes floatPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .floating-wheel {
    width: 65px;
    height: 65px;
    bottom: 70px;
    left: 10px;
  }

  .floating-wheel-label {
    font-size: 11px;
    padding: 3px 7px;
    bottom: 6px;
  }
}