
.bnwo{
  --bnwo-green:#0F2B24;
  --bnwo-gold:#C8A25D;
  --bnwo-cream:#F6F2EA;
  --bnwo-soft:#FBFAF7;
  --bnwo-border:#E7E2D8;
  --bnwo-muted:#6E7773;
  --bnwo-text:#17201D;
  width:100%;
  color:var(--bnwo-text);
}
.bnwo-search{
  padding:24px;
  border:1px solid var(--bnwo-border);
  border-radius:16px;
  background:var(--bnwo-cream);
}
.bnwo-search__top{
  display:grid;
  grid-template-columns:1.1fr 1.2fr 1.4fr 1fr 1fr auto;
  gap:12px;
  align-items:end;
}
.bnwo-field{display:block}
.bnwo-field>span,
.bnwo-sort-form span{
  display:block;
  margin-bottom:6px;
  color:var(--bnwo-muted);
  font-size:12px;
  font-weight:700;
}
.bnwo-field input,
.bnwo-field select,
.bnwo-sort-form select{
  width:100%;
  min-height:48px;
  padding:0 12px;
  border:1px solid var(--bnwo-border);
  border-radius:9px;
  background:#fff;
  color:var(--bnwo-text);
  font-size:14px;
}
.bnwo-submit{
  min-height:48px;
  padding:0 22px;
  border:0;
  border-radius:9px;
  background:var(--bnwo-green);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.bnwo-more-toggle{
  margin-top:14px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--bnwo-green);
  font-weight:800;
  cursor:pointer;
}
.bnwo-more{margin-top:18px}
.bnwo-more__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.bnwo-toolbar{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin:28px 0 18px;
}
.bnwo-count{
  color:var(--bnwo-green);
  font-size:20px;
  font-weight:800;
}
.bnwo-sort-form label{
  display:flex;
  gap:10px;
  align-items:center;
}
.bnwo-sort-form span{margin:0}
.bnwo-sort-form select{width:auto;min-width:180px}
.bnwo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.bnwo-card{
  overflow:hidden;
  border:1px solid var(--bnwo-border);
  border-radius:14px;
  background:#fff;
  transition:.2s;
}
.bnwo-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(15,43,36,.08);
}
.bnwo-card__image{
  position:relative;
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#eceae5;
}
.bnwo-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.bnwo-card__placeholder{
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
  color:var(--bnwo-muted);
}
.bnwo-card__badge{
  position:absolute;
  left:14px;
  top:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(15,43,36,.92);
  color:#fff;
  font-size:11px;
  font-weight:800;
}
.bnwo-card__body{padding:18px}
.bnwo-card__type{
  margin-bottom:7px;
  color:var(--bnwo-gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.bnwo-card h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.2;
}
.bnwo-card h3 a{
  color:var(--bnwo-green);
  text-decoration:none;
}
.bnwo-card__location{
  margin-bottom:14px;
  color:var(--bnwo-muted);
  font-size:14px;
}
.bnwo-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}
.bnwo-card__meta span{
  padding:6px 9px;
  border-radius:8px;
  background:var(--bnwo-soft);
  color:var(--bnwo-muted);
  font-size:12px;
}
.bnwo-card__bottom{
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:center;
  padding-top:15px;
  border-top:1px solid var(--bnwo-border);
}
.bnwo-card__bottom strong{
  color:var(--bnwo-green);
  font-size:21px;
}
.bnwo-card__bottom a{
  color:var(--bnwo-green);
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}
.bnwo-pagination ul{
  display:flex;
  justify-content:center;
  gap:6px;
  margin:34px 0 0;
  padding:0;
  list-style:none;
}
.bnwo-pagination a,
.bnwo-pagination span{
  display:flex;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--bnwo-border);
  border-radius:8px;
  color:var(--bnwo-green);
  text-decoration:none;
}
.bnwo-pagination .current{
  background:var(--bnwo-green);
  color:#fff;
  border-color:var(--bnwo-green);
}
.bnwo-empty{
  padding:50px 24px;
  border:1px solid var(--bnwo-border);
  border-radius:14px;
  text-align:center;
  background:var(--bnwo-soft);
}
.bnwo-empty h3{color:var(--bnwo-green)}
.bnwo-empty a{
  color:var(--bnwo-green);
  font-weight:800;
}

/* wyszukiwarka na stronie głównej */
.bnwo-home-search{
  display:grid;
  grid-template-columns:1fr 1fr 1.2fr auto;
  gap:10px;
  align-items:end;
  padding:18px;
  border-radius:14px;
  background:rgba(255,255,255,.97);
}
.bnwo-home-search .bnwo-field>span{
  color:#53605B;
}

@media(max-width:1100px){
  .bnwo-search__top{
    grid-template-columns:repeat(3,1fr);
  }
  .bnwo-more__grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:820px){
  .bnwo-grid{grid-template-columns:repeat(2,1fr)}
  .bnwo-home-search{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .bnwo-search__top,
  .bnwo-more__grid,
  .bnwo-grid,
  .bnwo-home-search{
    grid-template-columns:1fr;
  }
  .bnwo-toolbar{
    display:block;
  }
  .bnwo-sort-form{margin-top:12px}
  .bnwo-sort-form label{display:block}
  .bnwo-sort-form select{width:100%}
  .bnwo-submit{width:100%}
}


/* Widok: lista / mapa */
.bnwo-viewbar{
  display:flex;
  justify-content:flex-end;
  margin:24px 0 10px;
}
.bnwo-view-switch{
  display:inline-flex;
  gap:4px;
  padding:4px;
  border:1px solid var(--bnwo-border);
  border-radius:11px;
  background:#fff;
}
.bnwo-view-button{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 14px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:var(--bnwo-muted);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:.2s;
}
.bnwo-view-button:hover{
  color:var(--bnwo-green);
  background:var(--bnwo-soft);
}
.bnwo-view-button.is-active{
  color:#fff;
  background:var(--bnwo-green);
}
.bnwo-view-icon{
  position:relative;
  width:17px;
  height:17px;
  flex:0 0 17px;
}
.bnwo-view-icon--list::before{
  content:"";
  position:absolute;
  inset:2px 0;
  background:
    linear-gradient(currentColor,currentColor) 0 0/100% 2px no-repeat,
    linear-gradient(currentColor,currentColor) 0 50%/100% 2px no-repeat,
    linear-gradient(currentColor,currentColor) 0 100%/100% 2px no-repeat;
}
.bnwo-view-icon--map::before{
  content:"";
  position:absolute;
  left:5px;
  top:1px;
  width:8px;
  height:8px;
  border:2px solid currentColor;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
}
.bnwo-view-icon--map::after{
  content:"";
  position:absolute;
  left:8px;
  top:4px;
  width:2px;
  height:2px;
  border-radius:50%;
  background:currentColor;
}
.bnwo-map-view{
  margin-top:18px;
}
.bnwo-map{
  width:100%;
  height:620px;
  overflow:hidden;
  border:1px solid var(--bnwo-border);
  border-radius:16px;
  background:#E9EEE9;
}
.bnwo-map-caption{
  margin-top:9px;
  color:var(--bnwo-muted);
  font-size:12px;
}
.bnwo-map-empty{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:40px 24px;
  border:1px solid var(--bnwo-border);
  border-radius:14px;
  background:var(--bnwo-soft);
  text-align:center;
}
.bnwo-map-empty strong{
  color:var(--bnwo-green);
}
.bnwo-map-empty span{
  color:var(--bnwo-muted);
  font-size:14px;
}

/* Markery Leaflet */
.bnwo-map-pin{
  background:transparent !important;
  border:0 !important;
}
.bnwo-map-pin__dot{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:3px solid #fff;
  border-radius:50% 50% 50% 0;
  background:var(--bnwo-green);
  color:#fff;
  box-shadow:0 5px 15px rgba(15,43,36,.28);
  transform:rotate(-45deg);
}
.bnwo-map-pin__dot::after{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--bnwo-gold);
}
.bnwo-map .leaflet-popup-content-wrapper{
  border-radius:12px;
  box-shadow:0 12px 35px rgba(15,43,36,.16);
}
.bnwo-map .leaflet-popup-content{
  margin:0;
  width:250px !important;
}
.bnwo-map-popup{
  overflow:hidden;
}
.bnwo-map-popup__image{
  display:block;
  width:100%;
  height:130px;
  object-fit:cover;
  background:#eee;
}
.bnwo-map-popup__body{
  padding:13px 14px 14px;
}
.bnwo-map-popup__title{
  margin:0 0 5px;
  color:var(--bnwo-green);
  font-size:15px;
  line-height:1.25;
  font-weight:800;
}
.bnwo-map-popup__location{
  margin-bottom:8px;
  color:var(--bnwo-muted);
  font-size:12px;
}
.bnwo-map-popup__meta{
  display:flex;
  flex-wrap:wrap;
  gap:5px 10px;
  margin-bottom:10px;
  color:#45514C;
  font-size:12px;
}
.bnwo-map-popup__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:9px;
  border-top:1px solid var(--bnwo-border);
}
.bnwo-map-popup__price{
  color:var(--bnwo-green);
  font-size:15px;
  font-weight:900;
}
.bnwo-map-popup__link{
  color:var(--bnwo-green) !important;
  font-size:12px;
  font-weight:800;
  text-decoration:none !important;
}

/* OSM attribution */
.bnwo-map .leaflet-control-attribution{
  font-size:10px;
}

.bnwo.is-map-mode .bnwo-list-view{
  display:none;
}
.bnwo.is-map-mode .bnwo-toolbar{
  display:none;
}
.bnwo:not(.is-map-mode) .bnwo-map-view{
  display:none;
}

@media(max-width:820px){
  .bnwo-viewbar{
    justify-content:stretch;
  }
  .bnwo-view-switch{
    width:100%;
  }
  .bnwo-view-button{
    flex:1;
    justify-content:center;
  }
  .bnwo-map{
    height:520px;
  }
}
@media(max-width:620px){
  .bnwo-map{
    height:450px;
    border-radius:12px;
  }
}


/* Wyróżnione oferty na stronie głównej */
.bnwo-featured{
  width:100%;
}
.bnwo-featured__all{
  display:flex;
  justify-content:center;
  margin-top:32px;
}
.bnwo-featured__all a{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid var(--bnwo-green);
  border-radius:9px;
  color:var(--bnwo-green);
  background:#fff;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  transition:.2s;
}
.bnwo-featured__all a:hover{
  background:var(--bnwo-green);
  color:#fff;
}


/* =========================================================
   Wyszukiwarka HERO — strona główna
   ========================================================= */
.bnwo-hero-search{
  --hero-green:#0F2B24;
  --hero-green-2:#173B32;
  --hero-gold:#C8A25D;
  --hero-border:#E6E1D7;
  --hero-text:#17201D;
  width:100%;
  max-width:1120px;
  margin-top:34px;
  position:relative;
  z-index:5;
  color:var(--hero-text);
}
.bnwo-hero-search__tabs{
  display:inline-flex;
  overflow:hidden;
  border-radius:10px 10px 0 0;
  background:var(--hero-green);
}
.bnwo-hero-search__tab{
  min-width:145px;
  min-height:48px;
  padding:0 24px;
  border:0;
  background:var(--hero-green);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  cursor:pointer;
  transition:background .2s ease,color .2s ease;
}
.bnwo-hero-search__tab:hover{
  background:var(--hero-green-2);
}
.bnwo-hero-search__tab.is-active{
  background:var(--hero-gold);
  color:var(--hero-green);
}
.bnwo-hero-search__form{
  display:grid;
  grid-template-columns:1.2fr 1.25fr 1fr auto;
  gap:0;
  align-items:stretch;
  padding:0;
  overflow:hidden;
  border-radius:0 10px 10px 10px;
  background:#fff;
  box-shadow:0 18px 50px rgba(4,24,19,.22);
}
.bnwo-hero-search__field{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:86px;
  padding:15px 19px;
  margin:0;
  border-right:1px solid var(--hero-border);
  background:#fff;
}
.bnwo-hero-search__field>span{
  display:block;
  margin-bottom:5px;
  color:#777F7B;
  font-size:10px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.bnwo-hero-search__field select,
.bnwo-hero-search__field input{
  width:100%;
  min-height:28px;
  margin:0;
  padding:0 28px 0 0;
  border:0 !important;
  outline:0;
  box-shadow:none !important;
  background:transparent;
  color:var(--hero-text);
  font-size:15px;
  font-weight:700;
  line-height:1.3;
}
.bnwo-hero-search__field input::placeholder{
  color:#8C938F;
  opacity:1;
  font-weight:600;
}
.bnwo-hero-search__field:focus-within{
  background:#FBFAF7;
}
.bnwo-hero-search__submit{
  min-width:165px;
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 26px;
  border:0;
  border-radius:0;
  background:var(--hero-gold);
  color:var(--hero-green);
  font-size:14px;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .2s ease;
}
.bnwo-hero-search__submit:hover{
  background:#D3AF68;
}
.bnwo-hero-search__submit span:last-child{
  font-size:20px;
  line-height:1;
}
@media(max-width:900px){
  .bnwo-hero-search__form{
    grid-template-columns:1fr 1fr;
  }
  .bnwo-hero-search__field{
    border-bottom:1px solid var(--hero-border);
  }
  .bnwo-hero-search__submit{
    min-height:76px;
  }
}
@media(max-width:620px){
  .bnwo-hero-search{margin-top:26px}
  .bnwo-hero-search__tabs{
    width:100%;
    border-radius:9px 9px 0 0;
  }
  .bnwo-hero-search__tab{
    flex:1 1 50%;
    min-width:0;
    min-height:45px;
    padding:0 14px;
  }
  .bnwo-hero-search__form{
    grid-template-columns:1fr;
    border-radius:0 0 10px 10px;
  }
  .bnwo-hero-search__field{
    min-height:72px;
    padding:12px 16px;
    border-right:0;
    border-bottom:1px solid var(--hero-border);
  }
  .bnwo-hero-search__submit{
    min-width:0;
    width:100%;
    min-height:62px;
  }
}


/* =========================================================
   Slider strony głównej — odizolowany od /oferty/
   ========================================================= */
.bnwo-home-slider{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  color:#17201D;
}
.bnwo-home-slider__nav{
  display:flex;
  justify-content:flex-end;
  gap:9px;
  margin-bottom:14px;
}
.bnwo-home-slider__arrow{
  appearance:none;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid #DED9CF;
  border-radius:50%;
  background:#fff;
  color:#0F2B24;
  font-size:20px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
}
.bnwo-home-slider__arrow:hover:not(:disabled){
  border-color:#0F2B24;
  background:#0F2B24;
  color:#fff;
}
.bnwo-home-slider__arrow:disabled{
  opacity:.3;
  cursor:default;
}
.bnwo-home-slider__viewport{
  width:100%;
  overflow:hidden;
}
.bnwo-home-slider__track{
  display:flex;
  flex-wrap:nowrap;
  gap:20px;
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  padding:2px 2px 12px;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  overscroll-behavior-x:contain;
  cursor:grab;
  user-select:none;
  -webkit-overflow-scrolling:touch;
}
.bnwo-home-slider__track::-webkit-scrollbar{
  display:none;
}
.bnwo-home-slider__track.is-dragging{
  cursor:grabbing;
  scroll-snap-type:none;
  scroll-behavior:auto;
}
.bnwo-home-card{
  flex:0 0 calc((100% - 40px) / 3);
  min-width:0;
  overflow:hidden;
  border:1px solid #E7E2D8;
  border-radius:12px;
  background:#fff;
  scroll-snap-align:start;
}
.bnwo-home-card__photo{
  position:relative;
  display:block;
  width:100%;
  height:210px;
  overflow:hidden;
  background:#ECEAE5;
}
.bnwo-home-card__photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.bnwo-home-card:hover .bnwo-home-card__photo img{
  transform:scale(1.025);
}
.bnwo-home-card__placeholder{
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
  color:#6E7773;
}
.bnwo-home-card__badge{
  position:absolute;
  top:13px;
  left:13px;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(15,43,36,.94);
  color:#fff;
  font-size:10px;
  font-weight:800;
}
.bnwo-home-card__body{
  padding:16px 17px 17px;
}
.bnwo-home-card__type{
  margin-bottom:5px;
  color:#C8A25D;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.bnwo-home-card__title{
  margin:0 0 6px !important;
  font-size:18px !important;
  line-height:1.25 !important;
}
.bnwo-home-card__title a{
  color:#0F2B24 !important;
  text-decoration:none !important;
}
.bnwo-home-card__location{
  color:#6E7773;
  font-size:13px;
}
.bnwo-home-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:13px 0 14px;
}
.bnwo-home-card__meta span{
  padding:5px 7px;
  border-radius:6px;
  background:#FBFAF7;
  color:#6E7773;
  font-size:11px;
}
.bnwo-home-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:13px;
  border-top:1px solid #E7E2D8;
}
.bnwo-home-card__footer strong{
  color:#0F2B24;
  font-size:18px;
  white-space:nowrap;
}
.bnwo-home-card__footer a{
  color:#0F2B24 !important;
  font-size:12px;
  font-weight:800;
  text-decoration:none !important;
}
.bnwo-home-slider__all{
  display:flex;
  justify-content:center;
  margin-top:25px;
}
.bnwo-home-slider__all a{
  display:inline-flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border:1px solid #0F2B24;
  border-radius:8px;
  background:#fff;
  color:#0F2B24 !important;
  font-size:13px;
  font-weight:800;
  text-decoration:none !important;
}
.bnwo-home-slider__all a:hover{
  background:#0F2B24;
  color:#fff !important;
}
@media(max-width:900px){
  .bnwo-home-card{
    flex-basis:calc((100% - 18px) / 2);
  }
  .bnwo-home-slider__track{
    gap:18px;
  }
  .bnwo-home-card__photo{
    height:200px;
  }
}
@media(max-width:620px){
  .bnwo-home-card{
    flex-basis:84%;
  }
  .bnwo-home-slider__track{
    gap:14px;
  }
  .bnwo-home-card__photo{
    height:185px;
  }
  .bnwo-home-slider__arrow{
    width:40px;
    height:40px;
  }
}


/* =========================================================
   v1.6.2 — kompaktowa sekcja ofert na stronie głównej
   ========================================================= */
.bnwo-home-slider{
  width:calc(100% - 48px) !important;
  max-width:1100px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
.bnwo-home-slider__viewport{
  width:100% !important;
  max-width:1100px !important;
  margin:0 auto !important;
}
.bnwo-home-slider__track{
  width:100% !important;
}
.bnwo-home-card{
  flex:0 0 calc((100% - 44px) / 3) !important;
}
.bnwo-home-card__photo{
  height:195px !important;
}
.bnwo-home-slider__nav{
  max-width:1100px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  margin-bottom:14px !important;
}
.bnwo-home-slider__all{
  max-width:1100px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  margin-top:24px !important;
}

@media(max-width:900px){
  .bnwo-home-slider{
    width:calc(100% - 36px) !important;
  }
  .bnwo-home-card{
    flex-basis:calc((100% - 18px) / 2) !important;
  }
  .bnwo-home-card__photo{
    height:185px !important;
  }
}

@media(max-width:620px){
  .bnwo-home-slider{
    width:calc(100% - 24px) !important;
  }
  .bnwo-home-card{
    flex-basis:86% !important;
  }
  .bnwo-home-card__photo{
    height:175px !important;
  }
}


/* =========================================================
   v1.8.0 — mapa ofert na stronie głównej
   ========================================================= */
.bnwo-home-map-section{
  display:grid;
  grid-template-columns:minmax(290px, .38fr) minmax(0, .62fr);
  width:calc(100% - 48px);
  max-width:1100px;
  margin:0 auto;
  overflow:hidden;
  border:1px solid #E3DED4;
  border-radius:14px;
  background:#FFFFFF;
}
.bnwo-home-map-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:480px;
  padding:52px 44px;
  background:#0F2B24;
  color:#FFFFFF;
}
.bnwo-home-map-eyebrow{
  margin-bottom:15px;
  color:#C8A25D;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
}
.bnwo-home-map-copy h2{
  margin:0 0 18px !important;
  color:#FFFFFF !important;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:38px !important;
  line-height:1.12 !important;
  font-weight:500 !important;
}
.bnwo-home-map-copy p{
  max-width:330px;
  margin:0 0 25px !important;
  color:#D8E0DC !important;
  font-size:15px !important;
  line-height:1.7 !important;
}
.bnwo-home-map-stat{
  display:flex;
  align-items:baseline;
  gap:9px;
  margin-bottom:27px;
}
.bnwo-home-map-stat strong{
  color:#C8A25D;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:32px;
  font-weight:500;
  line-height:1;
}
.bnwo-home-map-stat span{
  color:#D8E0DC;
  font-size:13px;
}
.bnwo-home-map-cta{
  display:inline-flex !important;
  width:max-content;
  min-height:47px;
  align-items:center;
  justify-content:center;
  gap:15px;
  padding:0 20px;
  border:1px solid #C8A25D;
  border-radius:7px;
  background:#C8A25D;
  color:#0F2B24 !important;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  text-decoration:none !important;
  transition:background .2s ease,color .2s ease;
}
.bnwo-home-map-cta:hover{
  background:transparent;
  color:#FFFFFF !important;
}
.bnwo-home-map-panel{
  position:relative;
  min-width:0;
  min-height:480px;
  background:#EBEFEC;
}
.bnwo-home-map{
  width:100%;
  height:480px;
  min-height:480px;
  z-index:1;
}
.bnwo-home-map-empty{
  display:flex;
  min-height:480px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:30px;
  text-align:center;
  color:#0F2B24;
}
.bnwo-home-map-empty span{
  color:#6E7773;
  font-size:14px;
}

/* Leaflet popup we already use in the offer directory. */
.bnwo-home-map-section .leaflet-popup-content-wrapper{
  border-radius:10px;
}
.bnwo-home-map-section .leaflet-popup-content{
  margin:0;
}
.bnwo-home-map-section .bnwo-map-popup{
  overflow:hidden;
  border-radius:10px;
}

@media(max-width:900px){
  .bnwo-home-map-section{
    width:calc(100% - 36px);
    grid-template-columns:1fr;
  }
  .bnwo-home-map-copy{
    min-height:0;
    padding:42px 38px;
  }
  .bnwo-home-map-copy p{
    max-width:620px;
  }
  .bnwo-home-map-panel,
  .bnwo-home-map,
  .bnwo-home-map-empty{
    min-height:410px;
    height:410px;
  }
}
@media(max-width:620px){
  .bnwo-home-map-section{
    width:calc(100% - 24px);
    border-radius:10px;
  }
  .bnwo-home-map-copy{
    padding:34px 26px 36px;
  }
  .bnwo-home-map-copy h2{
    font-size:31px !important;
  }
  .bnwo-home-map-panel,
  .bnwo-home-map,
  .bnwo-home-map-empty{
    min-height:350px;
    height:350px;
  }
}


/* =========================================================
   v1.8.1 — czytelniejsza mapa na stronie głównej
   TYLKO [bn_mapa_glowna]
   ========================================================= */
.bnwo-home-map-section{
  grid-template-columns:minmax(300px, .32fr) minmax(0, .68fr) !important;
  width:calc(100% - 48px) !important;
  max-width:1240px !important;
  min-height:520px !important;
  align-items:stretch !important;
}
.bnwo-home-map-copy{
  min-height:520px !important;
  padding:54px 42px !important;
}
.bnwo-home-map-copy h2{
  font-size:40px !important;
}
.bnwo-home-map-copy p{
  max-width:300px !important;
}
.bnwo-home-map-panel{
  position:relative !important;
  min-height:520px !important;
  height:520px !important;
  overflow:hidden !important;
  background:#E7ECE8 !important;
}
.bnwo-home-map{
  position:absolute !important;
  inset:0 !important;
  display:block !important;
  width:100% !important;
  height:100% !important;
  min-height:520px !important;
  max-height:none !important;
  margin:0 !important;
  background:#E7ECE8 !important;
}
.bnwo-home-map .leaflet-map-pane,
.bnwo-home-map .leaflet-tile-pane,
.bnwo-home-map .leaflet-overlay-pane,
.bnwo-home-map .leaflet-marker-pane,
.bnwo-home-map .leaflet-shadow-pane,
.bnwo-home-map .leaflet-popup-pane{
  width:auto !important;
  height:auto !important;
}

/* Cena bezpośrednio na pinezce — tylko mapa strony głównej. */
.bnwo-home-map-price-marker{
  background:transparent !important;
  border:0 !important;
}
.bnwo-home-map-price-marker__wrap{
  position:relative;
  display:inline-flex;
  min-width:76px;
  height:34px;
  align-items:center;
  justify-content:center;
  padding:0 11px;
  border:2px solid #FFFFFF;
  border-radius:8px;
  background:#0F2B24;
  color:#FFFFFF;
  box-shadow:0 5px 15px rgba(15,43,36,.25);
  font-size:11px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
}
.bnwo-home-map-price-marker__wrap::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-7px;
  width:12px;
  height:12px;
  border-right:2px solid #FFFFFF;
  border-bottom:2px solid #FFFFFF;
  background:#0F2B24;
  transform:translateX(-50%) rotate(45deg);
  border-radius:0 0 3px 0;
}
.bnwo-home-map-price-marker__dot{
  display:block;
  width:5px;
  height:5px;
  margin-right:7px;
  flex:0 0 5px;
  border-radius:50%;
  background:#C8A25D;
}

/* Pop-up bardziej czytelny na większej mapie. */
.bnwo-home-map-section .leaflet-popup-content-wrapper{
  overflow:hidden;
  border-radius:12px !important;
  box-shadow:0 12px 32px rgba(15,43,36,.18) !important;
}
.bnwo-home-map-section .leaflet-popup-tip{
  background:#FFFFFF !important;
}
.bnwo-home-map-section .bnwo-map-popup__image{
  height:140px !important;
}

/* Nie pozwalamy Thrive/Astrze zrobić pustej przestrzeni pod mapą. */
.bnwo-home-map-panel > .leaflet-container{
  position:absolute !important;
  inset:0 !important;
  height:100% !important;
  min-height:100% !important;
}

@media(max-width:900px){
  .bnwo-home-map-section{
    grid-template-columns:1fr !important;
    width:calc(100% - 36px) !important;
    min-height:0 !important;
  }
  .bnwo-home-map-copy{
    min-height:0 !important;
    padding:42px 38px !important;
  }
  .bnwo-home-map-copy p{
    max-width:620px !important;
  }
  .bnwo-home-map-panel{
    height:440px !important;
    min-height:440px !important;
  }
  .bnwo-home-map{
    min-height:440px !important;
  }
}

@media(max-width:620px){
  .bnwo-home-map-section{
    width:calc(100% - 24px) !important;
  }
  .bnwo-home-map-copy{
    padding:34px 26px 36px !important;
  }
  .bnwo-home-map-copy h2{
    font-size:31px !important;
  }
  .bnwo-home-map-panel{
    height:370px !important;
    min-height:370px !important;
  }
  .bnwo-home-map{
    min-height:370px !important;
  }
  .bnwo-home-map-price-marker__wrap{
    min-width:68px;
    height:32px;
    padding:0 9px;
    font-size:10px;
  }
}


/* =========================================================
   v1.8.2 — klastrowanie markerów
   ========================================================= */
.bnwo-home-map-cluster-marker,
.bnwo-directory-cluster-marker{
  background:transparent !important;
  border:0 !important;
}

.bnwo-home-map-cluster-marker__bubble{
  display:flex;
  width:58px;
  height:58px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:3px solid #FFFFFF;
  border-radius:50%;
  background:#0F2B24;
  color:#FFFFFF;
  box-shadow:0 7px 18px rgba(15,43,36,.28);
  line-height:1;
}
.bnwo-home-map-cluster-marker__bubble strong{
  color:#C8A25D;
  font-size:19px;
  line-height:1;
}
.bnwo-home-map-cluster-marker__bubble small{
  margin-top:4px;
  color:#FFFFFF;
  font-size:8px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.bnwo-directory-cluster-marker__bubble{
  display:flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border:3px solid #FFFFFF;
  border-radius:50%;
  background:#0F2B24;
  color:#FFFFFF;
  box-shadow:0 5px 15px rgba(15,43,36,.25);
}
.bnwo-directory-cluster-marker__bubble strong{
  color:#C8A25D;
  font-size:16px;
  line-height:1;
}

.bnwo-cluster-popup-leaflet .leaflet-popup-content-wrapper{
  overflow:hidden;
  border-radius:12px;
}
.bnwo-cluster-popup-leaflet .leaflet-popup-content{
  margin:0 !important;
}
.bnwo-cluster-popup{
  min-width:280px;
  max-height:350px;
  overflow:auto;
  background:#FFFFFF;
}
.bnwo-cluster-popup__heading{
  position:sticky;
  top:0;
  z-index:1;
  padding:14px 16px;
  border-bottom:1px solid #E7E2D8;
  background:#F6F2EA;
  color:#0F2B24;
  font-size:13px;
  font-weight:800;
}
.bnwo-cluster-popup__item{
  display:block !important;
  padding:12px 16px !important;
  border-bottom:1px solid #EEEAE2;
  color:#0F2B24 !important;
  text-decoration:none !important;
}
.bnwo-cluster-popup__item:hover{
  background:#FBFAF7;
}
.bnwo-cluster-popup__title{
  display:block;
  margin-bottom:5px;
  color:#0F2B24;
  font-size:13px;
  font-weight:800;
  line-height:1.3;
}
.bnwo-cluster-popup__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:#6E7773;
  font-size:11px;
}
.bnwo-cluster-popup__meta strong{
  color:#0F2B24;
  white-space:nowrap;
}
.bnwo-cluster-popup__more{
  padding:11px 16px;
  color:#6E7773;
  font-size:11px;
  text-align:center;
}

@media(max-width:620px){
  .bnwo-home-map-cluster-marker__bubble{
    width:52px;
    height:52px;
  }
  .bnwo-home-map-cluster-marker__bubble strong{
    font-size:17px;
  }
}


/* =========================================================
   v1.8.4 — identyczna wysokość panelu tekstowego i mapy
   ========================================================= */
@media(min-width:901px){
  .bnwo-home-map-section{
    height:520px !important;
    min-height:520px !important;
    max-height:520px !important;
    align-items:stretch !important;
  }

  .bnwo-home-map-copy{
    height:520px !important;
    min-height:520px !important;
    max-height:520px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  .bnwo-home-map-panel{
    position:relative !important;
    height:520px !important;
    min-height:520px !important;
    max-height:520px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  .bnwo-home-map-panel > .bnwo-home-map,
  .bnwo-home-map-panel > .leaflet-container{
    position:relative !important;
    inset:auto !important;
    display:block !important;
    width:100% !important;
    height:520px !important;
    min-height:520px !important;
    max-height:520px !important;
    margin:0 !important;
    padding:0 !important;
    box-sizing:border-box !important;
  }
}

/* Na tabletach / telefonach sekcja wraca do naturalnej wysokości. */
@media(max-width:900px){
  .bnwo-home-map-section{
    height:auto !important;
    max-height:none !important;
  }

  .bnwo-home-map-copy{
    height:auto !important;
    max-height:none !important;
  }

  .bnwo-home-map-panel{
    height:440px !important;
    min-height:440px !important;
    max-height:440px !important;
  }

  .bnwo-home-map-panel > .bnwo-home-map,
  .bnwo-home-map-panel > .leaflet-container{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    height:440px !important;
    min-height:440px !important;
    max-height:440px !important;
  }
}

@media(max-width:620px){
  .bnwo-home-map-panel{
    height:370px !important;
    min-height:370px !important;
    max-height:370px !important;
  }

  .bnwo-home-map-panel > .bnwo-home-map,
  .bnwo-home-map-panel > .leaflet-container{
    height:370px !important;
    min-height:370px !important;
    max-height:370px !important;
  }
}
