/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 27 2026 | 21:05:41 */


/* =======================================================
   FIX: Dropdown selectu nad ostatnými filtrami v sidebare
   (Prsia veľkosť musí ísť nad Min/Max vek)
   ======================================================= */

/* každý panel filtra = vlastná vrstva */
.listivo-search-panel{
  position: relative !important;
  z-index: 1 !important;
  overflow: visible !important;
}

/* jeho vnútro nesmie rezať */
.listivo-search-panel__content,
.listivo-search-panel__content *{
  overflow: visible !important;
}

/* select + dropdown */
.listivo-select-v2{
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
}

.listivo-select-v2__dropdown{
  position: absolute !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
}

/* ✅ KEY: keď je select otvorený, zdvihni CELÝ panel */
@supports selector(:has(*)){
  .listivo-search-panel:has(.listivo-select-v2--open),
  .listivo-search-panel:has(.listivo-select-v2--active){
    z-index: 100000 !important;
  }
}



/* ===================================== */
/* HEART BUTTON – BLUE STYLE + HOVER FX */
/* ===================================== */

/* wrapper srdiečka */
.listivo-listing-card-v4__bottom,
.listivo-listing-card-v4__icon,
.listivo-social-icons__icon{
  overflow: visible !important;
}

/* samotné tlačidlo (kruh) */
.listivo-listing-card-v4__icon,
.listivo-social-icons__icon{

  background: #ffffff !important;       /* vnútro biele */
  border: 2px solid #5c8dff !important; /* modrý kruh */
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

/* SVG srdiečko default */
.listivo-listing-card-v4__icon svg,
.listivo-social-icons__icon svg{
  stroke: #ff4b5c !important;  /* červené srdce */
  fill: none !important;
  transition: all 0.3s ease !important;
}
/* ========================================= */
/* FAVORITE ACTIVE – PREMIUM + NORMAL FIX */
/* ========================================= */

/* kruh keď je active */
.listivo-listing-card-v4__icon--active,
.listivo-listing-card-v4__icon.active,
.listivo-listing-card-v4__icon[aria-pressed="true"]{
    background: #ff6b6b !important;
    border: 2px solid #ff6b6b !important;
}

/* srdce plne červené */
.listivo-listing-card-v4__icon--active svg path,
.listivo-listing-card-v4__icon.active svg path,
.listivo-listing-card-v4__icon[aria-pressed="true"] svg path{
    fill: #ff0033 !important;
    stroke: #ff0033 !important;
}
/* ========================================= */
/* FORCE WHITE HEART WHEN ACTIVE – ALL CARDS */
/* ========================================= */

.listivo-listing-card-v4 
.listivo-listing-card-v4__icon--active svg path,
.listivo-listing-card-v4 
.listivo-listing-card-v4__icon.listivo-listing-card-v4__icon--active svg path,
.listivo-listing-card-v4 
.listivo-listing-card-v4__icon--active svg {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}




/* ============================= */
/* MOBILE SEARCH SIDEBAR SCROLL  */
/* ============================= */
@media (max-width: 1024px){

  /* flex kontajner musí dovoliť vnútorný scroll */
  .listivo-search-v2__content{
    height: 100dvh !important;
    overflow: hidden !important;
  }

  /* samotný sidebar (open stav) nech sa správa ako stĺpec */
  .listivo-search-v2__sidebar,
  .listivo-search-v2__sidebar--open{
    height: 100dvh !important;
    max-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important; /* kľúčové */
    overflow: hidden !important;
  }

  /* vnútorný obsah sidebaru nech je scrollovateľný */
  .listivo-search-v2__sidebar .listivo-search-sidebar{
    flex: 1 1 auto !important;
    min-height: 0 !important; /* kľúčové */
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
  }

}


/* ================================= */
/* MOBILE SIDEBAR – CORRECT SCROLL  */
/* ================================= */

@media (max-width: 1024px){

  /* NEBLOKUJ hlavný kontajner */
  .listivo-search-v2__content{
    height: auto !important;
    overflow: visible !important;
  }

  /* sidebar nech má vlastný scroll */
  .listivo-search-v2__sidebar--open .listivo-search-sidebar{
    max-height: 100vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

}

@media (max-width: 1024px){

  .listivo-search-v2__sidebar--open .listivo-search-sidebar{
      margin-top: 70px !important;
  }

}




/* ================================= */
/* MOBILE SIDEBAR OFFSET FIX */
/* ================================= */

@media (max-width: 1024px){

  .listivo-search-v2__sidebar--open{
      top: 70px !important;       /* uprav podľa výšky headera */
      height: calc(100vh - 70px) !important;
  }

}