#map-ad-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  gap: 0;
  pointer-events: none;
}
#map-ad-bar > * { pointer-events: auto; }
#map-ad-inner {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
#map-ad-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  padding: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
#map-ad-close:hover { background: rgba(0,0,0,.8); }
#map-ad-bar.map-ad-hidden { display: none; }

/* admb-slot placeholder widoczny tylko w trybie admina */
#map-ad-placeholder {
  display: none;
  min-width: 260px;
}
body.admb-ph #map-ad-bar { display: flex !important; }
body.admb-ph #map-ad-placeholder { display: block; }
body.admb-ph #map-ad-real { display: none; }
#map-ad-inner .prm-frame { margin-top: 0 !important; }

/* ── Mobile ── */
@media (max-width: 767px), (max-height: 500px) and (orientation: landscape) {
  #map-ad-bar {
    /* nad przyciskami Oferty/Filtry: FAB bottom + FAB height (46px) + gap */
    bottom: calc(var(--mob-nav-h, 60px) + 14px + 46px + 10px);
    left: 15px;
    right: 15px;
    transform: none;
    width: auto;
    justify-content: center;
  }
  #map-ad-inner {
    width: 100%;
  }
  #map-ad-inner .prm-frame {
    width: 100% !important;
    max-width: 100% !important;
  }
  #map-ad-inner .prm-frame img {
    width: 100%;
    height: auto;
    display: block;
  }
  #map-ad-inner .prm-frame iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 60px;
  }
  #map-ad-placeholder {
    min-width: 0;
    width: 100%;
  }
}
