/* Live-chat widget styles — ported from the Antwerp Ateliers build so the
   same widget is self-contained on vheny (and any future site). The core
   .aa-chat* rules live here; chat.js injects the few extras on top. */
.aa-chat-root{
  --ink:#0a0a0a; --ink-soft:#1a1a1a; --ink-line:#262626;
  --bone:#f5f1ea; --bone-soft:#ebe6dc; --paper:#fafaf7;
  --gold:#c9a961; --muted:#8a8478; --line:#e3ddd2;
  --serif:'Cormorant Garamond','Times New Roman',serif;
  --sans:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}
.aa-chat-root {
  position: fixed;
  z-index: 250;
  bottom: 24px;
  right: 24px;
  font-family: var(--sans);
}

/* Floating button */
.aa-chat-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(10,10,10,0.25), 0 4px 10px rgba(10,10,10,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.aa-chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(10,10,10,0.32), 0 6px 14px rgba(10,10,10,0.2);
}

.aa-chat-fab.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.aa-chat-fab .aa-chat-pulse {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.25);
  animation: aa-chat-pulse 2.5s ease-in-out infinite;
}

@keyframes aa-chat-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,169,97,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(201,169,97,0); }
}

/* Panel */
.aa-chat {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 380px;
  height: 560px;
  max-height: calc(100vh - 48px);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(10,10,10,0.25), 0 8px 20px rgba(10,10,10,0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.aa-chat.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.aa-chat-head {
  background: var(--ink);
  color: var(--bone);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.aa-chat-head-l {
  display: flex;
  gap: 12px;
  align-items: center;
}

.aa-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.aa-chat-title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.aa-chat-status {
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.65;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aa-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}

.aa-chat-close {
  background: none;
  border: none;
  color: var(--bone);
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
}

.aa-chat-close:hover {
  background: rgba(255,255,255,0.08);
  opacity: 1;
}

/* Body */
.aa-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
}

.aa-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aa-msg {
  display: flex;
  max-width: 85%;
}

.aa-msg.agent { align-self: flex-start; }
.aa-msg.user { align-self: flex-end; }

.aa-msg-bub {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.aa-msg.agent .aa-msg-bub {
  background: var(--bone);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.aa-msg.user .aa-msg-bub {
  background: var(--ink);
  color: var(--bone);
  border-bottom-right-radius: 4px;
}

.aa-msg.typing .aa-msg-bub {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 14px;
}

.aa-msg.typing .aa-msg-bub span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: aa-chat-typing 1.4s ease-in-out infinite;
}
.aa-msg.typing .aa-msg-bub span:nth-child(2) { animation-delay: 0.15s; }
.aa-msg.typing .aa-msg-bub span:nth-child(3) { animation-delay: 0.3s; }

@keyframes aa-chat-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Quick action chips */
.aa-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.aa-chat-quick.hidden { display: none; }

.aa-chat-quick button {
  font-family: inherit;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}

.aa-chat-quick button:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

/* Form */
.aa-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  flex-shrink: 0;
}

.aa-chat-input {
  flex: 1;
  border: none;
  background: var(--bone-soft);
  border-radius: 18px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  resize: none;
  line-height: 1.4;
  outline: none;
  max-height: 120px;
}

.aa-chat-input:focus { background: var(--bone); }

.aa-chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.aa-chat-send:hover { background: var(--gold); color: var(--ink); }

.aa-chat-foot {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  padding: 8px 16px 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* Mobile */
@media (max-width: 480px) {
  .aa-chat-root {
    bottom: 16px;
    right: 16px;
  }
  .aa-chat {
    position: fixed;
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    height: calc(100vh - 32px);
    max-height: calc(100vh - 32px);
  }
}

/* ============================================================
   HAMBURGER + MOBILE MENU
   ============================================================ */

