/**
 * Volt N' Vent — chat shell layout (external CSS so mobile always gets positioning
 * even before chat-widget.js injects its panel styles).
 */
#vnv-ai-chat-root,
.vnv-chat-shell {
  position: fixed !important;
  right: 1rem;
  bottom: 1rem;
  z-index: 2147483000 !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.vnv-chat-launcher {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a64f, #f7c600);
  color: #071018;
  box-shadow: 0 20px 50px rgba(7, 16, 24, 0.4);
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.vnv-chat-launcher svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 767px) {
  body.vnv-bg-site {
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
  }

  #vnv-ai-chat-root,
  .vnv-chat-shell {
    right: calc(0.85rem + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  .vnv-chat-launcher {
    width: 64px !important;
    height: 64px !important;
    border: 3px solid #0f2844 !important;
    box-shadow:
      0 16px 36px rgba(15, 40, 68, 0.5),
      0 0 0 4px rgba(247, 198, 0, 0.45) !important;
  }

  .vnv-mobile-call {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    left: calc(1rem + env(safe-area-inset-left, 0px)) !important;
    z-index: 2147482000 !important;
  }
}
