.loc-gate-open{ overflow:hidden; }

.loc-gate{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
}

.loc-gate-card{
  width:100%;
  max-width:520px;
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.loc-gate-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.loc-gate-card h2{ margin:0; font-size:18px; font-weight:700; }
.loc-gate-card p{ margin:6px 0 0; opacity:.7; font-size:13px; }

.loc-close{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.loc-search-row{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
}

.loc-search{
  flex:1;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.12);
  padding:0 14px;
  outline:none;
}
.loc-search:focus{
  border-color:#f97316;
  box-shadow:0 0 0 4px rgba(249,115,22,.16);
}

.loc-search-btn{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.loc-gps{
  margin-top:10px;
  width:100%;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  cursor:pointer;
  font-weight:600;
}

.map-wrap{
  margin-top:12px;
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.10);
}

.map-box{ height:260px; width:100%; }

.center-pin{
  position:absolute;
  left:50%;
  top:50%;
  width:28px;
  height:28px;
  transform: translate(-50%, -100%);
  background: radial-gradient(circle at 50% 40%, #ff6a00 0, #f97316 60%, #c2410c 100%);
  border-radius:50% 50% 50% 0;
  rotate: -45deg;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  pointer-events:none;
}
.center-pin::after{
  content:"";
  position:absolute;
  width:10px;height:10px;
  background:#fff;
  border-radius:50%;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  rotate:45deg;
}

.picked{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,0.03);
}

.picked-label{ font-size:12px; color:rgba(0,0,0,0.55); font-weight:600; }
.picked-value{ margin-top:4px; font-size:13px; }
.picked-hint{ margin-top:6px; font-size:12px; opacity:.85; }

.w100{ width:100%; }
