/* ============================================================
   findcreator-redesign.css — /findcreator
   Photo-first creator discovery — dark cinematic layout
   ============================================================ */

html.fc-preview-suppressed #fc-preview-backdrop { display: none !important; }

/* Window is the only scroller (body must not become one — that breaks sticky).
   auto (not smooth) so shrinking the title cannot fight a smooth scroll adjustment. */
html.fc-findcreator-page:not(.ff-overlay-noscroll) {
    overflow-x: clip;
    overflow-y: auto !important;
    height: auto !important;
    scroll-behavior: auto;
}

html.fc-findcreator-page:not(.ff-overlay-noscroll) body {
    overflow: visible !important;
    height: auto !important;
}

html.fc-findcreator-page.ff-overlay-noscroll,
html.fc-findcreator-page.ff-overlay-noscroll body {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

html.fc-findcreator-page .wrapper {
    overflow: visible !important;
    min-height: 100vh;
}

/* ── Page canvas ──────────────────────────────────────────── */
.findcreator-page.ff-content {
    position: relative;
    background: var(--cnt-bg);
    min-height: 100vh;
    padding-top: 56px;
    font-family: 'Poppins', sans-serif;
    overflow: visible !important;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .findcreator-page.ff-content {
        margin-left: var(--sidebar-w, 56px);
        width: calc(100% - var(--sidebar-w, 56px));
        transition: margin-left 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 768px) {
    .findcreator-page.ff-content {
        margin-left: 0;
        width: 100%;
        padding-bottom: 70px;
    }
}

.findcreator-page .ff-content-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 32px 48px;
}

/* ── Sticky hero + search (native sticky — stays in document flow) ── */
.fc-sticky-head {
    --fc-topbar-h: 56px;
    position: sticky;
    top: var(--fc-topbar-h);
    z-index: 85;
    margin: 0 0 18px;
    padding: 0 0 4px;
    background: var(--cnt-bg);
    isolation: isolate;
    overflow-anchor: none;
    transition: padding 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-sticky-head::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: -28px;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: var(--cnt-bg);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: top 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease, box-shadow 0.35s ease,
                backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.fc-sticky-head.fc-sticky-head--scrolled {
    padding: 10px 0 12px;
}

.fc-sticky-head.fc-sticky-head--scrolled::before {
    top: 0;
    border-bottom-color: var(--bdr);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px) saturate(1.12);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

html.light .fc-sticky-head.fc-sticky-head--scrolled::before {
    box-shadow: 0 6px 22px rgba(16, 24, 40, 0.08);
}

/* Hero headline — shrinks (stays visible) when the bar pins */
.fc-page-header {
    margin-bottom: 24px;
    margin-top: 0;
    transition: margin-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-sticky-head--scrolled .fc-page-header {
    margin-bottom: 8px;
}

.findcreator-page .fc-page-header .fc-hero-title,
.findcreator-page h1.fc-hero-title {
    font-size: clamp(1.35rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #FF2F86 !important;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0;
    max-width: 820px;
    transition: font-size 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                letter-spacing 0.28s ease,
                line-height 0.28s ease;
}

.findcreator-page .fc-sticky-head--scrolled .fc-page-header .fc-hero-title,
.findcreator-page .fc-sticky-head--scrolled h1.fc-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

body.ff-dark .findcreator-page h1.fc-hero-title,
body.fp-light .findcreator-page h1.fc-hero-title {
    color: #FF2F86 !important;
}

.fc-search-section {
    position: relative;
    z-index: 1;
}

/* ── Unified search toolbar ─────────────────────────────────── */
.fc-toolbar {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
    background: var(--inp);
    border: 1px solid var(--inp-b);
    border-radius: 12px;
    overflow: visible;
    min-height: 52px;
    transition: min-height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-sticky-head--scrolled .fc-toolbar {
    min-height: 42px;
}

html.light .fc-toolbar {
    background: #fff;
    border-color: #dfe2e9;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}

.fc-filter-btn {
    flex-shrink: 0;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-right: 1px solid var(--inp-b);
    color: var(--t3);
    cursor: pointer;
    transition: color 0.15s, background 0.15s, width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-sticky-head--scrolled .fc-filter-btn {
    width: 42px;
}

.fc-filter-btn:hover,
.fc-filter-btn.is-active {
    color: var(--pink);
    background: rgba(224, 51, 107, 0.06);
}

html.light .fc-filter-btn {
    border-right-color: #eceef3;
}

.fc-toolbar-place {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

.fc-toolbar-query {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 0;
}

.fc-toolbar-search {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    position: relative;
}

.fc-country-wrap {
    position: relative;
    flex-shrink: 0;
}

.fc-location-btn {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 220px;
    height: 50px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--inp-b);
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--t1);
    font-size: 13px;
    font-family: inherit;
    transition: color 0.15s, background 0.15s, height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.fc-sticky-head--scrolled .fc-location-btn {
    height: 40px;
}

html.light .fc-location-btn {
    border-right-color: #eceef3;
}

.fc-location-btn:hover,
.fc-location-btn.is-open,
.fc-location-btn.has-place {
    color: var(--pink);
    background: rgba(224, 51, 107, 0.04);
}

.fc-loc-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--pink);
}

.fc-location-text {
    font-weight: 600;
    font-size: 13px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-country-btn {
    height: 50px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--inp-b);
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--t1);
    font-size: 13px;
    font-family: inherit;
    transition: color 0.15s, background 0.15s, height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.fc-sticky-head--scrolled .fc-country-btn {
    height: 40px;
}

html.light .fc-country-btn {
    border-right-color: #eceef3;
}

.fc-country-btn:hover,
.fc-country-btn.is-open {
    color: var(--pink);
    background: rgba(224, 51, 107, 0.04);
}

.fc-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 16px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.fc-country-globe,
.fc-country-item-globe {
    font-size: 16px;
    line-height: 1;
}

.fc-country-code {
    font-weight: 600;
    font-size: 13px;
}

.fc-country-flag-img,
.fc-country-item-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.fc-country-item-flag {
    width: 22px;
    height: 16px;
    flex-shrink: 0;
}

.fc-country-item-name {
    flex: 1;
    min-width: 0;
}

.fc-country-item-code {
    font-size: 11px;
    color: var(--t4);
    font-weight: 600;
}

.fc-country-item-check {
    flex-shrink: 0;
}

.fc-country-search-wrap {
    padding: 10px 10px 8px;
    border-bottom: 1px solid var(--bdr);
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 1;
}

.fc-country-search {
    width: 100%;
    height: 36px;
    border: 1px solid var(--inp-b);
    border-radius: 8px;
    background: var(--inp);
    color: var(--t1);
    font-size: 13px;
    font-family: inherit;
    padding: 0 12px;
}

.fc-country-search:focus {
    outline: none;
    border-color: var(--pink);
}

.fc-country-menu-list {
    max-height: 280px;
    overflow-y: auto;
}

.fc-country-empty {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--t4);
}

.fc-country-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--surface);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    overflow: hidden;
    z-index: 300;
    min-width: 260px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.fc-country-menu.is-open { display: block; }

.fc-country-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    transition: background 0.1s;
    color: var(--t2);
}

.fc-country-item:hover { background: var(--hov); }

.fc-country-item.is-selected {
    color: var(--pink);
    font-weight: 600;
}

.fc-search-icon {
    display: none;
}

.fc-search-input {
    flex: 1;
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    padding: 0 42px 0 12px;
    color: var(--t1);
    font-size: 14px;
    font-family: inherit;
    transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-sticky-head--scrolled .fc-search-input {
    height: 40px;
}

.fc-search-input::placeholder { color: var(--t4); }

.fc-search-input:focus {
    outline: none;
}

.fc-search-clear {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pbg);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fc-search-clear.is-visible { display: flex; }

.fc-search-clear:hover { background: var(--bdr); }

.fc-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 40;
    max-height: 280px;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    padding: 6px;
}

.fc-suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.fc-suggest-item:hover,
.fc-suggest-item.is-active {
    background: rgba(224, 51, 107, 0.14);
    color: #fff;
}

.fc-suggest-label {
    flex: 1;
    min-width: 0;
    font-weight: 600;
}

.fc-suggest-kind {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

html.light .fc-suggest-item,
html.light .fc-suggest-item:hover,
html.light .fc-suggest-item.is-active {
    color: #0a3049;
}

html.light .fc-suggest-kind {
    color: #3a6b82;
}

.fc-filters-open-btn {
    flex-shrink: 0;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    background: var(--pink);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s, padding 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-sticky-head--scrolled .fc-filters-open-btn {
    padding: 0 16px;
}

.fc-filters-open-btn:hover {
    background: var(--pink-hover);
    box-shadow: 0 4px 16px rgba(224, 51, 107, 0.35);
}

/* ── Filter sidebar ─────────────────────────────────────────── */
body.fc-filter-open,
body.fc-location-open {
    overflow: hidden;
}

.fc-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.fc-filter-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.fc-filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 92vw;
    height: 100vh;
    z-index: 9001;
    background: var(--surface);
    border-left: 1px solid var(--bdr);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.fc-filter-sidebar.is-open {
    transform: translateX(0);
}

.fc-location-sidebar {
    left: 0;
    right: auto;
    border-left: none;
    border-right: 1px solid var(--bdr);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(-100%);
}

.fc-location-sidebar.is-open {
    transform: translateX(0);
}

.fc-loc-hint,
.fc-loc-empty {
    padding: 8px 2px 16px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--t4);
}

.fc-loc-group {
    margin: 0 0 18px;
}

.fc-loc-group-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--t4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.fc-loc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fc-loc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 8px 2px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: transparent;
    color: var(--t1);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.fc-loc-row:hover,
.fc-loc-row.is-active {
    color: var(--pink);
}

.fc-loc-row-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc-loc-row-meta {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--t4);
}

html.light .fc-loc-row {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.fc-filter-stack {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fc-filter-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
}

.fc-filter-panel--main {
    transform: translateX(0);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-filter-panel--sub {
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.fc-filter-sidebar.is-subopen .fc-filter-panel--main {
    transform: translateX(-28%);
}

.fc-filter-sidebar.is-subopen .fc-filter-panel--sub {
    transform: translateX(0);
}

.fc-filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 10px 4px 10px 2px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: transparent;
    color: var(--t1);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.18s ease, color 0.18s ease;
}

.fc-filter-row:last-child {
    border-bottom: none;
}

.fc-filter-row:hover {
    opacity: 0.72;
    color: var(--pink);
    background: transparent;
    transform: none;
}

.fc-filter-row.has-picks {
    background: transparent;
    color: var(--t1);
}

.fc-filter-row.has-picks .fc-filter-row-label {
    color: var(--pink);
}

.fc-filter-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 22px 12px;
}

.fc-filter-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 22px 22px 18px;
    flex-shrink: 0;
}

.fc-filter-sidebar-title,
body.ff-dark .fc-filter-sidebar h2,
body.ff-dark h2.fc-filter-sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff !important;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
    flex: 1;
    min-width: 0;
}

.fc-filter-sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
}

.fc-filter-back {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--t2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    margin: -4px 0 6px -6px;
}

.fc-filter-back:hover {
    color: var(--pink);
    background: rgba(224, 51, 107, 0.08);
}

.fc-filter-panel--sub .fc-filter-sidebar-title {
    font-size: 20px;
}

.fc-filter-close {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.fc-filter-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--t3);
    border-radius: 1px;
}

.fc-filter-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.fc-filter-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.fc-filter-close:hover span { background: var(--pink); }

.fc-filter-section {
    margin-bottom: 20px;
}

.fc-filter-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--t4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fc-sort-select {
    width: 100%;
    height: 42px;
    border: 1px solid var(--inp-b);
    border-radius: 8px;
    background: var(--inp);
    color: var(--t1);
    font-size: 14px;
    font-family: inherit;
    padding: 0 12px;
}

.fc-filter-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fc-filter-row-label {
    font-size: 15px;
    font-weight: 500;
    flex-shrink: 0;
    color: #fff;
}

.fc-filter-row-value {
    margin-left: auto;
    min-width: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--pink);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 46%;
}

.fc-filter-row-chevron {
    flex-shrink: 0;
    color: var(--t4);
}

.fc-filter-row:hover .fc-filter-row-chevron {
    color: var(--pink);
}

.fc-filter-sub-search-wrap {
    padding: 0 22px 12px;
    flex-shrink: 0;
}

.fc-filter-sub-search {
    width: 100%;
    height: 40px;
    border: 1px solid var(--inp-b);
    border-radius: 8px;
    background: var(--inp);
    color: var(--t1);
    font-size: 14px;
    font-family: inherit;
    padding: 0 12px;
}

.fc-filter-options {
    flex: 1;
    overflow-y: auto;
    padding: 0 10px 20px;
}

.fc-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid var(--bdr);
    border-radius: 0;
    background: transparent;
    color: var(--t2);
    font-family: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.fc-filter-option:last-child {
    border-bottom: none;
}

.fc-filter-option:hover {
    color: var(--t1);
    background: rgba(255, 255, 255, 0.03);
}

.fc-filter-option.is-on {
    color: #fff;
    background: rgba(224, 51, 107, 0.88);
    border-bottom-color: transparent;
    border-radius: 0;
}

.fc-filter-option-name {
    flex: 1;
    min-width: 0;
}

.fc-filter-option-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
}

.fc-filter-option.is-on .fc-filter-option-check {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
}

.fc-filter-opt-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t4);
    padding: 14px 12px 6px;
}

.fc-filter-option-check svg {
    display: block;
}

.fc-filter-row-value:empty {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .fc-filter-sidebar,
    .fc-filter-panel--main,
    .fc-filter-panel--sub {
        transition: none;
    }
}

.fc-filter-summary {
    font-size: 13px;
    color: var(--t3);
    line-height: 1.45;
    margin: 0;
}

.fc-filter-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 16px 22px 22px;
    border-top: 1px solid var(--bdr);
    flex-shrink: 0;
}

.fc-filter-apply {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: var(--pink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.fc-filter-apply:hover { background: var(--pink-hover); }

.fc-filter-reset {
    width: 100%;
    height: 40px;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    background: transparent;
    color: var(--t3);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

.fc-filter-reset:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* ── Popular chips ──────────────────────────────────────────── */
.fc-popular-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.fc-popular-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--t4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.fc-popular-chip {
    background: transparent;
    color: var(--t3);
    border: 1px solid var(--bdr);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.fc-popular-chip:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.fc-chip-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.fc-interpreted-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(224, 51, 107, 0.16);
    color: var(--pink);
    border: 1px solid rgba(224, 51, 107, 0.45);
    border-radius: 999px;
    padding: 4px 10px 4px 12px;
    font-size: 11.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.15s, border-color 0.15s;
}

.fc-interpreted-chip span {
    font-weight: 500;
    opacity: 0.7;
}

.fc-interpreted-chip.is-nice,
.fc-interpreted-chip.is-signal {
    background: rgba(224, 51, 107, 0.16);
    color: var(--pink);
    border-color: rgba(224, 51, 107, 0.45);
    font-weight: 600;
}

.fc-interpreted-chip.is-empty {
    background: rgba(255, 255, 255, 0.04);
    color: var(--t4);
    border-color: var(--bdr);
    opacity: 0.72;
}

.fc-location-note {
    margin-top: 4px;
    font-size: 12px;
    color: var(--t4);
    font-weight: 500;
}

.fc-card-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 7px;
    pointer-events: none;
}

.fc-tag-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    pointer-events: auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.fc-tag-chip.is-matched {
    background: rgba(224, 51, 107, 0.72);
    border: 1px solid rgba(255, 160, 190, 0.75);
    color: #fff;
    box-shadow: 0 0 14px rgba(224, 51, 107, 0.28);
}

.fc-tag-chip.is-related {
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 120, 168, 0.7);
    color: #fff;
}

.fc-tag-chip.is-other {
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-weight: 700;
}

.fc-interpreted-chip.is-relaxed {
    opacity: 0.55;
    background: transparent;
    color: var(--t4);
    border-style: dashed;
}

/* ── Result count ───────────────────────────────────────────── */
.fc-result-count {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--t4);
}

.fc-result-count strong {
    color: var(--t2);
    font-weight: 600;
}

.fc-result-count .fc-country-name {
    color: var(--pink);
    font-weight: 600;
}

.fc-popular-chip.is-active {
    background: rgba(224, 51, 107, 0.16);
    border-color: rgba(224, 51, 107, 0.55);
    color: var(--pink);
}

.fc-match-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 7px;
    pointer-events: none;
}

.fc-match-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(224, 51, 107, 0.28);
    border: 1px solid rgba(255, 120, 168, 0.62);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 0 14px rgba(224, 51, 107, 0.28);
}

.fc-match-hl {
    background: rgba(224, 51, 107, 0.42);
    color: inherit;
    border-radius: 3px;
    padding: 0 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.fc-peek-chip.is-match {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.fc-similar {
    margin-top: 8px;
    padding-top: 6px;
}

.fc-similar[hidden] {
    display: none !important;
}

.fc-similar-head {
    margin: 10px 0 12px;
}

.fc-similar-title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.fc-similar-sub {
    margin: 0;
    font-size: 13px;
    color: var(--t4);
    line-height: 1.4;
}

/* ── Creator grid — tight mosaic inside centered column ─────── */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    overflow: visible;
    padding: 4px 2px 14px;
}

/* Override global style.css .ff-creator-card { width: 180px } */
.findcreator-page .fc-grid .ff-creator-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    border: none;
    box-shadow: none;
    background: #1a1024;
    border-radius: 0 !important;
    overflow: visible;
    cursor: pointer;
    position: relative;
    aspect-ratio: 2 / 3;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    touch-action: manipulation;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.findcreator-page .fc-grid .ff-creator-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 6;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.38s ease;
}

.findcreator-page .fc-grid .ff-creator-card.is-highlighted,
.findcreator-page .fc-grid .ff-creator-card.is-peeking,
.findcreator-page .fc-grid .ff-creator-card:focus-within {
    z-index: 5;
}

.findcreator-page .fc-grid .ff-creator-card.is-highlighted::after,
.findcreator-page .fc-grid .ff-creator-card.is-peeking::after,
.findcreator-page .fc-grid .ff-creator-card:focus-within::after {
    box-shadow:
        inset 0 0 0 1px rgba(255, 47, 134, 0.55),
        0 0 0 1px rgba(255, 47, 134, 0.22),
        0 10px 28px rgba(0, 0, 0, 0.38),
        0 0 22px rgba(255, 47, 134, 0.14);
}

.findcreator-page .fc-grid .ff-creator-card.is-peeking::after {
    box-shadow:
        inset 0 0 0 1px rgba(255, 47, 134, 0.62),
        0 0 0 1px rgba(255, 47, 134, 0.28),
        0 14px 34px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(255, 47, 134, 0.18);
}

@media (hover: hover) and (pointer: fine) {
    .findcreator-page .fc-grid .ff-creator-card:hover,
    .findcreator-page .fc-grid .ff-creator-card.is-highlighted,
    .findcreator-page .fc-grid .ff-creator-card:focus-within {
        z-index: 5;
        transform: translateY(-3px) scale(1.016);
        filter: none;
        border-color: transparent;
    }

    .findcreator-page .fc-grid .ff-creator-card:hover::after,
    .findcreator-page .fc-grid .ff-creator-card.is-highlighted::after,
    .findcreator-page .fc-grid .ff-creator-card:focus-within::after {
        box-shadow:
            inset 0 0 0 1px rgba(255, 47, 134, 0.55),
            0 0 0 1px rgba(255, 47, 134, 0.22),
            0 10px 28px rgba(0, 0, 0, 0.38),
            0 0 22px rgba(255, 47, 134, 0.14);
    }

    .findcreator-page .fc-grid .ff-creator-card:hover .fc-photo-img,
    .findcreator-page .fc-grid .ff-creator-card.is-highlighted .fc-photo-img,
    .findcreator-page .fc-grid .ff-creator-card:focus-within .fc-photo-img {
        transform: none;
    }
}

.findcreator-page .fc-grid .ff-creator-card img,
.findcreator-page .fc-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: none;
    transform: scale(1);
    transform-origin: center 28%;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
}

.fc-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: inherit;
    overflow: hidden;
    outline: none;
}

.fc-card-link:focus-visible {
    outline: none;
}

.fc-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.fc-photo::before {
    content: none;
}

.fc-preview-text strong {
    color: var(--t1);
    font-weight: 600;
}

html.light .fc-preview-text strong {
    color: #0e1117;
}

.fc-photo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: -1px;
    background: linear-gradient(160deg, #2a1040 0%, #4a1040 50%, #1a2040 100%);
}

.fc-photo-scrim {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.fc-photo-dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.findcreator-page .fc-grid .ff-creator-card.is-highlighted .fc-photo-dim {
    opacity: 0.38;
}

.findcreator-page .fc-grid .ff-creator-card.is-peeking .fc-photo-dim {
    opacity: 0.72;
}

.findcreator-page .fc-grid .ff-creator-card.is-peeking .fc-photo-img,
.findcreator-page .fc-grid .ff-creator-card.is-peeking .fc-photo-fallback {
    filter: brightness(0.55);
}

.fc-card-top {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    pointer-events: none;
}

.fc-card-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 8px;
}

.fc-badge-online {
    margin-left: 0;
}

.fc-badge.fc-badge-online {
    background: rgba(6, 10, 6, 0.82);
    color: #7dff62;
    border: 1px solid #61cd24;
    border-radius: 999px;
    padding: 3px 8px 3px 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    gap: 6px;
    text-shadow: none;
    box-shadow: 0 0 10px rgba(97, 205, 36, 0.18);
}

.fc-online-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #61cd24;
    box-shadow: 0 0 6px 2px rgba(97, 205, 36, 0.7);
    animation: fc-online-pulse 1.6s ease-out infinite;
    flex-shrink: 0;
}

@keyframes fc-online-pulse {
    0% { box-shadow: 0 0 0 0 rgba(97, 205, 36, 0.75); }
    70% { box-shadow: 0 0 0 6px rgba(97, 205, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(97, 205, 36, 0); }
}

.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
    border-radius: 3px;
    pointer-events: none;
}

.fc-badge-verified {
    background: #ff2f86;
    font-size: 9px;
    letter-spacing: 0.03em;
    padding: 2px 6px 2px 3px;
}

.fc-badge-verified-short {
    display: none;
}

.fc-badge-verified-icon {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-badge-verified-icon svg {
    width: 8px;
    height: 8px;
    display: block;
}

.fc-badge-posts {
    background: #252525;
    font-size: 9px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    padding: 2px 6px;
    margin-left: auto;
}

.fc-badge-newpost {
    background: #1694e1;
    font-size: 9.5px;
    letter-spacing: 0.03em;
    padding: 3px 7px;
    margin-left: auto;
}

.fc-badge-new {
    background: #fe7e22;
    font-size: 9.5px;
    letter-spacing: 0.04em;
    padding: 3px 7px;
}

.fc-photo-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin-bottom: 4px;
}

.fc-photo-ident {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    gap: 6px;
}

.fc-photo-name-group {
    display: flex;
    align-items: baseline;
    min-width: 0;
    overflow: hidden;
}

.fc-photo-ident .fc-online-dot {
    margin-left: 0;
}

.fc-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #61cd24;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.findcreator-page .fc-grid .ff-creator-card.is-peeking .fc-card-top {
    opacity: 0;
}

.fc-photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 10px 12px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
}

.fc-photo-base {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fc-card-peek {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 12px 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.fc-card-peek-inner {
    min-height: 0;
}

.findcreator-page .fc-grid .ff-creator-card.is-peeking .fc-card-peek {
    opacity: 1;
    visibility: visible;
}

.fc-peek-bio,
body.ff-dark .fc-peek-bio,
body.ff-dark p.fc-peek-bio,
body.fp-light .fc-peek-bio,
body.fp-light p.fc-peek-bio,
.findcreator-page p.fc-peek-bio {
    margin: 0 0 8px;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.65);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.fc-peek-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 2px;
}

.fc-peek-tags:empty {
    display: none;
}

.fc-peek-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.fc-peek-chip--vibe {
    background: #d40086;
    border-color: #ff4fb3;
    color: #fff;
}

.fc-peek-chip--scene {
    background: #7a00c9;
    border-color: #b44dff;
    color: #fff;
}

.fc-peek-chip--look {
    background: #0a8f74;
    border-color: #3dffd4;
    color: #fff;
}

.fc-peek-chip--energy {
    background: #b88600;
    border-color: #ffd84a;
    color: #fff;
}

.fc-peek-chip--live {
    background: rgba(97, 205, 36, 0.18);
    border-color: rgba(97, 205, 36, 0.38);
}

.fc-peek-chip--live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #61cd24;
    box-shadow: 0 0 0 3px rgba(97, 205, 36, 0.18);
    flex-shrink: 0;
}

.fc-photo-name {
    font-weight: 700;
    font-size: 23px;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.fc-photo-age {
    flex-shrink: 0;
    font-weight: 650;
    font-size: 23px;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.fc-verified-tick {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff2f86;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.28);
}

.fc-verified-tick svg {
    display: block;
}

.fc-photo-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.fc-photo-handle {
    display: none;
}

/* ── Empty state ────────────────────────────────────────────── */
.fc-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 0;
    text-align: center;
}

.fc-empty.is-visible { display: flex; }

.fc-empty.is-compact {
    padding: 22px 0 10px;
}

.fc-empty.is-compact .fc-empty-icon {
    display: none;
}

.fc-empty.is-compact .fc-empty-btn {
    margin-bottom: 4px;
}

.fc-empty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--bdr);
}

.fc-empty-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--t3);
    margin-bottom: 4px;
}

.fc-empty-sub {
    font-size: 12px;
    color: var(--t4);
    margin-bottom: 16px;
}

.fc-empty-btn {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.fc-empty-btn:hover { background: var(--pink-hover); }

/* ── Preview notice modal ───────────────────────────────────── */
.fc-preview-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 8, 14, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.fc-preview-backdrop.is-hidden { display: none; }

.fc-preview-dialog {
    width: 100%;
    max-width: 400px;
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: fcPreviewIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fcPreviewIn {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.fc-preview-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--bdr);
}

.fc-preview-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--pink-tint);
    border: 1px solid var(--pink-tint-b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-preview-header-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--t1);
    letter-spacing: -0.4px;
    line-height: 1;
    margin: 0;
}

.fc-preview-body {
    padding: 28px 28px 24px;
    text-align: center;
}

.fc-preview-text {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.55;
    margin: 0 0 10px;
}

.fc-preview-live {
    font-size: 13px;
    font-weight: 600;
    color: var(--pink);
    margin: 0 0 24px;
}

.fc-preview-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-preview-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
}

.fc-preview-btn--primary {
    background: var(--pink);
    color: #fff;
}

.fc-preview-btn--primary:hover {
    background: var(--pink-hover);
    box-shadow: 0 4px 16px var(--pink-glow);
}

.fc-preview-btn--ghost {
    background: transparent;
    color: var(--t4);
    padding: 8px;
}

.fc-preview-btn--ghost:hover { color: var(--t2); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .fc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
    .findcreator-page .ff-content-inner {
        padding: 24px 24px 40px;
    }

    .fc-sticky-head::before {
        top: -24px;
    }

    .fc-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .fc-peek-bio {
        -webkit-line-clamp: 5;
        line-clamp: 5;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .findcreator-page .ff-content-inner {
        padding: 16px 14px 32px;
    }

    .fc-sticky-head {
        margin-bottom: 14px;
    }

    .fc-sticky-head::before {
        top: -16px;
    }

    .fc-page-header {
        margin-bottom: 16px;
    }

    .findcreator-page .fc-page-header .fc-hero-title,
    .findcreator-page h1.fc-hero-title {
        font-size: clamp(1.5rem, 5.8vw, 1.95rem);
        line-height: 1.3;
        letter-spacing: -0.02em;
        max-width: none;
    }

    .findcreator-page .fc-sticky-head--scrolled .fc-page-header .fc-hero-title,
    .findcreator-page .fc-sticky-head--scrolled h1.fc-hero-title {
        font-size: 1.5rem;
        white-space: nowrap;
    }

    /* Two rows: country+location, then search + pink Filters */
    .fc-toolbar {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 8px;
        overflow: visible;
        min-height: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .fc-sticky-head--scrolled .fc-toolbar {
        min-height: 0;
    }

    .fc-toolbar-place,
    .fc-toolbar-query {
        width: 100%;
        min-width: 0;
    }

    .fc-toolbar-place {
        background: var(--inp);
        border: 1px solid var(--inp-b);
        border-radius: 12px;
        overflow: visible;
        min-height: 50px;
    }

    .fc-toolbar-query {
        gap: 8px;
        align-items: stretch;
    }

    .fc-toolbar-search {
        flex: 1 1 auto;
        min-width: 0;
        background: var(--inp);
        border: 1px solid var(--inp-b);
        border-radius: 12px;
    }

    html.light .fc-toolbar-place,
    html.light .fc-toolbar-search {
        background: #fff;
        border-color: #dfe2e9;
    }

    .fc-filter-btn {
        display: none;
    }

    .fc-location-btn {
        flex: 1 1 auto;
        height: 50px;
        min-height: 50px;
        max-width: none;
        padding: 0 14px;
        border-right: none;
    }

    .fc-sticky-head--scrolled .fc-location-btn {
        height: 44px;
        min-height: 44px;
    }

    .fc-filters-open-btn {
        flex: 0 0 50px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        min-width: 50px;
        min-height: 50px;
        padding: 0;
        gap: 0;
        border: none;
        border-left: none;
        border-radius: 12px;
        background: var(--pink);
        color: #fff;
        box-shadow: none;
    }

    .fc-sticky-head--scrolled .fc-filters-open-btn {
        flex-basis: 44px;
        width: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
    }

    .fc-filters-open-btn span {
        display: none;
    }

    html.light .fc-filters-open-btn {
        border-left: none;
        background: var(--pink);
        color: #fff;
    }

    .fc-search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding-left: 14px;
    }

    .fc-country-btn {
        height: 50px;
        min-height: 50px;
        padding: 0 12px;
        font-size: 14px;
        border-right: 1px solid var(--inp-b);
    }

    .fc-sticky-head--scrolled .fc-country-btn {
        height: 40px;
        min-height: 40px;
    }

    .fc-country-code {
        font-size: 14px;
    }

    .fc-search-input {
        height: 50px;
        min-height: 50px;
        padding: 0 44px 0 8px;
        font-size: 16px;
    }

    .fc-sticky-head--scrolled .fc-search-input {
        height: 40px;
        min-height: 40px;
    }

    .fc-search-clear {
        width: 40px;
        height: 40px;
        right: 8px;
    }

    .fc-country-search {
        height: 44px;
        font-size: 16px;
    }

    /* Popular chips: pad and keep the last chip fully visible */
    .fc-popular-row {
        flex-wrap: wrap;
        overflow-x: visible;
        overflow-y: visible;
        gap: 8px;
        margin-bottom: 14px;
        padding: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .fc-popular-label {
        position: static;
        padding-right: 6px;
        font-size: 11px;
        background: transparent;
        flex-shrink: 0;
    }

    .fc-popular-chip {
        flex-shrink: 0;
        min-height: 28px;
        padding: 4px 10px;
        font-size: 11px;
    }

    .fc-chip-row {
        margin-bottom: 10px;
    }

    .fc-interpreted-chip {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .fc-result-count {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .fc-match-chip,
    .fc-tag-chip {
        font-size: 9.5px;
        padding: 3px 7px;
    }

    .fc-similar-title {
        font-size: 15px;
    }

    .fc-similar-sub {
        font-size: 12.5px;
    }

    .fc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .findcreator-page .fc-grid .ff-creator-card {
        border-radius: 0;
    }

    .fc-photo-info {
        padding: 14px 10px 12px;
    }

    .findcreator-page .fc-grid .ff-creator-card.is-highlighted,
    .findcreator-page .fc-grid .ff-creator-card.is-peeking,
    .findcreator-page .fc-grid .ff-creator-card:focus-within {
        transform: none;
    }

    .fc-peek-bio {
        font-size: 12.5px;
        line-height: 1.42;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .fc-peek-chip {
        font-size: 10.5px;
        padding: 3px 8px;
        min-height: 22px;
    }

    .fc-badge-verified-full {
        display: none;
    }

    .fc-badge-verified-short {
        display: inline;
    }

    .fc-badge-verified,
    .fc-badge-new,
    .fc-badge-newpost {
        font-size: 7.5px;
        letter-spacing: 0.03em;
        padding: 2px 5px 2px 3px;
        gap: 3px;
    }

    .fc-badge-verified-icon {
        width: 9px;
        height: 9px;
    }

    .fc-badge-verified-icon svg {
        width: 6px;
        height: 6px;
    }

    .fc-badge-posts {
        font-size: 8px;
        padding: 2px 5px;
    }

    .fc-photo-name,
    .fc-photo-age {
        font-size: 19px;
        margin-bottom: 0;
    }

    .fc-verified-tick {
        width: 14px;
        height: 14px;
    }

    .fc-verified-tick svg {
        width: 8px;
        height: 8px;
    }

    .fc-photo-location {
        font-size: 12px;
    }

    .fc-sticky-head.fc-sticky-head--scrolled {
        padding: 8px 0 10px;
    }

    .fc-empty-btn {
        min-height: 44px;
        padding: 10px 22px;
        font-size: 14px;
    }

    .fc-empty-title {
        font-size: 16px;
    }

    .fc-empty-sub {
        font-size: 13px;
    }

    .fc-country-menu {
        min-width: min(280px, calc(100vw - 28px));
        max-width: calc(100vw - 28px);
    }

    .fc-country-item {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .fc-filter-close {
        width: 44px;
        height: 44px;
    }

    .fc-filter-apply {
        min-height: 48px;
        font-size: 15px;
    }

    .fc-filter-reset {
        min-height: 44px;
        font-size: 14px;
    }

    .fc-sort-select {
        min-height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .findcreator-page .ff-content-inner {
        padding: 14px 12px 28px;
    }

    .findcreator-page h1.fc-hero-title {
        font-size: 1.52rem;
    }

    .fc-sticky-head::before {
        top: -14px;
    }

    .fc-grid {
        gap: 10px;
        padding-bottom: 12px;
    }

    .fc-peek-bio {
        font-size: 12px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .fc-country-code {
        max-width: 58px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (prefers-reduced-motion: reduce) {
    .findcreator-page .fc-grid .ff-creator-card,
    .findcreator-page .fc-grid .ff-creator-card::after,
    .findcreator-page .fc-photo-img,
    .fc-photo-scrim,
    .fc-photo-dim,
    .fc-card-peek {
        transition: none;
    }

    .findcreator-page .fc-grid .ff-creator-card:hover,
    .findcreator-page .fc-grid .ff-creator-card.is-highlighted {
        transform: none;
    }

    .findcreator-page .fc-grid .ff-creator-card:hover .fc-photo-img,
    .findcreator-page .fc-grid .ff-creator-card.is-highlighted .fc-photo-img {
        transform: none;
    }

    .fc-card-peek,
    .fc-card-peek-inner {
        transform: none;
        transition: none;
        filter: none;
    }
}

@media (max-width: 360px) {
    .fc-country-code {
        display: none;
    }

    .fc-country-btn {
        padding: 0 8px;
        gap: 0;
    }
}

/* ════════════════════════════════════════════════════════════
   LIGHT THEME — navbar / sidebar chrome (html.light)
   ════════════════════════════════════════════════════════════ */
.fp-topbar,
.fp-sidebar,
.fp-accsidebar {
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease,
                grid-template-columns 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html.light .fc-filter-sidebar-title,
html.light .fc-similar-title {
    color: #0a3049 !important;
}

html.light .fc-peek-chip,
html.light .fc-tag-chip {
    color: #fff !important;
}

html.light .fc-filter-row-label {
    color: #0a3049;
}

html.light .fp-topbar {
    background: var(--cnt-bg);
    border-bottom: 2px solid #e0336b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

html.light .fp-logo-img {
    content: url('/assets/images/FindFyreLogo-Pink.png');
    height: 32px;
    max-width: 160px;
}

html.light .fp-topbar-nav-icon { color: #2e333b; }
html.light .fp-topbar-nav-icon svg { stroke: #2e333b; }
html.light .fp-topbar-nav-icon:hover { color: #e0336b; background: rgba(224, 51, 107, 0.08); }
html.light .fp-topbar-nav-icon:hover svg { stroke: #e0336b; }
html.light .fp-topbar-profile svg { stroke: #e0336b; }
html.light .fp-topbar-profile:hover svg { stroke: #c9265e; }

html.light .fp-sidebar { background: #ffffff; border-right: 1px solid rgba(0, 0, 0, 0.08); }
html.light .fp-nav-item { color: #2e333b; }
html.light .fp-nav-item:hover { background: rgba(224, 51, 107, 0.06); color: #e0336b; }
html.light .fp-nav-item.active { background: rgba(224, 51, 107, 0.10); color: #e0336b; }
html.light .fp-nav-icon svg { fill: #2e333b; }
html.light .fp-nav-item:hover .fp-nav-icon svg { fill: #e0336b; }
html.light .fp-nav-item.active .fp-nav-icon svg { fill: #e0336b; }
html.light .fp-nav-item.active::before { background: linear-gradient(180deg, #e0336b, #c026d3); }
html.light .fp-nav-label { color: inherit; }
html.light .fp-nav-section-label { color: #3a6b82; }
html.light .fp-sidebar-toggle {
    color: #e0336b;
    background: rgba(224, 51, 107, 0.08);
    border-color: rgba(224, 51, 107, 0.28);
    box-shadow: none;
}
html.light .fp-sidebar-toggle svg { fill: #e0336b; }

/* The account drawer (.fp-accsidebar) is styled globally in fyreprofile.css,
   including its body.fp-light overrides — no page-level overrides here. */

html.light .fp-mobile-topbar { background: #f6f7f9; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
html.light .fp-mobile-topbar svg { stroke: #2e333b; }
html.light .fp-bottom-nav { background: #f6f7f9; border-top: 1px solid rgba(0, 0, 0, 0.08); }
html.light .fp-bottom-nav-item { color: #0a3049; }
html.light .fp-bottom-nav-item.active,
html.light .fp-bottom-nav-item:hover { color: #e0336b; }
