.custom-search-dropdown-floating{
    position:absolute;
    display:none;
    background:#fff;
    border:3px solid #000;
    border-radius:26px;
    padding:6px 10px 10px;
    box-sizing:border-box;
    z-index:9999998;
    overflow:hidden;
  }
  .custom-search-dropdown-floating.is-visible{display:block}

  .custom-search-dropdown-inner{
    display:flex;
    flex-direction:column;
    gap:0;
  }

  .custom-search-dropdown-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 6px;
    text-decoration:none;
    transition:background .2s ease;
    border-bottom:1px solid #e9e9e9;
  }

  .custom-search-dropdown-item:last-of-type{
    border-bottom:0;
  }

  .custom-search-dropdown-item:hover{
    background:#f5f5f5;
    text-decoration:none;
    border-radius:14px;
  }

  .custom-search-dropdown-thumb{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:12px;
    overflow:hidden;
    background:#f3f3f3;
    border:1px solid #dcdcdc;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .custom-search-dropdown-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .custom-search-dropdown-content{
    flex:1 1 auto;
    min-width:0;
  }

  .custom-search-dropdown-title{
    margin:0;
    font-size:15px;
    line-height:1.28;
    font-weight:700;
    color:#111;
    word-break:break-word;
  }

  .custom-search-dropdown-price{
    margin-top:5px;
    font-size:14px;
    line-height:1.2;
    font-weight:700;
    color:#111;
  }

  .custom-search-dropdown-empty,
  .custom-search-dropdown-loading{
    padding:12px 6px 10px;
    font-size:14px;
    color:#111;
  }

  .custom-search-dropdown-footer{
    padding:10px 4px 2px;
  }

  .custom-search-dropdown-more{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:54px;
    padding:14px 18px;
    box-sizing:border-box;
    background:#ffffff;
    color:#000000;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    line-height:1.2;
    border:3px solid #000000;
    border-radius:999px;
    transition:background .2s ease,color .2s ease,transform .15s ease;
    text-align:center;
  }

  .custom-search-dropdown-more:hover{
    background:#000000;
    color:#ffffff;
    text-decoration:none;
  }

  .custom-search-dropdown-more:active{
    transform:translateY(1px);
  }

  /* schování jen autocomplete prvků, NE hlavní search stránky */
  .search-whisperer,
  .search-whisperer-holder,
  .ajax-search-results,
  .tt-menu,
  .tt-dropdown-menu,
  .twitter-typeahead .tt-menu,
  .twitter-typeahead .tt-dropdown-menu,
  .typeahead__result,
  .typeahead__list,
  .ui-autocomplete,
  .autocomplete-suggestions,
  .autocomplete-suggestion,
  .search-suggest,
  .search-suggest-wrapper{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
    max-height:0 !important;
    overflow:hidden !important;
    z-index:-1 !important;
  }

  @media (max-width:767px){
    .custom-search-dropdown-floating{
      padding:5px 8px 8px;
      border-radius:22px;
    }

    .custom-search-dropdown-item{
      gap:10px;
      padding:10px 4px;
    }

    .custom-search-dropdown-thumb{
      width:46px;
      height:46px;
      min-width:46px;
      border-radius:10px;
    }

    .custom-search-dropdown-title{font-size:14px}
    .custom-search-dropdown-price{font-size:13px}

    .custom-search-dropdown-footer{
      padding:8px 2px 2px;
    }

    .custom-search-dropdown-more{
      min-height:50px;
      padding:12px 16px;
      font-size:15px;
    }
  }