/* Interactive Product Tour (Product Tour) */

.ptour-root {
  position: fixed;
  inset: 0;
  z-index: 9000;
}

.ptour-clickcatcher {
  position: absolute;
  inset: 0;
}

.ptour-spotlight {
  position: fixed;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.65);
  pointer-events: none;
  transition: top 120ms ease, left 120ms ease, width 120ms ease, height 120ms ease;
}

.ptour-tooltip {
  position: fixed;
  box-sizing: border-box;
  width: min(420px, calc(100vw - 24px));
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 12px 12px 10px;
  pointer-events: auto;
}

.ptour-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ptour-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.ptour-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.ptour-body {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #ddd;
}

.ptour-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ptour-progress {
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
}

.ptour-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ptour-tooltip .btn {
  padding: 6px 10px;
  font-size: 12px;
}

@media (max-width: 480px) {
  .ptour-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .ptour-actions {
    justify-content: space-between;
  }
}
