.floating-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: visible;
  max-width: 365px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.floating-banner a {
  display: block;
  border: none;
  outline: none;
}

.floating-banner img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

.floating-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-register-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #F58220;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .floating-banner {
    bottom: 25px;
    right: 25px;
    max-width: 200px;
  }

  .floating-register-badge {
    font-size: 12px;
    padding: 6px 15px;
    top: -12px;
  }
}

@media (max-width: 768px) {
  .floating-banner {

    max-width: 224px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .floating-register-badge {
    font-size: 11px;
    padding: 5px 12px;
    top: -11px;
  }
}

/* @media (max-width: 480px) {
  .floating-banner {
    bottom: 15px;
    right: 15px;
    max-width: 360px;
  }

  .floating-register-badge {
    font-size: 10px;
    padding: 4px 10px;
    top: -10px;
  }
} */
