.oaklores-search-result-shimmer{
    display:flex;
    gap:16px;
    padding:18px;
    border-bottom:1px solid #ececec;
}

.oaklores-search-result-shimmer-image{
    width:90px;
    height:90px;
    border-radius:8px;
    background:#ececec;
    flex-shrink:0;
}

.oaklores-search-result-shimmer-content{
    flex:1;
}

.oaklores-shimmer-line{
    height:12px;
    margin-bottom:12px;
    border-radius:6px;
    background:linear-gradient(
        90deg,
        #efefef 25%,
        #f8f8f8 50%,
        #efefef 75%
    );
    background-size:200% 100%;
    animation:oaklores-shimmer 1.3s infinite;
}

.oaklores-shimmer-line-title{
    width:55%;
    height:18px;
}

.oaklores-short{
    width:35%;
}

@keyframes oaklores-shimmer{

    from{
        background-position:200% 0;
    }

    to{
        background-position:-200% 0;
    }

}
/*search results*/
.oaklores-search-result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.15s ease;
}

.oaklores-search-result-card:last-child {
    border-bottom: none;
}

.oaklores-search-result-card:hover {
    background: #fafafa;
}

.oaklores-search-result-image {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oaklores-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oaklores-search-result-content {
    flex: 1;
    min-width: 0;
}

.oaklores-search-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
    margin-bottom: 4px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oaklores-search-result-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.45;
    margin-bottom: 6px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oaklores-search-result-type {
    display: inline-block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.oaklores-search-no-results {
    padding: 24px;
    text-align: center;
    color: #777;
    font-size: 15px;
}
/*pills
.oaklores-search-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}*/
.oaklores-search-pills {
    display: flex;
    flex-wrap: nowrap;

    gap: 10px;
    margin: 0 0 20px;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.oaklores-search-pills > * {
    flex: 0 0 auto;
}
.oaklores-search-pills::-webkit-scrollbar {
    display: none;
}

.oaklores-search-pills {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.oaklores-search-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border: 1px solid #d7dce3;
    border-radius: 999px;

    background: #ffffff;
    color: #374151;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        transform .15s ease;

    appearance: none;
    -webkit-appearance: none;
}

.oaklores-search-pill:hover {
    background: #f7f9fb;
    border-color: #bfc8d4;
}

.oaklores-search-pill:active {
    transform: scale(.98);
}

.oaklores-search-pill.active {
    background: #1f6feb;
    border-color: #1f6feb;
    color: #fff;

    box-shadow: 0 3px 10px rgba(31,111,235,.18);
}

.oaklores-search-pill-label {
    white-space: nowrap;
}

.oaklores-search-pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 22px;
    padding: 0 7px;

    border-radius: 999px;

    background: rgba(0,0,0,.08);

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.oaklores-search-pill.active .oaklores-search-pill-count {
    background: rgba(255,255,255,.22);
    color: #fff;
}

.oaklores-search-pill:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(31,111,235,.2);
}
/*load more*/
.oaklores-search-load-more-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 32px 0;
}

.oaklores-search-load-more {
    appearance: none;
    -webkit-appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 170px;
    height: 46px;
    padding: 0 24px;

    border: 1px solid #d6dbe3;
    border-radius: 999px;

    background: #fff;
    color: #374151;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        transform .15s ease;
}

.oaklores-search-load-more:hover {
    background: #f8fafc;
    border-color: #bcc6d4;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.oaklores-search-load-more:active {
    transform: scale(.98);
}

.oaklores-search-load-more:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(31,111,235,.18);
}

.oaklores-search-load-more:disabled,
.oaklores-search-load-more.htmx-request {
    opacity: .65;
    cursor: wait;
    pointer-events: none;
}

.oaklores-load-more-indicator {
    width: 100%;
    margin-top: 24px;
}
/*search box*/
.search-box-wrapper{
	margin-top:50px;
}
.search-box-wrapper-with-results{
	margin:20px;
}
.oaklores-search {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 720px;

    background: #fff;

    border: 1px solid #d7dce3;
    border-radius: 999px;

    overflow: hidden;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.oaklores-search:focus-within {
    border-color: #1f6feb;
    box-shadow: 0 0 0 3px rgba(31,111,235,.14);
}

.oaklores-search-input {
    flex: 1 !important;

    min-width: 0 !important;

    padding: 14px 20px !important;

    border: none !important;
    outline: none !important;

    background: transparent !important;

    font-size: 15px !important;
    line-height: 1.4 !important;
    color: #1f2937 !important;
}

.oaklores-search-input::placeholder {
    color: #9ca3af;
}

.oaklores-search-button {
    appearance: none;
    -webkit-appearance: none;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border: none;
    border-left: 1px solid #eceff3;

    background: transparent;

    color: #6b7280;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease;
}

.oaklores-search-button:hover {
    background: #f8fafc;
    color: #1f6feb;
}

.oaklores-search-button:active {
    background: #eef4ff;
}

.oaklores-search-button:focus-visible {
    outline: none;
}

.oaklores-search-button .dashicons {
    width: 20px;
    height: 20px;

    font-size: 20px;
    line-height: 20px;
}
.oaklores-search-hint {
    margin: 0 0 16px;
    padding: 10px 14px;

    font-size: 0.92rem;
    line-height: 1.5;
    color: #5f6b7a;

    background: #fafbfc;
    border: 1px solid #eef2f6;
    border-radius: 8px;
}

.oaklores-search-hint a {
    color: #2c6ecb;
    text-decoration: none;
    font-weight: 500;
}

.oaklores-search-hint a:hover {
    text-decoration: underline;
}