.tips-toggle {
  background: none;
  border: 1px solid rgba(245, 200, 66, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.tips-toggle--drop {
  color: #F5C842;
  border-color: rgba(245, 200, 66, 0.35);
}

.tips-toggle--concierge {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.35);
}

.tips-toggle--off {
  opacity: 0.65;
}

.tip-card {
  position: absolute;
  z-index: 500;
  max-width: 280px;
  background: #141414;
  border: 1px solid #F5C842;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  animation: tipFadeIn 0.25s ease;
}

.tip-card--concierge {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tip-card--concierge .tip-card-title { color: #1d4ed8; }
.tip-card--concierge .tip-card-body { color: #374151; }
.tip-card--concierge .tip-card-outcome { color: #6b7280; }

@keyframes tipFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tip-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.tip-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #F5C842;
  line-height: 1.35;
}

.tip-card-dismiss {
  background: none;
  border: none;
  color: #F5C842;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
}

.tip-card--concierge .tip-card-dismiss { color: #2563eb; }

.tip-card-body {
  font-size: 0.78rem;
  color: #e5e5e5;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.tip-card-outcome {
  font-size: 0.72rem;
  color: #A0A0A0;
  line-height: 1.45;
}

.tip-anchor-wrap {
  position: relative;
}
