.door-marker {
  overflow: visible;
}

.door-arrow {
  position: relative;
  display: grid !important;
  box-sizing: border-box;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #17261fe0;
  color: #fff;
  box-shadow: 0 3px 12px #0005, 0 0 0 5px #ffffff28;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 120ms ease, box-shadow 120ms ease;
}

.door-arrow svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.5;
  pointer-events: none;
}

.door-label {
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 160px;
  padding: 6px 10px;
  border: 1px solid #ffffff50;
  border-radius: 5px;
  background: #142018ec;
  color: #fff;
  font: 700 12px/1.6 Tahoma, Arial, sans-serif;
  direction: rtl;
  text-align: center;
  white-space: normal;
  pointer-events: none;
}

.door-arrow:hover,
.door-arrow:focus-visible {
  background: #694c16;
  box-shadow: 0 3px 14px #0006, 0 0 0 6px #d6ac6166;
}

.door-arrow:focus-visible {
  outline: 3px solid #d6ac61;
  outline-offset: 5px;
}

body[data-state="loading"] .door-marker,
body[data-state="error"] .door-marker {
  visibility: hidden !important;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .door-arrow { transition: none; }
}
