.da-walkthrough-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a4a12;
  background: rgba(196, 122, 30, 0.08);
  border: 1px solid rgba(196, 122, 30, 0.32);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.da-walkthrough-trigger:hover,
.da-walkthrough-trigger:focus-visible {
  background: rgba(196, 122, 30, 0.14);
  border-color: rgba(196, 122, 30, 0.55);
  color: #5e370b;
  outline: none;
}

.da-walkthrough-trigger::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background: radial-gradient(circle, currentColor 2px, transparent 2.5px);
}

.da-walkthrough-trigger.is-new::after {
  content: "New";
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #c47a1e;
  border-radius: 999px;
  text-transform: uppercase;
}

.da-integral-dark .da-walkthrough-trigger,
.da-theme-dark .da-walkthrough-trigger {
  color: #e3a867;
  background: rgba(227, 168, 103, 0.1);
  border-color: rgba(227, 168, 103, 0.3);
}

.da-integral-dark .da-walkthrough-trigger:hover,
.da-theme-dark .da-walkthrough-trigger:hover {
  background: rgba(227, 168, 103, 0.18);
  border-color: rgba(227, 168, 103, 0.5);
  color: #f5c585;
}

body.da-wt-active {
  overflow: hidden;
}

.da-wt-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 0 0 9999px rgba(18, 14, 8, 0.58);
  pointer-events: none;
  z-index: 9998;
  transition:
    top 0.25s ease,
    left 0.25s ease,
    width 0.25s ease,
    height 0.25s ease;
}

.da-wt-spotlight.is-full {
  width: 0 !important;
  height: 0 !important;
  top: 50% !important;
  left: 50% !important;
  border-radius: 0;
}

.da-wt-spotlight.is-hidden {
  box-shadow: 0 0 0 9999px rgba(18, 14, 8, 0.58);
  width: 0;
  height: 0;
}

.da-wt-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 3px solid #c47a1e;
  border-radius: 8px;
  pointer-events: none;
  z-index: 9999;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 18px rgba(196, 122, 30, 0.45);
  transition:
    top 0.25s ease,
    left 0.25s ease,
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.15s ease;
}

.da-wt-ring.is-transitioning {
  opacity: 0;
}

.da-wt-ring.is-hidden {
  opacity: 0;
}

.da-wt-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 280px;
  padding: 16px 16px 14px;
  background: #faf7f0;
  border: 0.5px solid #ddd5c0;
  border-left: 3px solid #c47a1e;
  border-radius: 6px;
  box-shadow:
    0 2px 4px rgba(26, 23, 20, 0.06),
    0 12px 32px rgba(26, 23, 20, 0.18),
    0 24px 48px rgba(26, 23, 20, 0.08);
  z-index: 10000;
  transition: top 0.25s ease, left 0.25s ease;
}

.da-wt-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 13px;
  line-height: 1;
  color: #9a8e82;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.da-wt-close:hover,
.da-wt-close:focus-visible {
  color: #1a1714;
  background: rgba(0, 0, 0, 0.05);
  outline: none;
}

.da-wt-counter {
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8e82;
  margin-bottom: 6px;
  margin-right: 24px;
}

.da-wt-title {
  font-family: 'Fraunces', serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1714;
  margin: 0 0 6px;
  line-height: 1.3;
}

.da-wt-body {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 12px;
  line-height: 1.55;
  color: #52473e;
  margin: 0 0 12px;
}

.da-wt-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.da-wt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0d8c3;
  transition: background 0.15s ease, transform 0.15s ease;
}

.da-wt-dot.is-active {
  background: #c47a1e;
  transform: scale(1.15);
}

.da-wt-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.da-wt-back,
.da-wt-next {
  flex: 0 1 auto;
  padding: 7px 14px;
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.da-wt-back {
  color: #52473e;
  background: transparent;
  border: 1px solid #ddd5c0;
}

.da-wt-back:hover:not(:disabled),
.da-wt-back:focus-visible:not(:disabled) {
  background: rgba(0, 0, 0, 0.04);
  border-color: #b5a989;
  color: #1a1714;
  outline: none;
}

.da-wt-back:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.da-wt-next {
  color: #fff;
  background: #c47a1e;
  border: 1px solid #c47a1e;
}

.da-wt-next:hover,
.da-wt-next:focus-visible {
  background: #a1651a;
  border-color: #a1651a;
  outline: none;
}

.da-wt-tooltip.is-mobile {
  position: fixed;
  top: auto !important;
  left: 16px !important;
  right: 16px;
  bottom: 16px;
  width: auto;
  max-height: 45vh;
  overflow-y: auto;
  padding: 18px 18px 16px;
  box-shadow:
    0 -4px 12px rgba(26, 23, 20, 0.08),
    0 -12px 40px rgba(26, 23, 20, 0.2);
}

.da-wt-tooltip.is-mobile .da-wt-title {
  font-size: 16px;
}

.da-wt-tooltip.is-mobile .da-wt-body {
  font-size: 13.5px;
  line-height: 1.6;
}

.da-wt-tooltip.is-mobile .da-wt-back,
.da-wt-tooltip.is-mobile .da-wt-next {
  padding: 10px 18px;
  font-size: 11.5px;
}

@media (max-width: 767px) {
  .da-wt-ring {
    border-width: 2px;
  }
}
