/* Luxcall Widget CSS */
.luxcall-badge-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99998;
  padding: 14px 24px;
  border-radius: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.luxcall-badge-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.luxcall-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.luxcall-popup-overlay.luxcall-active {
  opacity: 1;
  visibility: visible;
}

.luxcall-popup-content {
  position: relative;
  width: 100%;
  max-width: 1060px;
  height: 90vh;
  max-height: 800px;
  background: transparent;
  border-radius: 12px;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 20px;
}

.luxcall-popup-overlay.luxcall-active .luxcall-popup-content {
  transform: translateY(0) scale(1);
}

.luxcall-popup-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.luxcall-popup-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.luxcall-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .luxcall-popup-content {
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
  .luxcall-iframe {
    border-radius: 0;
  }
  .luxcall-popup-close {
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    z-index: 100000;
  }
}
