.wc-cat-live-search {
    position: relative;
    max-width: 520px;
  }
  
  .wc-cat-live-search__control {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  
  .wc-cat-live-search__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: #fff;
  }
  
  .wc-cat-live-search__submit,
  .wc-cat-live-search__submit:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.9rem;
    border: none;
    background: #e8242d; 
    cursor: pointer;
  }
  
  .wc-cat-live-search__submit:hover {
    opacity: 0.7;
  }
  
  .wc-cat-live-search__submit-icon {
    width: 16px;
    height: 16px;
    display: block;
  }
  
  .wc-cat-live-search__results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    max-height: 440px;
    overflow: auto;
    padding: 0.35rem;
  }
  
  .wc-cat-live-search__list {
    display: grid;
    grid-template-columns: repeat(var(--wcls-cols, 1), minmax(0, 1fr));
    gap: 0.25rem;
  }
  
  .wc-cat-live-search[data-cols="2"] .wc-cat-live-search__list {
    --wcls-cols: 2;
  }
  
  .wc-cat-live-search__item {
    display: flex;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    text-decoration: none;
    color: inherit;
    align-items: center;
    border-radius: 8px;
  }
  
  .wc-cat-live-search__item:hover {
    background: #fafafa;
  }
  
  .wc-cat-live-search__thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }
  
  .wc-cat-live-search__title {
    display: block;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .wc-cat-live-search__price {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 2px;
  }
  
  .wc-cat-live-search__nores {
    display: none;
    padding: 0.6rem 0.75rem;
    color: #666;
  }
  
  .wc-cat-live-search__actions {
    display: flex;
    justify-content: center;
    padding: 0.35rem 0.5rem 0.5rem;
  }
  
  .wc-cat-live-search__more {
    display: none;
    border: 1px solid #ddd;
    background: #fff;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
  }
  