.location-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background-color: #ffffff;
  color: #888;
  padding: 8px 12px;
  border-radius: 0px;
  font-size: 12px;
  text-align: left;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translateY(-5px);
  z-index: 1000;
  font-family: inherit;
  white-space: nowrap;
  box-sizing: border-box;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  overflow: visible;
}

.location-tooltip::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.location-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.location-tooltip .tooltip-msg {
  margin: 0;
  font-size: 12px;
  color: #000;
  line-height: 1.4;
}

.location-tooltip .tooltip-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.location-tooltip .tooltip-btn {
  background: #FFB800;
  color: #000;
  border: none;
  padding: 5px 12px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 0px;
  outline: none;
  font-weight: 700;
  white-space: nowrap;
}

.location-tooltip .tooltip-btn[data-action="loc-continue"] {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  font-weight: 600;
}

.location-tooltip .tooltip-btn[data-action="loc-change"] {
  background: #FFB800;
  color: #000;
  font-weight: 700;
}

/* ── Geo Pré-Modal ── */
.geo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.geo-modal.open {
  display: flex;
}

.geo-modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.geo-modal-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.geo-modal-icon {
  margin-bottom: 1.25rem;
}

.geo-modal-icon svg {
  width: 48px;
  height: 48px;
  color: #FFB800;
}

.geo-modal-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.geo-btn-primary {
  background: #FFB800;
  color: #111;
  border: none;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
  width: 100%;
}

.geo-btn-primary:hover {
  background: #e6a500;
}

.geo-modal-error {
  display: none;
  font-size: 0.8rem;
  color: #c00;
  line-height: 1.4;
  margin: -1rem 0 1.5rem;
}
