/* =========================================================================
   Z-CAR NATIVE TOUR GUIDE STYLESHEET (DARK GLASSMORPHISM & MILITARY GOLD)
   ========================================================================= */

.zcar-tour-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999998 !important;
  pointer-events: auto !important;
  animation: zcarFadeIn 0.22s ease-out !important;
  background: transparent !important;
}

@keyframes zcarFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* PHẦN TỬ ĐƯỢC HIGHLIGHT: SÁNG RÕ 100%, VIỀN VÀNG RỰC RỠ, NỔI BẬT LÊN TRÊN */
.zcar-tour-highlight-el {
  position: relative !important;
  z-index: 999999 !important;
  box-shadow: 0 0 0 3px #d4af37, 0 0 25px rgba(212, 175, 55, 0.85) !important;
  border-radius: 8px !important;
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
  transition: box-shadow 0.25s ease !important;
}

/* POPOVER TOOLTIP HƯỚNG DẪN */
.zcar-tour-popover {
  position: fixed !important;
  z-index: 1000000 !important;
  background: rgba(20, 26, 20, 0.97) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(212, 175, 55, 0.25) !important;
  color: #e2e8f0 !important;
  padding: 18px 20px !important;
  min-width: 290px !important;
  max-width: 380px !important;
  box-sizing: border-box !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  animation: zcarPopoverIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

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

.zcar-tour-close {
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 4px 6px !important;
  transition: all 0.2s ease !important;
  z-index: 2 !important;
}

.zcar-tour-close:hover {
  color: #f87171 !important;
  transform: scale(1.2);
}

.zcar-tour-header {
  margin-bottom: 8px !important;
  padding-right: 20px !important;
}

.zcar-tour-title {
  margin: 0 !important;
  color: #f6d365 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.2px !important;
}

.zcar-tour-body {
  margin-bottom: 14px !important;
}

.zcar-tour-desc {
  margin: 0 !important;
  color: #cbd5e1 !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

.zcar-tour-desc b {
  color: #fde047 !important;
}

.zcar-tour-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.zcar-tour-progress {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  white-space: nowrap !important;
}

.zcar-tour-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.zcar-tour-btn-prev {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.zcar-tour-btn-prev:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.zcar-tour-btn-next {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  color: #121810 !important;
  border: 1px solid #d4af37 !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.zcar-tour-btn-next:hover, .zcar-tour-btn-finish:hover {
  background: linear-gradient(135deg, #f6d365 0%, #d4af37 100%) !important;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.45) !important;
  transform: translateY(-1px);
}
