/* ── guided tour overlay ── */
.horkos-tour-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.09);
  z-index: 9998;
}

.horkos-tour-highlight {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border: 2px solid var(--bronze);
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(176, 131, 85, 0.28), 0 0 32px rgba(176, 131, 85, 0.35);
}

.horkos-tour-card {
  position: fixed;
  z-index: 10000;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--parchment);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.35);
  padding: 26px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.horkos-tour-card.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.horkos-tour-card.mobile-drawer {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  top: auto;
  width: auto;
  max-width: none;
}

.horkos-tour-title {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
}

.horkos-tour-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0;
}

.horkos-tour-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.horkos-tour-skip {
  font-size: 12px;
  color: var(--gray-3);
  cursor: pointer;
  margin-right: auto;
  text-decoration: underline;
}

.horkos-tour-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  color: var(--gray-3);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.horkos-tour-close:hover { color: var(--ink); }

.horkos-tour-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  background: var(--bronze);
  color: #12212f;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.25);
}
.horkos-tour-fab:hover { background: #a3774a; }

@media (max-width: 640px) {
  .horkos-tour-fab {
    bottom: 16px;
    right: 16px;
    padding: 11px 18px;
    font-size: 12.5px;
  }
}
