#aura-widget {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

#aura-widget.open {
  right: 0;
}

#aura-widget iframe {
  flex: 1;
  width: 100%;
  border: none;
}

#aura-floating-wrapper {
  position: fixed;
  bottom: 75px;
  right: 22px;
  z-index: 9999;
}

#aura-floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

#aura-floating-btn img {
  max-width: 50px;
  height: auto;
  object-fit: contain;
}

#aura-floating-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(79, 123, 158, 0.4);
  animation: auraPulse 2s infinite;
  z-index: -1;
}

@keyframes auraPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

#aura-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#aura-floating-wrapper:hover #aura-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

#aura-widget.open ~ #aura-floating-wrapper {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  #aura-widget {
    width: 100%;
    right: -100%;
  }

  #aura-floating-wrapper {
    bottom: 70px;
    right: 20px;
  }

  #aura-tooltip {
    display: none;
  }
}

#aura-widget .aura-header {
  height: 48px ;
  display: flex ;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  background: #010519;
}

#aura-widget #aura-close {
  all:unset;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 209, 239, 0.15);
  position: relative;

  transition: all 0.25s ease;
}

#aura-widget #aura-close span {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #00D1EF;
  border-radius: 2px;
}

#aura-widget #aura-close span:first-child {
  transform: rotate(45deg);
}

#aura-widget #aura-close span:last-child {
  transform: rotate(-45deg);
}

#aura-widget #aura-close:hover {
  background: rgba(0, 209, 239, 0.25);
  transform: rotate(90deg);
}