/* ═══════════════════════════════════════════════════════
   AUREVIA CHAT WIDGET STYLES
   Scope: .aurevia-widget
═══════════════════════════════════════════════════════ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Montserrat:wght@400;500;600&display=swap');

.aurevia-widget {
  /* Design System Variables */
  --av-ivory: #FAFAF7;
  --av-champagne: #F2EDE4;
  --av-dark: #1A1208;
  --av-deeper: #120D06;
  --av-gold: #C9A96E;
  --av-gold-deep: #A07840;
  --av-gold-light: #E8D5A3;
  --av-taupe: #6B6356;
  --av-white: #FEFEFE;
  
  --av-font-head: 'Cormorant Garamond', serif;
  --av-font-ui: 'Montserrat', sans-serif;

  --av-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --av-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --av-z-index: 9999;
  
  /* Reset within scoped class to prevent external overrides */
  font-family: var(--av-font-ui);
  box-sizing: border-box;
}

.aurevia-widget *, .aurevia-widget *::before, .aurevia-widget *::after {
  box-sizing: inherit;
}

/* ═══════════════════════════════════════════════════════
   FLOATING TRIGGER BUTTON
═══════════════════════════════════════════════════════ */
.aurevia-widget-trigger {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--av-gold), var(--av-gold-deep));
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.45);
  cursor: pointer;
  z-index: var(--av-z-index);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--av-ease-standard), box-shadow 0.4s var(--av-ease-standard);
  border: none;
  outline: none;
}

.aurevia-widget-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.6);
}

.aurevia-widget-trigger:focus-visible {
  outline: 2px solid var(--av-gold-light);
  outline-offset: 4px;
}

/* Icon inside Trigger */
.aurevia-widget-trigger-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--av-white);
  stroke-width: 1.5;
  transition: opacity 0.3s var(--av-ease-standard), transform 0.3s var(--av-ease-standard);
  position: absolute;
}
.aurevia-widget-trigger-icon.inactive {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}
.aurevia-widget-trigger-icon.active {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Pulse Animation on Idle */
.aurevia-widget-trigger::before,
.aurevia-widget-trigger::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 1px solid var(--av-gold);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  animation: aureviaPulse 4s infinite cubic-bezier(0.2, 0, 0, 1);
}
.aurevia-widget-trigger::after {
  animation-delay: 2s;
}

.aurevia-widget.is-open .aurevia-widget-trigger::before,
.aurevia-widget.is-open .aurevia-widget-trigger::after {
  animation: none;
}

@keyframes aureviaPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip */
.aurevia-widget-tooltip {
  position: absolute;
  bottom: 80px;
  right: 15px; /* slightly left of center */
  background-color: var(--av-dark);
  color: var(--av-gold);
  font-family: var(--av-font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--av-ease-standard), transform 0.3s var(--av-ease-standard);
}
.aurevia-widget-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 12px; /* pointer arrow */
  border-width: 5px;
  border-style: solid;
  border-color: var(--av-dark) transparent transparent transparent;
}
.aurevia-widget-trigger:hover .aurevia-widget-tooltip {
  opacity: 1;
  transform: translateY(0);
}
.aurevia-widget.is-open .aurevia-widget-tooltip {
  display: none;
}


/* ═══════════════════════════════════════════════════════
   CHAT WIDGET CONTAINER
═══════════════════════════════════════════════════════ */
.aurevia-widget-container {
  position: fixed;
  bottom: 110px;
  right: 32px;
  width: 390px;
  height: 620px;
  background-color: var(--av-ivory);
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  box-shadow: 0 24px 80px rgba(26, 18, 8, 0.22), 0 0 0 1px rgba(201, 169, 110, 0.12);
  z-index: var(--av-z-index);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  
  /* Open/Close Animation State */
  transform-origin: bottom right;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--av-ease-standard), transform 0.35s var(--av-ease-standard);
}

.aurevia-widget-container.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.55s var(--av-ease-bounce), transform 0.55s var(--av-ease-bounce);
}

@media (max-width: 480px) {
  .aurevia-widget-container {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   WIDGET HEADER
═══════════════════════════════════════════════════════ */
.aurevia-widget-header {
  height: 80px;
  min-height: 80px;
  background: linear-gradient(135deg, #1A1208 0%, #2C1F0E 100%);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.aurevia-widget-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201, 169, 110, 0.25);
}

.aurevia-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aurevia-agent-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.aurevia-agent-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--av-dark);
  border: 2px solid transparent;
  background-image: linear-gradient(#1A1208, #1A1208), linear-gradient(135deg, var(--av-gold), var(--av-gold-deep));
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--av-gold);
  font-family: var(--av-font-head);
  font-size: 22px;
}
.aurevia-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aurevia-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #22C55E;
  border: 2px solid var(--av-white);
  border-radius: 50%;
}

.aurevia-header-text {
  display: flex;
  flex-direction: column;
}
.aurevia-header-name {
  font-family: var(--av-font-head);
  font-size: 17px;
  color: var(--av-white);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.2;
}
.aurevia-header-subtitle {
  font-family: var(--av-font-ui);
  font-size: 10px;
  color: var(--av-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0 0 0;
  line-height: 1.2;
}

.aurevia-minimize-btn {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.3s var(--av-ease-standard);
  color: var(--av-white);
}
.aurevia-minimize-btn:hover {
  opacity: 1;
}
.aurevia-minimize-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}


/* ═══════════════════════════════════════════════════════
   MODE TOGGLE
═══════════════════════════════════════════════════════ */
.aurevia-mode-toggle {
  background: var(--av-champagne);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.aurevia-toggle-container {
  background: rgba(26, 18, 8, 0.08);
  border-radius: 50px;
  padding: 4px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.aurevia-toggle-btn {
  font-family: var(--av-font-ui);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 9px 12px;
  border-radius: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--av-taupe);
  font-weight: 400;
  transition: all 0.35s var(--av-ease-standard);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.aurevia-toggle-btn.is-active {
  color: var(--av-dark);
  font-weight: 600;
}

/* Background pill sliding animation */
.aurevia-toggle-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: linear-gradient(135deg, var(--av-gold), var(--av-gold-deep));
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(201, 169, 110, 0.35);
  transition: transform 0.35s var(--av-ease-standard);
  z-index: 1;
}

.aurevia-mode-toggle.is-voice .aurevia-toggle-slider {
  transform: translateX(100%);
}

/* ═══════════════════════════════════════════════════════
   MAIN PANELS AREA (TEXT vs VOICE)
═══════════════════════════════════════════════════════ */
.aurevia-panels-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.aurevia-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--av-ease-standard);
}
.aurevia-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════
   TEXT & AUDIO MESSAGES PANEL
═══════════════════════════════════════════════════════ */
.aurevia-messages-area {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  background: var(--av-ivory);
  scrollbar-width: thin;
  scrollbar-color: var(--av-gold) var(--av-ivory);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aurevia-messages-area::-webkit-scrollbar {
  width: 6px;
}
.aurevia-messages-area::-webkit-scrollbar-track {
  background: var(--av-ivory);
}
.aurevia-messages-area::-webkit-scrollbar-thumb {
  background-color: var(--av-gold);
  border-radius: 10px;
}

/* Welcome State */
.aurevia-welcome-state {
  margin: auto;
  text-align: center;
  max-width: 250px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInDown 0.6s 0.6s var(--av-ease-standard) forwards;
}
@keyframes fadeInDown {
  to { opacity: 1; transform: translateY(0); }
}

.aurevia-logo-mark-small {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px auto;
  color: var(--av-gold);
}
.aurevia-logo-mark-small svg {
  width: 100%; height: 100%; fill: currentColor;
}
.aurevia-welcome-title {
  font-family: var(--av-font-head);
  font-size: 18px;
  color: var(--av-dark);
  margin: 0 0 8px 0;
}
.aurevia-welcome-sub {
  font-family: var(--av-font-ui);
  font-size: 12px;
  color: var(--av-taupe);
  line-height: 1.5;
  margin: 0;
}

/* Message Bubbles */
.aurevia-message-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: slideUpFade 0.3s var(--av-ease-standard) forwards;
  opacity: 0;
  transform: translateY(12px);
}
@keyframes slideUpFade {
  to { opacity: 1; transform: translateY(0); }
}

.aurevia-message-row.is-user {
  align-items: flex-end;
}
.aurevia-message-row.is-ai {
  align-items: flex-start;
}

.aurevia-bubble {
  position: relative;
  padding: 10px 14px;
  font-family: var(--av-font-ui);
  font-size: 13px;
  line-height: 1.4;
  word-break: break-word;
}

/* User Bubble */
.aurevia-message-row.is-user .aurevia-bubble {
  background: linear-gradient(135deg, var(--av-gold), var(--av-gold-deep));
  color: var(--av-dark);
  border-radius: 16px 16px 4px 16px;
  max-width: 78%;
}

/* AI Bubble */
.aurevia-message-row.is-ai .aurevia-bubble {
  background: var(--av-white);
  color: var(--av-dark);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 16px 16px 16px 4px;
  max-width: 82%;
  display: flex;
  gap: 8px; /* space between icon and text */
}

/* AI tiny logo inside bubble */
.aurevia-ai-bubble-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--av-gold);
  margin-top: 2px;
}

.aurevia-timestamp {
  font-family: var(--av-font-ui);
  font-size: 10px;
  color: var(--av-taupe);
  margin-top: 4px;
  padding: 0 4px;
}


/* Typing Indicator */
.aurevia-typing-indicator {
  display: flex;
  gap: 4px;
  padding: 6px 4px;
  align-items: center;
}
.aurevia-dot {
  width: 6px;
  height: 6px;
  background-color: var(--av-gold);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.aurevia-dot:nth-child(1) { animation-delay: -0.32s; }
.aurevia-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   INPUT AREA
═══════════════════════════════════════════════════════ */
.aurevia-input-area {
  background: var(--av-white);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 14px 16px;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.aurevia-text-input {
  flex: 1;
  background: var(--av-champagne);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 24px;
  padding: 10px 16px;
  font-family: var(--av-font-ui);
  font-size: 13px;
  color: var(--av-dark);
  outline: none;
  transition: border-color 0.3s var(--av-ease-standard);
  min-height: 40px;
  max-height: 100px;
  resize: none;
  overflow-y: auto;
  line-height: 1.4;
}
.aurevia-text-input::placeholder {
  color: var(--av-taupe);
  font-style: italic;
}
.aurevia-text-input:focus {
  border-color: var(--av-gold);
}

.aurevia-input-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.aurevia-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--av-ease-standard);
  outline: none;
}

.aurevia-mic-btn {
  background: transparent;
  color: var(--av-taupe);
}
.aurevia-mic-btn:hover {
  color: var(--av-gold);
}
.aurevia-mic-btn svg {
  width: 20px; height: 20px; fill: currentColor;
}
/* Mic Active State */
.aurevia-mic-btn.is-recording {
  background: var(--av-gold);
  color: var(--av-white);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.4);
}

.aurevia-send-btn {
  background: rgba(107, 99, 86, 0.1);
  color: rgba(107, 99, 86, 0.5);
  pointer-events: none;
}
.aurevia-send-btn svg {
  width: 18px; height: 18px; fill: currentColor;
}

.aurevia-send-btn.is-active {
  background: linear-gradient(135deg, var(--av-gold), var(--av-gold-deep));
  color: var(--av-white);
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}
.aurevia-send-btn.is-active:hover {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════
   LIVE VOICE CALL PANEL
═══════════════════════════════════════════════════════ */
.aurevia-voice-panel {
  background: linear-gradient(180deg, var(--av-dark) 0%, var(--av-deeper) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  color: var(--av-white);
}

/* Pre-call State */
.aurevia-precall-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.4s var(--av-ease-standard), transform 0.4s var(--av-ease-standard);
}
.aurevia-precall-wrap.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  position: absolute;
}

.aurevia-precall-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  /* Idle pulse */
  animation: gentlePulse 3s infinite ease-in-out;
}
@keyframes gentlePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.aurevia-precall-outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  /* Gradient loop using conic if needed, or simply rotate a pseudo element */
}
.aurevia-precall-outer-ring::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent, rgba(201, 169, 110, 0.8), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: spinSlow 4s linear infinite;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.aurevia-precall-inner-circle {
  position: absolute;
  inset: 10px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aurevia-precall-icon {
  width: 50px;
  height: 50px;
  fill: var(--av-gold);
}

.aurevia-precall-title {
  font-family: var(--av-font-head);
  font-size: 20px;
  margin: 0 0 8px 0;
}
.aurevia-precall-sub {
  font-family: var(--av-font-ui);
  font-size: 11px;
  color: var(--av-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

.aurevia-btn-voice-start {
  background: linear-gradient(135deg, var(--av-gold), var(--av-gold-deep));
  color: var(--av-dark);
  font-family: var(--av-font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
  transition: all 0.3s var(--av-ease-standard);
}
.aurevia-btn-voice-start:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.aurevia-powered-by {
  font-family: var(--av-font-ui);
  font-size: 10px;
  color: var(--av-taupe);
  margin-top: 16px;
}

/* Active Call State */
.aurevia-activecall-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s var(--av-ease-standard), transform 0.4s var(--av-ease-standard);
  position: absolute; /* so pre-call and active can crossfade */
}
.aurevia-activecall-wrap.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
}

.aurevia-call-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 30px;
}
.aurevia-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--av-font-ui);
  font-size: 10px;
  color: var(--av-gold);
  letter-spacing: 0.1em;
}
.aurevia-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #DC2626;
  animation: pulseRed 1.5s infinite;
}
@keyframes pulseRed {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.aurevia-call-timer {
  font-family: var(--av-font-ui);
  font-size: 12px;
  color: var(--av-white);
  font-variant-numeric: tabular-nums;
}

/* Big Hero Voice Visual */
.aurevia-voice-visualizer {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 20px;
}

/* Rings */
.aurevia-vr-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.4s;
}
.aurevia-vr-ring-1 {
  width: 240px; height: 240px;
  background: rgba(201, 169, 110, 0.08);
}
.aurevia-vr-ring-2 {
  width: 200px; height: 200px;
  background: rgba(201, 169, 110, 0.15);
}
.aurevia-vr-ring-3 {
  width: 160px; height: 160px;
  background: rgba(201, 169, 110, 0.25);
}

.aurevia-vr-center {
  position: absolute;
  z-index: 10;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #C9A96E 0%, #A07840 60%, #6B4F20 100%);
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.4), 0 0 120px rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--av-white);
  font-family: var(--av-font-head);
  font-size: 40px;
  transition: transform 0.3s var(--av-ease-standard), box-shadow 0.3s;
}

/* Animation states added via JS */
.viz-state-ai_speaking .aurevia-vr-ring-1 { animation: ringExpand1 1.2s infinite alternate ease-in-out; }
.viz-state-ai_speaking .aurevia-vr-ring-2 { animation: ringExpand2 0.9s infinite alternate ease-in-out; }
.viz-state-ai_speaking .aurevia-vr-ring-3 { animation: ringExpand3 0.6s infinite alternate ease-in-out; }
.viz-state-ai_speaking .aurevia-vr-center { animation: centerPulse 1.5s infinite alternate; }

@keyframes ringExpand1 { to { width: 320px; height: 320px; background: rgba(201, 169, 110, 0.04); } }
@keyframes ringExpand2 { to { width: 260px; height: 260px; background: rgba(201, 169, 110, 0.1); } }
@keyframes ringExpand3 { to { width: 190px; height: 190px; background: rgba(201, 169, 110, 0.18); } }
@keyframes centerPulse { to { transform: scale(1.05); filter: brightness(1.2); } }

.viz-state-idle .aurevia-vr-center {
  animation: gentlePulse 4s infinite;
}

.aurevia-call-status-text {
  font-family: var(--av-font-ui);
  font-size: 13px;
  color: var(--av-gold);
  height: 20px;
  margin-bottom: 30px;
  transition: opacity 0.3s;
}

/* Bottom Controls */
.aurevia-call-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 20px;
}

.aurevia-cc-btn {
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--av-ease-standard);
}

.aurevia-cc-secondary {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--av-white);
}
.aurevia-cc-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}
.aurevia-cc-secondary.is-muted {
  background: #DC2626;
  color: var(--av-white);
}
.aurevia-cc-secondary svg {
  width: 20px; height: 20px; fill: currentColor;
}

.aurevia-cc-end {
  width: 64px;
  height: 64px;
  background: #DC2626;
  color: var(--av-white);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}
.aurevia-cc-end:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(220, 38, 38, 0.6);
}
.aurevia-cc-end svg {
  width: 28px; height: 28px; fill: currentColor;
}
