.frmapx-wrapper{position:relative;width:100%;}
#frmapx-front-map{width:100%;height:520px;border-radius:8px;overflow:hidden;}
/* Sidebar overlay hidden when inactive; 56px close button (offset 64px) */
#frmapx-sidebar{
  position:absolute; top:0; left:0; height:100%; width:340px; max-width:90vw;
  background:#FF8504; color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  transform:translateX(calc(-100% - 64px));
  opacity:0;
  transition:transform .3s ease, opacity .2s ease, z-index .2s ease;
  border-top-left-radius:8px; border-bottom-left-radius:8px;
  z-index:0; pointer-events:none;
  display:flex; flex-direction:column;
}
#frmapx-sidebar.active{
  transform:translateX(0);
  opacity:1;
  z-index:1000; pointer-events:auto;
}
#frmapx-sidebar .frmapx-sidebar-inner{ padding:16px 16px 16px 40px; overflow:auto; }
#frmapx-sidebar h3{ margin:0 0 10px; font-size:20px; line-height:1.25; color:#fff; }
#frmapx-sidebar #frmapx-sidebar-address,
#frmapx-sidebar #frmapx-sidebar-postal-city,
#frmapx-sidebar #frmapx-sidebar-phone,
#frmapx-sidebar #frmapx-sidebar-legacy{ font-size:14px; line-height:1.6; margin:2px 0; color:#fff; }
#frmapx-sidebar #frmapx-sidebar-phone{ margin-top:10px; display:flex; align-items:center; gap:8px; }
#frmapx-sidebar #frmapx-sidebar-legacy{ opacity:.95; }
#frmapx-sidebar .icon-phone{ flex:0 0 auto; }

#frmapx-sidebar a{ color:#fff; text-decoration:underline; }

#frmapx-sidebar-close{
  position:absolute; right:-64px; top:12px; width:56px; height:56px;
  border-radius:28px; border:none; cursor:pointer; background:#fff; color:#FF8504;
  box-shadow:0 2px 12px rgba(0,0,0,.2);
  font-size:36px;
  display:flex; align-items:center; justify-content:center;
}
#frmapx-sidebar:not(.active) #frmapx-sidebar-close{ display:none; }

/* Round halo */
.leaflet-marker-icon.frmapx-selected{ position:relative; }
.leaflet-marker-icon.frmapx-selected::after{
  content:''; position:absolute; left:-8px; top:-8px;
  width:calc(100% + 16px); height:calc(100% + 16px);
  border-radius:9999px;
  box-shadow:0 0 0 3px #2563eb, 0 0 0 6px rgba(37,99,235,.25);
  pointer-events:none;
}
