/* ── TOUR MODAL ── */
.tour-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tour-modal-overlay.open {
  display: flex;
}

.tour-modal {
  width: min(920px, 100%);
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .25);
  padding: 24px;
}

.tour-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tour-modal-step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4f46e5;
}

.tour-modal-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-top: 6px;
}

.tour-modal-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.tour-modal-close {
  border: 0;
  background: #f1f5f9;
  color: #334155;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
}

.tour-modal-media {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
  padding: 10px;
  margin-bottom: 18px;
}

.tour-modal-media img {
  width: 100%;
  height: min(52vh, 460px);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.tour-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tour-stepper {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tour-stepper button {
  border: 0;
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}

.tour-stepper button.active {
  width: 28px;
  background: #4f46e5;
}

.tour-modal-actions {
  display: flex;
  gap: 8px;
}

.tour-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.tour-btn.secondary {
  background: #f1f5f9;
  color: #334155;
}

.tour-btn.primary {
  background: #4f46e5;
  color: #fff;
}
