/**
 * Timelsa guided tour — ألوان العلامة: #0066CC #FF3333 #FFCC00 #FFFFFF
 */
:root {
  --tour-blue: #0066cc;
  --tour-red: #ff3333;
  --tour-yellow: #ffcc00;
  --tour-white: #ffffff;
  --tour-z-base: 100040;
}

#timelsa-tour-root {
  position: fixed;
  inset: 0;
  z-index: var(--tour-z-base);
  pointer-events: none;
  direction: rtl;
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

#timelsa-tour-root * {
  box-sizing: border-box;
}

#timelsa-tour-root.timelsa-tour--active {
  pointer-events: auto;
}

/* تعتيم كامل للخطوات الوسطى (ترحيب، منتج، ختام) */
.timelsa-tour-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  display: none;
  pointer-events: auto;
}

.timelsa-tour-dim.is-visible {
  display: block;
}

/* ثقب الإبراز + ظل يغطي الصفحة */
.timelsa-tour-spotlight {
  position: fixed;
  z-index: 1;
  display: none;
  pointer-events: none;
  border-radius: 14px;
  box-shadow:
    0 0 0 4px var(--tour-yellow),
    0 0 0 9999px rgba(0, 0, 0, 0.58);
  transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.timelsa-tour-spotlight.is-visible {
  display: block;
}

/* اللوحة */
.timelsa-tour-panel {
  position: fixed;
  z-index: 2;
  max-width: min(440px, calc(100vw - 24px));
  background: var(--tour-white);
  border-radius: 18px;
  box-shadow:
    0 22px 50px rgba(0, 51, 102, 0.22),
    0 0 0 2px rgba(0, 102, 204, 0.25);
  overflow: hidden;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.timelsa-tour-panel.is-visible {
  opacity: 1;
  visibility: visible;
}

.timelsa-tour-panel__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--tour-blue) 0%, var(--tour-red) 50%, var(--tour-yellow) 100%);
}

.timelsa-tour-panel__inner {
  padding: 1.1rem 1.15rem 1rem;
}

@media (min-width: 640px) {
  .timelsa-tour-panel__inner {
    padding: 1.25rem 1.35rem 1.1rem;
  }
}

.timelsa-tour-panel__step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tour-blue);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.timelsa-tour-panel__title {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.timelsa-tour-panel__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
  max-height: min(42vh, 280px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.timelsa-tour-panel__body ul {
  margin: 0.5rem 0 0;
  padding-inline-start: 1.15rem;
}

.timelsa-tour-panel__body li {
  margin-bottom: 0.35rem;
}

/* وضع الوسط */
.timelsa-tour-panel--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(440px, calc(100vw - 32px));
}

.timelsa-tour-panel--center.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

/* لوحة عائمة بجانب العنصر */
.timelsa-tour-panel--floating {
  transform: scale(0.98);
}

.timelsa-tour-panel--floating.is-visible {
  transform: scale(1);
}

.timelsa-tour-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 102, 204, 0.12);
  justify-content: flex-start;
}

.timelsa-tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.timelsa-tour-btn:active {
  transform: scale(0.98);
}

.timelsa-tour-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.timelsa-tour-btn--primary {
  background: var(--tour-blue);
  color: var(--tour-white);
}

.timelsa-tour-btn--primary:hover:not(:disabled) {
  filter: brightness(1.08);
}

.timelsa-tour-btn--secondary {
  background: #f1f5f9;
  color: #0f172a;
}

.timelsa-tour-btn--secondary:hover:not(:disabled) {
  background: #e2e8f0;
}

.timelsa-tour-btn--danger {
  background: transparent;
  color: var(--tour-red);
  border: 2px solid rgba(255, 51, 51, 0.45);
}

.timelsa-tour-btn--danger:hover:not(:disabled) {
  background: rgba(255, 51, 51, 0.06);
}

.timelsa-tour-btn--cta {
  background: linear-gradient(135deg, var(--tour-yellow) 0%, #ffe066 100%);
  color: #1e293b;
  width: 100%;
  font-size: 0.95rem;
}

.timelsa-tour-btn--cta:hover:not(:disabled) {
  filter: brightness(1.05);
}

/* هاتف: اللوحة أسفل الشاشة */
@media (max-width: 639px) {
  .timelsa-tour-panel--floating {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    bottom: 12px !important;
    top: auto !important;
    transform: translateY(8px) scale(0.98);
  }

  .timelsa-tour-panel--floating.is-visible {
    transform: translateY(0) scale(1);
  }

  .timelsa-tour-panel__body {
    max-height: min(36vh, 220px);
  }
}

body.timelsa-tour-active {
  /* يمنع التمرير خلف الجولة */
  overflow: hidden !important;
}
