@charset "UTF-8";

.floating-banner {
  position: fixed;
  bottom: 140px;
  right: 40px;
  max-width: 150px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

@media (max-width: 768px) {
  .floating-banner {
    bottom: 100px;
    right: 12px;
    max-width: 100px;
  }
}