/* LV.T CONVERSION SYSTEM STYLES */
.conversion-float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--lvt-gold);
  color: var(--lvt-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.float-btn:hover {
  transform: scale(1.1);
  background: var(--lvt-white);
  color: var(--lvt-gold);
}
