/* PC Search Bar */
@media only screen and (min-width: 800px) {
  @keyframes smoothFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .pc-search-bar-wrapper {
    width: 60%;
    min-height: 40px;
    position: relative;
  }
  .input-search_wrapper {
    width: 100%;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    backdrop-filter: blur(10px) brightness(1);
    background-color: #ffffff40;
    box-shadow: inset 1px 0 1px 0px #ffffff38;
    cursor: pointer;
    position: absolute;
    top: 0;
  }
  .input-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-icon {
    width: 27px;
  }
  .input-search {
    width: 100%;
    height: 40px;
    border: none;
    color: #fff;
    padding: 0 10px;
    font-size: 15px;
  }
  .input-search::placeholder {
    color: #ffffff99;
    opacity: 1;
  }
  .pc-search-category-wrapper {
    width: 100%;
    height: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    overflow: scroll;
  }
  .category-button {
    min-width: 24%;
    height: 30px;
    border: none;
    border-radius: 15px;
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    background-color: #454d5e73;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .selected_category {
    background-color: #cececea3;
  }
  .pc-search-results-container {
    width: 100%;
    height: 0;
    min-height: 0;
    overflow: hidden;
  }
  .pc-search-results-header {
    width: 100%;
    padding: 15px 0 10px 0;
    display: none;
  }
  .pc-search-results-header.show-header-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .pc-search-results-header-title {
    font-size: 14px;
    color: #fff;
  }
  .pc-search-results-list {
    width: 100%;
    height: 215px;
    overflow-y: scroll;
  }
  .pc-search-results-list > ul {
    list-style: none;
    padding: unset;
  }
  .pc-search-results-list > ul > li {
    width: 100%;
    padding: unset;
  }
  .pc-search-results-list-ul {
    transition: all 0.3s ease-in-out;
  }
  .pc-search-result-item {
    opacity: 1;
    transform: translateY(8px);
    animation: smoothFadeIn 0.3s ease-in-out forwards;
  }
  .pc-search-results-list-ul.no-animation {
    transition: none;
  }
  .pc-search-results-list-ul.no-animation .pc-search-result-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .pc-search-result-item.hidden_item {
    display: none;
  }
  .faq-link {
    text-align: none;
  }
  .pc-list-content-wrapper {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
  }
    .pc-faq-title {
    max-width: 90%;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    color: #fff;
  }
  .pc-faq-title > .highlighted_text {
    color: #ffd700;
  }
  .pc-arrow-icon {
    width: 16px;
  }

  .input-search_wrapper{
    will-change: transform;
  }

  /* Searching state styles */
  .input-search_wrapper.searching {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 370px;
    z-index: 1;
  }
  .input-search_wrapper.searching .input-wrapper {
    border-bottom: 1px solid #ffffff40;
  }
  .input-search_wrapper.searching .pc-search-category-wrapper {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 62px;
    opacity: 1;
    overflow: auto;
    border-bottom: 1px solid #ffffff40;
  }
  .input-search_wrapper.searching .pc-search-results-container {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 265px;
    opacity: 1;
    overflow: visible;
  }

  /* Dismissed state styles */
  .input-search_wrapper.dismissed {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 40px;
    z-index: 0;
  }
  .input-search_wrapper.dismissed .input-wrapper {
    border-bottom: unset;
  }
  .input-search_wrapper.dismissed .pc-search-category-wrapper {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
  .input-search_wrapper.dismissed .pc-search-results-container {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
}