/*-----------facetwp-------------*/
.filter-svg {
  width: 19px;
  height: 19px;
  fill: white;
}
.close-filter {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.close-icon-svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.filter-header {
  background: #057D29;
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  font-size: 16px;
  width: fit-content;
  font-weight: 800;
}


/*ukoncenie sort*/
.filter-header {
  cursor: pointer;
}
.filter-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  max-width: 400px;
  height: 100%;
  background: #057D29;
  border: 2px solid white;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .filter-content {
    width: 80%;
  }
}

.filter-content.open {
  transform: translateX(0);
}



/* ANIMÁCIA OTVORENIA */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}








/* obal vlastného sortu */
.custom-sort {
  position: relative;
  display: inline-block;
  user-select: none;
}

/* tlačidlo */
.custom-sort__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2px solid white;
  border-radius: 20px;
  background: #057D29;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: white;
}
@media (max-width: 440px){
  .custom-sort__btn, 
  .filter-header {
    font-size: 14px;
  }
}
@media (max-width: 378px){
  .custom-sort__btn,
  .filter-header {
    font-size: 14px;
  }
}

/* šípka */
.custom-sort__btn .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
}

/* dropdown */
.custom-sort__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;                 /* ukotvené vpravo k buttonu */
  left: auto;               /* ignoruj left */
  min-width: 240px;
  max-width: 90vw;          /* nikdy nepresiahne viewport */
  background: #057D29;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 50;
  color: white;
}


/* položky */
.custom-sort__menu li {
  padding: 10px 14px;
  cursor: pointer;
}

.custom-sort__menu li:hover {
  background: #111827;
  color: #fff;
}

.custom-sort__menu li.is-active {
  font-weight: 600;
}
.facetwp-facet-sort_ select {
  display: none;
}
.facetwp-facet {
    margin-bottom: 0px!important;
}

.facetwp-load-more {
    background-color: white;
    color: black;
    border: 1px solid white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 10px;
}

/**/
.custom-sort__btn {
  position: relative;
}

.custom-sort__btn .filter-arrow {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.25s ease;
}
.facetwp-counter {
  /* display: none; */
}
.facetwp-facet-categories {
  margin-top: 10px;
}
.facetwp-display-value {
  color: white;
}