/* search.php — extracted 2026-05-04 */
/* XOTLIST SEARCH v5.0 — full dark, mobile-first, no overflow */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    overflow-x: hidden;
}

/* ── Page shell ── */
.search-page {
    background: #0d0d0f;
    color: #fff;
    min-height: 80vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ── Dark header override ── */
#masthead.site-header {
    background: #111 !important;
    border-bottom-color: rgba(255, 255, 255, 0.07) !important;
}
#masthead .site-header__bell,
#masthead .site-header__bookmark,
#masthead .site-header__search-btn,
#masthead .site-header__account-btn {
    color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
#masthead .site-header__nav a {
    color: rgba(255, 255, 255, 0.55);
}
#masthead .site-header__nav a:hover,
#masthead .site-header__nav a.current-cat {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}
#masthead.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
}

/* ── Hero ── */
.search-hero {
    background: #0d0d0f;
    padding: 2rem 1rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.search-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 100vw);
    height: min(700px, 100vw);
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--color-accent) 7%, transparent) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.search-hero__inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.search-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}
.search-hero__eyebrow-label {
    font-size: 0.53rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
}
.search-hero__eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(90deg, var(--color-gold), #ffdb6b);
    color: #000;
    font-size: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
}

/* ── Search form ── */
.search-live-wrap {
    position: relative;
    z-index: 600;
}
.search-hero__form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s;
    width: 100%;
}
.search-hero__form:focus-within {
    border-color: rgba(255, 255, 255, 0.25);
}
.search-hero__form > svg {
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}
.search-hero__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: transparent !important;
    letter-spacing: -0.5px;
    caret-color: var(--color-accent);
    appearance: none;
    border-radius: 0;
}
.search-hero__input:-webkit-autofill,
.search-hero__input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    box-shadow: 0 0 0 1000px #0d0d0d inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
.search-hero__input::placeholder {
    color: rgba(255, 255, 255, 0.18);
    font-weight: 400;
}
.search-hero__input::-webkit-search-cancel-button,
.search-hero__input::-webkit-search-decoration,
.search-hero__input::-ms-clear,
.search-hero__input::-ms-reveal {
    display: none;
    appearance: none;
}
.search-hero__actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}
.search-hero__icon-btn {
    background: rgba(255, 255, 255, 0.07);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition:
        background 0.15s,
        color 0.15s;
    flex-shrink: 0;
}
.search-hero__icon-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}
.search-hero__icon-btn.saved {
    background: rgba(201, 162, 39, 0.3);
    color: #ffdb6b;
}
.search-hero__icon-btn.listening {
    background: color-mix(in srgb, var(--color-accent) 30%, transparent);
    color: var(--color-accent);
    animation: mic-pulse 1.2s ease-in-out infinite;
}
.search-hero__icon-btn.hidden {
    display: none;
}

@keyframes mic-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-accent) 40%, transparent);
    }
    50% {
        box-shadow: 0 0 0 8px color-mix(in srgb, var(--color-accent) 0%, transparent);
    }
}

/* ── Status bar ── */
.search-hero__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    min-height: 36px;
    gap: 0.75rem;
}
.search-hero__count {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.28);
    flex: 1;
    min-width: 0;
}
.search-hero__count strong {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}
.search-hero__count a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.62rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.search-hero__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.search-hero__shortcut {
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    display: none;
    align-items: center;
    gap: 0.3rem;
}
.search-hero__help-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.65rem;
    cursor: pointer;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-family: inherit;
    transition: all 0.15s;
    display: none;
}

@media (min-width: 768px) {
    .search-hero__help-btn {
        display: inline-block;
    }
}
.search-hero__help-btn:hover {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Tabs (type + category) ── */
.search-type-bar,
.search-cat-bar {
    background: #0d0d0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    width: 100%;
    overflow: hidden;
}
.search-type-bar--hidden,
.search-cat-bar--hidden {
    display: none;
}
.search-type-bar__inner,
.search-cat-bar__inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0.5rem;
    gap: 0;
}
.search-type-bar__inner::-webkit-scrollbar,
.search-cat-bar__inner::-webkit-scrollbar {
    display: none;
}
.search-type-tab {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.3);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition:
        color 0.15s,
        border-color 0.15s;
    text-decoration: none;
}
.search-type-tab:hover {
    color: rgba(255, 255, 255, 0.65);
}
.search-type-tab.active {
    color: #fff;
    border-bottom-color: var(--color-accent);
}
.search-type-tab__count {
    font-size: 0.55rem;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.3);
    padding: 0.08rem 0.38rem;
    border-radius: 10px;
    font-weight: 800;
}
.search-type-tab.active .search-type-tab__count {
    background: color-mix(in srgb, var(--color-accent) 18%, transparent);
    color: var(--color-accent);
}
.search-cat-tab {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.63rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.28);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition:
        color 0.15s,
        border-color 0.15s;
    text-decoration: none;
}
.search-cat-tab:hover {
    color: rgba(255, 255, 255, 0.6);
}
.search-cat-tab.active {
    color: #fff;
    border-bottom-color: color-mix(in srgb, var(--color-accent) 60%, transparent);
}
.search-cat-tab__count {
    font-size: 0.54rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.25);
    padding: 0.07rem 0.35rem;
    border-radius: 8px;
    font-weight: 800;
}
.search-cat-tab.active .search-cat-tab__count {
    background: color-mix(in srgb, var(--color-accent) 12%, transparent);
    color: color-mix(in srgb, var(--color-accent) 80%, transparent);
}

/* ── Filter bar ── */
.search-filter-bar {
    background: #0d0d0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    overflow: visible;
}
.search-filter-bar--hidden {
    display: none;
}
.search-filter-bar__inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
}
.search-filter-bar__inner::-webkit-scrollbar {
    display: none;
}
.search-filter-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    margin: 0 0.15rem;
}

/* ── Filter pills ── */
.sfpill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.63rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}
.sfpill:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.sfpill svg {
    stroke: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: stroke 0.15s;
}
.sfpill:hover svg {
    stroke: rgba(255, 255, 255, 0.7);
}
.sfpill.active {
    background: color-mix(in srgb, var(--color-accent) 20%, transparent);
    color: #ff8087;
    border-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
}
.sfpill.active svg {
    stroke: #ff8087;
}
.sfpill__chevron {
    opacity: 0.45;
}
.sfpill__x {
    display: none;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.5rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s;
}
.sfpill.active .sfpill__x {
    display: inline-flex;
}
.sfpill.active .sfpill__x:hover {
    background: rgba(255, 255, 255, 0.3);
}
.sfpill.active .sfpill__chevron {
    display: none;
}
.sfpill--premium.active {
    background: linear-gradient(90deg, var(--color-gold), #e8b84b);
    color: #000;
    border-color: var(--color-gold);
}
.sfpill--premium.active svg {
    stroke: #000;
}
.sfpill--premium.active .sfpill__x {
    background: rgba(0, 0, 0, 0.15);
    color: #000;
}
.sfpill--view {
    padding: 0.3rem 0.55rem;
}

/* ── Filter dropdowns ── */
.sfpill-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    background: #1c1c22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
        opacity 0.15s,
        transform 0.15s;
}
.sfpill-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.sfpill-dropdown__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    font-size: 0.73rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.1s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    text-decoration: none;
}
.sfpill-dropdown__item:last-child {
    border-bottom: none;
}
.sfpill-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.07);
}
.sfpill-dropdown__item.selected {
    color: var(--color-accent);
    font-weight: 800;
}
.sfpill-dropdown__item.selected::after {
    content: "✓";
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--color-accent);
}
.sfpill-dropdown__clear {
    color: #ff6b74 !important;
}
.sfpill-dropdown__head {
    padding: 0.5rem 1rem 0.3rem;
    font-size: 0.57rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sfpill-dropdown__date-range {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sfpill-dropdown__date-range label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.3rem;
}
.sfpill-dropdown__date-range input[type="date"] {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: #252530;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
    margin-bottom: 0.5rem;
}
.sfpill-dropdown__date-range input[type="date"]:focus {
    border-color: var(--color-accent);
}
.sfpill-date-apply {
    width: 100%;
    padding: 0.4rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.sfpill-date-apply:hover {
    background: #d94068;
}
.sfpill-dropdown__tags {
    padding: 0.65rem 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: 260px;
}
.sfpill-tag {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.63rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.12s;
    white-space: nowrap;
}
.sfpill-tag:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.sfpill-tag.selected {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.search-filter-bar__clear {
    display: none;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-accent);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.search-filter-bar__clear.show {
    display: flex;
}
.search-filter-bar__clear:hover {
    color: #ff6b74;
}

/* Active filter chips */
.search-active-filters {
    display: none;
    max-width: 780px;
    margin: 0 auto;
    padding: 0.4rem 1rem 0;
    gap: 0.35rem;
    flex-wrap: wrap;
    align-items: center;
}
.search-active-filters.show {
    display: flex;
}
.saf-label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.2);
}
.saf-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.6rem 0.2rem 0.7rem;
    border-radius: 100px;
    font-size: 0.62rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}
.saf-chip:hover {
    background: rgba(255, 255, 255, 0.16);
}
.saf-chip__x {
    font-size: 0.55rem;
    opacity: 0.4;
    transition: opacity 0.15s;
    margin-left: 1px;
}
.saf-chip:hover .saf-chip__x {
    opacity: 0.8;
}

/* ── Toolbar ── */
.search-toolbar {
    max-width: 780px;
    margin: 0 auto;
    padding: 0.8rem 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    min-height: 38px;
    flex-wrap: wrap;
    width: 100%;
}
.search-toolbar--hidden {
    display: none;
}
.search-result-count {
    font-size: 0.67rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}
.search-result-count strong {
    color: rgba(255, 255, 255, 0.65);
}
.search-toolbar__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

@media (max-width: 520px) {
    .search-sort__label {
        display: none;
    }
    .search-save-btn span {
        display: none;
    }
    .search-save-btn {
        padding: 0.28rem 0.45rem;
    }
    .search-toolbar {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}
.search-sort__label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
}
.search-sort__select {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.32rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    background: #1a1a22;
    cursor: pointer;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}
.search-sort__select:focus {
    border-color: rgba(255, 255, 255, 0.3);
}
.search-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
}
.search-save-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.search-save-btn.saved {
    background: rgba(201, 162, 39, 0.2);
    color: #ffdb6b;
    border-color: rgba(201, 162, 39, 0.4);
}
.search-view-toggle {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

/* ── Results body ── */
.search-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 1.25rem 1rem 6rem;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}
.search-section-hd {
    font-size: 0.57rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-section-hd::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

/* ── Result cards (list view) — v10 (root cause: nested <a> fixed) ── */
.search-results {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.search-result {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto;
    gap: 1.1rem;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: #fff;
    width: 100%;
}
.search-result:first-child {
    padding-top: 0;
}
.search-result:last-child {
    border-bottom: none;
}
.search-result:hover .search-result__title {
    color: var(--color-accent);
}
.search-result__rank {
    display: none;
}
.search-result__img {
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
}
.search-result__img figure {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.search-result__img img,
.search-result__img figure img,
.search-result__img picture img,
.search-result__img .wp-post-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}
.search-result:hover .search-result__img img,
.search-result:hover .search-result__img figure img {
    transform: scale(1.04);
}
.search-result__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow: hidden;
}
.search-result__tags {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin: 0;
}
.search-result__cat {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    white-space: nowrap;
}
.search-result__type-badge {
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.12rem 0.42rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.search-result__type-badge--chart {
    background: var(--color-accent);
}
.search-result__type-badge--concert {
    background: #1db954;
    color: #000;
}
.search-result__type-badge--podcast {
    background: #8b5cf6;
}
.search-result__premium-badge {
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.12rem 0.42rem;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-gold), #e8b84b);
    color: #000;
}
.search-result__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    transition: color 0.15s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-result__excerpt {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-result__snippet {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.4em;
    font-style: italic;
    border-left: 2px solid color-mix(in srgb, var(--color-accent) 50%, transparent);
    padding-left: 0.6rem;
}
.search-result__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.15rem 0 0;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}
.search-result__meta-sep {
    color: rgba(255, 255, 255, 0.15);
}
.search-result__author-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.15s;
}
.search-result__author-link:hover {
    color: var(--color-accent);
}
.search-result__cpt-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}
.search-result__cpt-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.13rem 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
}
.search-highlight {
    background: color-mix(in srgb, var(--color-accent) 18%, transparent);
    color: #ff8087;
    border-radius: 2px;
    padding: 0 1px;
    font-style: normal;
}

/* ── List items inside grid container — reset to block ── */
.search-results--grid .search-result {
    display: flex !important;
    flex-direction: column !important;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    gap: 0.5rem;
}
.search-results--grid .search-result__img {
    width: 100% !important;
    min-width: 100% !important;
    height: 160px !important;
    border-radius: 6px;
    margin-bottom: 0;
    flex: none !important;
}
.search-results--grid .search-result__rank {
    display: none;
}
.search-results--grid .search-result__body {
    gap: 0.25rem;
}
.search-results--grid .search-result__excerpt {
    display: none;
}
.search-results--grid .search-result__cpt-meta {
    display: none;
}
.search-results--grid .search-result__title {
    font-size: 0.82rem;
}
.search-results--grid .search-result__meta {
    font-size: 0.6rem;
}

/* ── Grid view ── */
.search-results--grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    align-items: start;
}

@media (max-width: 900px) {
    .search-results--grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .search-results--grid {
        grid-template-columns: 1fr;
    }
}
/* Grid card — completely independent, no conflict with search-result */
.sr-gc {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.sr-gc:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}
/* Image */
.sr-gc__img {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}
.sr-gc__img img,
.sr-gc__img figure,
.sr-gc__img figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.4s ease;
}
.sr-gc:hover .sr-gc__img img,
.sr-gc:hover .sr-gc__img figure img {
    transform: scale(1.04);
}
.sr-gc__img-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.08);
}
/* Body */
.sr-gc__body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.75rem 0.8rem 0.8rem;
    flex: 1;
}
.sr-gc__tags {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.sr-gc__cat {
    font-size: 0.53rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
}
.sr-gc__type {
    font-size: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.1rem 0.38rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.sr-gc__type--chart {
    background: var(--color-accent);
}
.sr-gc__type--concert {
    background: #1db954;
    color: #000;
}
.sr-gc__type--podcast {
    background: #8b5cf6;
}
.sr-gc__prem {
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 3px;
    padding: 0.1rem 0.38rem;
}
.sr-gc__title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sr-gc:hover .sr-gc__title {
    color: var(--color-accent);
}
.sr-gc__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.28rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    margin-top: auto;
    padding-top: 0.3rem;
}
.sr-gc__sep {
    color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 640px) {
    .search-results--grid {
        grid-template-columns: 1fr;
    }
    /* Filter bar mobile — tighter pills, reduced padding */
    .search-filter-bar {
        padding: 0 0.5rem;
    }
    .search-type-bar,
    .search-cat-bar {
        padding: 0;
    }
    .sfpill {
        padding: 0.25rem 0.55rem;
        font-size: 0.58rem;
        gap: 0.22rem;
    }
    .sfpill svg {
        width: 10px;
        height: 10px;
    }
    .search-type-tab,
    .search-cat-tab {
        padding: 0.65rem 0.5rem;
        font-size: 0.6rem;
        gap: 0.2rem;
        letter-spacing: 0;
    }
    /* Dropdowns on mobile — full width pinned inside screen */
    .sfpill-dropdown {
        min-width: 0;
    }
}

@media (max-width: 380px) {
    .sfpill {
        padding: 0.22rem 0.45rem;
        font-size: 0.55rem;
    }
    .search-filter-bar__inner {
        gap: 0.25rem;
    }
}

/* ── Tags / topics / related ── */
.search-tag-cloud,
.search-related,
.search-trending-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.search-tag-pill,
.search-related-pill,
.search-topic-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.15s;
}
.search-tag-pill:hover,
.search-related-pill:hover,
.search-topic-pill:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}
.search-tag-pill__count {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* ── Recent searches ── */
.search-recents {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.search-recent-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.search-recent-item:last-child {
    border-bottom: none;
}
.search-recent-item__icon {
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}
.search-recent-item__text {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.15s;
}
.search-recent-item:hover .search-recent-item__text {
    color: #fff;
}
.search-recent-item__del {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.15s;
    font-size: 0.7rem;
}
.search-recent-item__del:hover {
    color: var(--color-accent);
}

/* ── Skeleton ── */
.search-skeleton {
    display: none;
    flex-direction: column;
}
.search-skeleton.show {
    display: flex;
}
.search-skel-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes xot-shimmer {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.55;
    }
}
.search-skel-img {
    width: 88px;
    height: 60px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    animation: xot-shimmer 1.5s ease-in-out infinite;
}
.search-skel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2px;
}
.search-skel-line {
    height: 11px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: xot-shimmer 1.5s ease-in-out infinite;
}

/* ── Empty / error states ── */
.search-empty {
    text-align: center;
    padding: 3rem 1rem;
}
.search-empty__icon {
    font-size: 2.5rem;
    margin-bottom: 0.85rem;
    opacity: 0.3;
}
.search-empty__title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.4rem;
}
.search-empty__text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}
.search-empty__term {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0.1rem 0.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}
.search-empty__suggestion {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}
.search-empty__suggestion a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ── Pagination / load more ── */
.search-pagination {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.15s;
}
.search-pagination .page-numbers:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.search-pagination .page-numbers.current {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.xot-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.6rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-family: inherit;
    transition:
        background 0.15s,
        transform 0.15s;
}
.xot-loadmore-btn:hover {
    background: #d94068;
    transform: translateY(-1px);
}

/* ── Live search dropdown ── */
.search-live {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 9000;
    background: #161820;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
    max-height: 420px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.search-live.show {
    display: block;
}
.search-live__header {
    padding: 0.5rem 1.2rem 0.25rem;
    font-size: 0.53rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.22);
}
.search-live__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1.2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.1s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.search-live__item:last-child {
    border-bottom: none;
}
.search-live__item:hover,
.search-live__item.focused {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}
.search-live__img {
    width: 46px;
    height: 32px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}
.search-live__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.search-live__body {
    flex: 1;
    min-width: 0;
}
.search-live__cat {
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    display: block;
}
.search-live__title {
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-live__footer {
    padding: 0.6rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-live__see-all {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
}
.search-live__see-all:hover {
    color: #ff6b74;
}
.search-live__kbd-hint {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.18);
    display: flex;
    gap: 0.3rem;
    align-items: center;
}
.search-live__kbd-hint kbd {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 0.1rem 0.3rem;
    font-family: inherit;
    font-size: 0.52rem;
}
.search-live__no-results {
    padding: 1.25rem 1.2rem;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
}

/* ── Voice overlay ── */
.xot-voice-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}
.xot-voice-overlay.show {
    display: flex;
}
.xot-voice-overlay__rings {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.xot-voice-overlay__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-accent) 12%, transparent);
    animation: voice-ring 2s ease-out infinite;
}
.xot-voice-overlay__ring:nth-child(2) {
    animation-delay: 0.5s;
}
.xot-voice-overlay__ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes voice-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
.xot-voice-overlay__mic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.xot-voice-overlay__text {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
.xot-voice-overlay__live {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    min-height: 1.2em;
}
.xot-voice-overlay__cancel {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 0.15s;
}
.xot-voice-overlay__cancel:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ── Shortcuts panel ── */
.xot-shortcuts-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.xot-shortcuts-overlay.show {
    display: flex;
}
.xot-shortcuts-panel {
    background: #1a1a22;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem;
    min-width: 300px;
    max-width: 420px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
.xot-shortcuts-panel h3 {
    margin: 0 0 1.1rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
}
.xot-shortcut-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.xot-shortcut-row:last-child {
    border-bottom: none;
}
.xot-shortcut-row span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}
.xot-shortcut-row div {
    display: flex;
    gap: 0.25rem;
}
.xot-shortcut-row kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
}
.xot-shortcuts-close {
    margin-top: 1.25rem;
    width: 100%;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.4);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}
.xot-shortcuts-close:hover {
    background: rgba(255, 255, 255, 0.13);
}

/* ── Responsive — tablet ── */
@media (min-width: 640px) {
    .search-hero {
        padding: 2.5rem 1.5rem 0;
    }
    .search-result__excerpt {
        display: -webkit-box;
    }
    .search-hero__shortcut {
        display: flex;
    }
    /* .search-result__img sizing now defined at the base rule (200×130) — no override */
    .search-result.has-rank {
        padding-left: 0.5rem;
    }
    .search-results--grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (min-width: 900px) {
    .search-hero {
        padding: 3rem 2rem 0;
    }
    .search-type-bar,
    .search-cat-bar,
    .search-filter-bar {
        padding: 0 2rem;
    }
    .search-toolbar {
        padding: 0.9rem 2rem 0;
    }
    .search-body {
        padding: 1.5rem 2rem 6rem;
    }
    .search-active-filters {
        padding: 0.4rem 2rem 0;
    }
}

/* ── Mobile search fixes ── */
@media (max-width: 639px) {
    /* Mobile mode disabled in v22 — was fighting the desktop grid in unexpected ways. */
    .search-result__title {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
    }
    .search-result__meta {
        flex-wrap: wrap;
    }

    /* Grid view on mobile — single column cards */
    .search-results--grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    .search-results--grid .search-result {
        flex-direction: row !important;
        gap: 0.6rem !important;
        padding: 0.6rem !important;
    }
    .search-results--grid .search-result__img {
        width: 80px !important;
        min-width: 80px !important;
        height: 80px !important;
        border-radius: 8px !important;
    }

    /* View toggle — more visible */
    .sfpill--view {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    .sfpill--view svg {
        stroke: rgba(255, 255, 255, 0.6) !important;
    }
    .sfpill--view.active {
        background: color-mix(in srgb, var(--color-accent) 25%, transparent) !important;
        border-color: color-mix(in srgb, var(--color-accent) 50%, transparent) !important;
    }
    .sfpill--view.active svg {
        stroke: #ff8087 !important;
    }

    /* Search body padding for bottom nav */
    .search-body {
        padding-bottom: 5rem !important;
    }

    /* Search hero compact */
    .search-hero {
        padding: 1.5rem 1rem 0;
    }
    .search-hero__input {
        font-size: 1.2rem !important;
    }
    .search-toolbar {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   v5.17.E — Categorized search sections
═══════════════════════════════════════════════════════════════════ */
.search-results-categorized {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.search-cat {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.search-cat__head {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.search-cat__title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
}
.search-cat__count {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-muted, rgba(255, 255, 255, 0.5));
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
}
.search-cat__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.search-cat__list--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.search-result__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.02em;
}
