.ellaithy-ai-launcher {
  position: fixed;
  bottom: clamp(20px, 5vh, 48px);
  left: clamp(18px, 5vw, 72px);
  z-index: 99999;
  display: block;
  width: 76px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ellaithy-ai-launcher img {
  display: block;
  width: 100%;
  height: auto;
}

.ellaithy-ai-launcher:hover,
.ellaithy-ai-launcher:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.ellaithy-ai-launcher:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

html[lang^="en"] .ellaithy-ai-launcher {
  left: 8px;
  width: 58px;
}

@media (max-width: 767px) {
  .ellaithy-ai-launcher {
    bottom: 18px;
    left: 8px;
    width: 52px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ellaithy-ai-launcher {
    transition: none;
  }
}
