/* SARAH Voice Widget — golden phone dimensions (8895 SSOT: 412×860 · 34px radius) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --sarah-phone-w:412px;
  --sarah-phone-h:860px;
  --sarah-phone-r:34px;
}

.sarah-voice-inline{
  display:block;
  width:var(--sarah-phone-w);
  max-width:100%;
  height:var(--sarah-phone-h);
  min-height:var(--sarah-phone-h);
  margin:0 auto;
  border-radius:var(--sarah-phone-r);
  overflow:hidden;
  background:transparent;
  box-shadow:0 28px 64px rgba(12,25,41,.18);
  line-height:0;
}
.sarah-voice-inline .sarah-voice-iframe{
  width:100%;
  height:var(--sarah-phone-h);
  min-height:var(--sarah-phone-h);
  border:0;
  display:block;
  background:#0a1628;
  border-radius:var(--sarah-phone-r);
}
.sarah-theme-ore .sarah-voice-inline,
.sarah-voice-inline.sarah-theme-ore{
  background:#0a0a0a;
  box-shadow:0 32px 72px rgba(0,0,0,.55);
}
/* ORE theme phone is red/black — never let the navy default paint behind it while the iframe loads */
.sarah-theme-ore .sarah-voice-iframe,
.sarah-voice-iframe.sarah-theme-ore{
  background:#0a0a0a;
}

.sarah-voice-widget-float{
  position:fixed;z-index:2147483000;
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale
}
.sarah-voice-bubble{
  position:fixed;bottom:22px;right:22px;display:flex;align-items:center;gap:10px;
  padding:14px 20px;border:none;border-radius:999px;cursor:pointer;font-weight:500;font-size:14px;
  letter-spacing:-.01em;box-shadow:0 12px 36px rgba(12,25,41,.18);
  transition:transform .18s ease,box-shadow .18s ease
}
.sarah-voice-bubble:hover{box-shadow:0 14px 40px rgba(12,25,41,.22)}
.sarah-voice-bubble:active{transform:scale(.97)}
.sarah-theme-owc .sarah-voice-bubble{background:linear-gradient(135deg,#c9a227,#a8861f);color:#0c1929}
.sarah-voice-panel{
  position:fixed;bottom:22px;right:22px;
  width:min(var(--sarah-phone-w),calc(100vw - 24px));
  height:min(var(--sarah-phone-h),calc(100dvh - 48px));
  background:#fff;border-radius:var(--sarah-phone-r);border:1px solid rgba(12,25,41,.1);
  box-shadow:0 24px 56px rgba(12,25,41,.14);
  display:flex;flex-direction:column;overflow:hidden
}
.sarah-voice-panel-hdr{
  display:flex;align-items:center;justify-content:space-between;padding:12px 14px;
  background:#0c1929;color:#fff;font-weight:500;font-size:14px;letter-spacing:-.01em
}
.sarah-voice-close{background:none;border:none;color:#fff;font-size:22px;line-height:1;cursor:pointer;padding:4px 8px;opacity:.9}
.sarah-voice-close:hover{opacity:1}
.sarah-voice-panel-body{flex:1;min-height:0}
.sarah-theme-owc .sarah-voice-panel-hdr{background:#0c1929}
.sarah-voice-panel-body .sarah-voice-iframe{
  width:100%;height:100%;min-height:100%;border:0;display:block;border-radius:0
}
