/* ========================================================================
   Confidence Talk - Hostess Concierge (voice-only "Guide")
   The ONLY visible element is the "Open dashboard" chip.
   ======================================================================== */

.ct-concierge-cta {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 999997;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f0c98a, #CD853F);
  color: #1a1308 !important;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(139, 69, 19, 0.45);
}
.ct-concierge-cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(139, 69, 19, 0.6);
}

@media (max-width: 480px) {
  .ct-concierge-cta {
    right: 12px;
    bottom: 80px;
  }
}


