/* ============================================================
   followsocials.org — Global Design System (Light Theme)
   Premium Showcase Site for Social Media Creators / Monikers
   ============================================================ */

/* ── 1. CSS Custom Properties (Light Design Tokens) ──────── */
:root {
    /* Brand Palette */
    --brand-primary: #6D28D9;
    /* Deep Violet */
    --brand-secondary: #0891B2;
    /* Cyan-700 */
    --brand-accent: #D97706;
    /* Amber */
    --brand-rose: #DB2777;
    /* Rose */
    --brand-emerald: #059669;
    /* Emerald */

    /* Backgrounds */
    --bg-page: #F8F7FF;
    /* Lavender-white */
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-alt: #F3F0FF;
    /* Soft violet tint */
    --bg-filter: #FFFFFF;
    --bg-navbar: rgba(255, 255, 255, 0.92);
    --bg-hero: linear-gradient(160deg, #F0EBFF 0%, #E0F2FE 100%);
    --bg-glass: rgba(109, 40, 217, 0.05);
    --bg-glass-hover: rgba(109, 40, 217, 0.09);

    /* Text */
    --text-primary: #1E1B4B;
    /* Deep indigo */
    --text-secondary: #4B5563;
    /* Gray-600 */
    --text-muted: #9CA3AF;
    /* Gray-400 */
    --text-on-brand: #FFFFFF;

    /* Borders */
    --border-subtle: #E5E7EB;
    /* Gray-200 */
    --border-card: #EDE9FE;
    /* Violet-100 */
    --border-glow: rgba(109, 40, 217, 0.35);

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 24px rgba(109, 40, 217, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(109, 40, 217, 0.18);
    --shadow-navbar: 0 2px 16px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(109, 40, 217, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;

    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

    /* Z-indices */
    --z-nav: 100;
    --z-modal: 200;
}

/* ── 2. Reset & Base ────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    background: var(--bg-page);
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 55px;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── 3. Typography ──────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   4. NAVBAR
══════════════════════════════════════════════════════════ */
.fs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: var(--z-nav);
    background: var(--bg-navbar);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-navbar);
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
}

.fs-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* Nav Left (Dropdown + Brand) */
.fs-nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fs-lang-dropdown {
    position: relative;
}

.fs-lang-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    font-family: inherit;
}

.fs-lang-btn:hover {
    background: var(--bg-card-alt);
    color: var(--brand-primary);
    border-color: var(--border-card);
}

.fs-lang-btn .flag-icon {
    font-size: 1.1em;
    border-radius: 2px;
}

.fs-lang-btn i.fa-chevron-down {
    font-size: 0.7em;
    margin-left: 2px;
    color: var(--text-muted);
}

.fs-lang-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 160px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 100;
}

.fs-lang-dropdown:hover .fs-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fs-lang-item {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.fs-lang-item:hover,
.fs-lang-item.active {
    background: var(--bg-page);
    color: var(--brand-primary);
}

/* Brand */
.fs-navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(109, 40, 217, 0.3);
}

.brand-logo-img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 50px;
    }
}

.brand-dot {
    color: var(--brand-secondary);
}

/* Desktop Nav Links */
.fs-nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.fs-nav-link {
    padding: 7px 15px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fs-nav-link:hover {
    background: var(--bg-glass);
    border-color: var(--border-card);
    color: var(--brand-primary);
}

.fs-nav-link.active {
    background: var(--bg-card-alt);
    border-color: var(--border-card);
    color: var(--brand-primary);
}

/* CTA Button */
.fs-nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.fs-nav-cta {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    transition: var(--transition-fast);
    box-shadow: 0 2px 14px rgba(109, 40, 217, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    white-space: nowrap;
}

.fs-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.45);
    color: #fff;
}

/* Hamburger Button */
.fs-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.fs-hamburger:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-card);
}

.fs-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

/* Hamburger open state */
.fs-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.fs-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.fs-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.fs-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: calc(var(--z-nav) - 1);
    padding: var(--space-md) var(--space-lg);
    flex-direction: column;
    gap: var(--space-xs);
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.fs-mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.fs-mobile-link {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    text-decoration: none;
    border: 1px solid transparent;
}

.fs-mobile-link:hover,
.fs-mobile-link.active {
    background: var(--bg-card-alt);
    border-color: var(--border-card);
    color: var(--brand-primary);
}

.fs-mobile-link i {
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.fs-mobile-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 4px 0;
}

.fs-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    text-decoration: none;
    margin-top: 4px;
    box-shadow: 0 2px 14px rgba(109, 40, 217, 0.25);
}

/* Responsive Navbar Breakpoints */
@media (max-width: 768px) {
    .fs-navbar {
        padding: 0 var(--space-md);
        height: 60px;
    }

    .fs-nav-links {
        display: none;
    }

    .fs-hamburger {
        display: flex;
    }

    .fs-mobile-menu {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .fs-navbar-brand {
        font-size: 1rem;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .brand-logo-img {
        height: 45px;
    }
}

/* ── 5. Hero ────────────────────────────────────────────── */
.showcase-hero {
    position: relative;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    overflow: hidden;
    background: var(--bg-hero);
    border-bottom: 1px solid var(--border-subtle);
}

.showcase-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(109, 40, 217, 0.08);
    border: 1px solid rgba(109, 40, 217, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.showcase-hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.hero-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
    align-self: center;
}

@media (max-width: 640px) {
    .showcase-hero {
        padding: var(--space-xl) var(--space-md) var(--space-lg);
    }

    .hero-stats-row {
        gap: var(--space-lg);
    }

    .hero-stat-value {
        font-size: 1.3rem;
    }

    .hero-divider {
        display: none;
    }
}

/* ── 6. Section Wrapper ─────────────────────────────────── */
.showcase-section {
    position: relative;
    padding: 0 var(--space-xl) var(--space-xl);
    max-width: 1380px;
    margin: 0 auto;
    overflow-x: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .showcase-section {
        padding: 0 var(--space-md) var(--space-lg);
    }
}

/* ── 7. Spotlight Carousel ──────────────────────────────── */
.spotlight-carousel-section {
    padding: 0 var(--space-xl) var(--space-xl);
    max-width: 1380px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .spotlight-carousel-section {
        padding: 0 var(--space-md) var(--space-lg);
    }
}

.spotlight-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        height: 320px;
    }
}

.carousel-slide img.carousel-bg-blur {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: blur(25px);
    transform: scale(1.1);
    /* Prevent blur edges from showing */
    z-index: 0;
    opacity: 0.8;
    transition: transform 0.7s ease;
}

.carousel-slide img.carousel-main-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.7s ease;
}

.carousel-slide:hover img.carousel-bg-blur {
    transform: scale(1.14);
}

.carousel-slide:hover img.carousel-main-img {
    transform: scale(1.04);
}

.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.90) 0%, rgba(30, 27, 75, 0.25) 55%, rgba(30, 27, 75, 0.0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
}

@media (max-width: 640px) {
    .carousel-slide-overlay {
        padding: var(--space-md);
    }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(109, 40, 217, 0.9);
    color: #fff;
    backdrop-filter: blur(8px);
    /* margin-bottom: 10px; */
    width: fit-content;
}

.slide-creator-name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.15;
}

.slide-creator-handle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.slide-stats-row {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.slide-stat-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-md);
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: var(--transition-fast);
    cursor: pointer;
}

.carousel-btn:hover {
    background: rgba(109, 40, 217, 0.75);
    border-color: transparent;
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }
}

/* Hide spotlight carousel arrows on mobile viewports and touch screens */
@media (max-width: 991px),
(hover: none),
(pointer: coarse) {
    .carousel-controls {
        display: none !important;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    width: 22px;
    background: #fff;
}

/* ── 8. Platform Bar ────────────────────────────────────── */
.platforms-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.platform-badge:hover {
    background: var(--bg-card-alt);
    border-color: var(--border-card);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

/* ── 9. Filter Bar ──────────────────────────────────────── */
.filter-bar-section {
    background: var(--bg-filter);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.filter-bar-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.search-wrapper {
    position: relative;
}

.search-wrapper .search-icon-el {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.showcase-search {
    width: 100%;
    padding: 13px 18px 13px 46px;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    outline: none;
}

.showcase-search::placeholder {
    color: var(--text-muted);
}

.showcase-search:focus {
    border-color: var(--brand-primary);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
}

.filter-groups {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-md);
}

.filter-groups>div {
    min-width: 0;
}

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

@media (max-width: 560px) {
    .filter-groups {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

.filter-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pills-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pills-scroll::-webkit-scrollbar {
    display: none;
}

.fs-pill {
    white-space: nowrap;
    padding: 5px 13px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 600;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    background: var(--bg-page);
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
    flex-shrink: 0;
}

.fs-pill:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(109, 40, 217, 0.05);
}

.fs-pill.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 10px rgba(109, 40, 217, 0.3);
}

.results-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-subtle);
}

.results-count strong {
    color: var(--brand-primary);
    font-weight: 700;
}

/* ── 10. Creator Showcase (Bootstrap Row & Col Layout) ──── */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}

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

@media (max-width: 767px) {
    .creators-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 11. Creator Card ───────────────────────────────────── */
.creator-card-wrapper {
    display: flex;
    flex-direction: column;
}

.creator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-card);
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
}

.creator-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(109, 40, 217, 0.3);
}

.creator-card:hover::before {
    opacity: 1;
}

/* Card Image Banner */
.card-image-banner {
    position: relative;
    /* aspect-ratio 4/3 provides ample vertical space so portraits are never cropped horizontally or vertically */
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-card-alt), #E0F2FE);
    flex-shrink: 0;
}

/* ── Card Mini Image Slider ─────────────────────────────── */
.card-img-slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.card-img-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps the face and shoulders perfectly in frame */
    object-position: center 15%;
    display: block;
    transition: transform 0.6s ease;
}

.creator-card:hover .card-img-slide img {
    transform: scale(1.05);
}

/* Slider dot indicators on card */
.card-slider-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    pointer-events: auto;
}

.card-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.card-slider-dot.active {
    width: 14px;
    border-radius: 3px;
    background: #fff;
}

/* Slider prev/next arrows (appear on hover) */
.card-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 6px;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.creator-card:hover .card-slider-arrows {
    opacity: 1;
}

.card-slider-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    color: var(--brand-primary);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.18s ease, transform 0.18s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.card-slider-arrow:hover {
    background: #fff;
    transform: scale(1.12);
}

/* Hide slider arrows on mobile viewports and touch screens so they never obstruct creator images or badges */
@media (max-width: 991px),
(hover: none),
(pointer: coarse) {
    .card-slider-arrows {
        display: none !important;
    }
}

.card-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(255, 255, 255, 0.85) 100%);
}

/* Country flag badge */
.card-country-flag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 3px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 4;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* flag-icon sizing inside badge */
.card-country-flag .flag-icon {
    width: 1.1em;
    height: 0.8em;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* flag-icon in tags row & filter pills */
.card-tag .flag-icon,
.fs-pill .flag-icon {
    width: 1.05em;
    height: 0.75em;
    border-radius: 1px;
    vertical-align: middle;
    margin-right: 4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Avatar */
.card-avatar-wrap {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: none;
}

.card-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(109, 40, 217, 0.2), 0 0 0 2px rgba(109, 40, 217, 0.15);
    background: var(--bg-page);
    transition: box-shadow var(--transition-base);
}

.creator-card:hover .card-avatar {
    box-shadow: 0 4px 24px rgba(109, 40, 217, 0.3), 0 0 0 3px var(--brand-primary);
}

/* Card Body */
.card-body {
    padding: var(--space-lg) var(--space-md) var(--space-sm);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.card-creator-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.25;
    margin-bottom: 0;
}

.card-creator-handle {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    margin-top: -8px;
    margin-bottom: 0;
}

.card-actions-top {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.card-actions-top>* {
    flex: 1 1 0;
}

.card-actions-top> :only-child {
    flex: 0 1 auto;
    min-width: 50%;
}

@media (max-width: 480px) {
    .card-actions-top {
        flex-direction: column;
    }

    .card-actions-top> :only-child {
        min-width: 100%;
    }
}

.card-total-followers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: var(--radius-full);
    background: rgba(109, 40, 217, 0.07);
    border: 1px solid rgba(109, 40, 217, 0.18);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    margin-bottom: 0;
    white-space: nowrap;
}

.card-total-followers:hover {
    background: var(--bg-card-alt);
    border-color: var(--brand-primary);
}

.card-total-followers i {
    font-size: 0.78rem;
}

/* Social list */
.card-socials {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-socials a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.card-socials a:hover {
    background: var(--bg-card-alt);
    border-color: var(--border-card);
    transform: translateX(2px);
}

.social-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.si-instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #515BD4);
    color: #fff;
}

.si-facebook {
    background: #1877F2;
    color: #fff;
}

.si-tiktok {
    background: #010101;
    color: #69C9D0;
}

.si-youtube {
    background: #FF0000;
    color: #fff;
}

.si-pinterest {
    background: #E60023;
    color: #fff;
}

.si-vk {
    background: #0077FF;
    color: #fff;
}

.si-globe {
    background: rgba(109, 40, 217, 0.12);
    color: var(--brand-primary);
    border: 1px solid rgba(109, 40, 217, 0.2);
}

.social-item-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.social-item-followers {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
}

/* Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.card-tag {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.tag-category {
    background: #EDE9FE;
    color: #6D28D9;
    border: 1px solid #DDD6FE;
}

.tag-interest {
    background: #FEF3C7;
    color: #B45309;
    border: 1px solid #FDE68A;
}

.tag-country {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

/* Card Footer */
.card-footer-area {
    padding: 0 var(--space-md) var(--space-md);
}

/* Three-button footer row */
.card-footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.btn-profile {
    padding: 8px 4px;
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--bg-page);
    color: var(--brand-primary);
    border: 1.5px solid var(--border-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-profile:hover {
    background: var(--bg-card-alt);
    border-color: var(--brand-primary);
}

.btn-chat {
    padding: 8px 4px;
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-chat:hover {
    background: #10B981;
    color: #fff;
    border-color: #10B981;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.25);
    transform: translateY(-1px);
}

.btn-book {
    padding: 8px 4px;
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(109, 40, 217, 0.25);
}

.btn-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(109, 40, 217, 0.4);
}

.btn-book:active {
    transform: translateY(0);
}

/* ── 12. No Results ─────────────────────────────────────── */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    color: var(--text-muted);
}

.no-results i {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
    opacity: 0.4;
}

.no-results p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── 13. Modal — Profile + Booking Tabs ─────────────────── */
.fs-modal-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 27, 75, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    overscroll-behavior: contain;
    touch-action: none;
}

.fs-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.fs-modal {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(16px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 80px rgba(109, 40, 217, 0.15);
    touch-action: auto;
}

.fs-modal-overlay.open .fs-modal {
    transform: translateY(0) scale(1);
}

.fs-modal-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--bg-surface);
    z-index: 1;
}

.fs-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.fs-modal-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.fs-modal-close:hover {
    background: #FEE2E2;
    color: #EF4444;
    border-color: #FECACA;
}

/* Modal Tabs */
.fs-modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    position: sticky;
    top: 57px;
    z-index: 1;
}

.fs-modal-tab {
    flex: 1;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.fs-modal-tab.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

.fs-modal-tab:focus {
    outline: none !important;
}

.fs-modal-tab:hover:not(.active) {
    color: var(--text-secondary);
    background: var(--bg-page);
}

.fs-modal-panel {
    display: none;
    padding: var(--space-lg);
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-primary) transparent;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.fs-modal-panel::-webkit-scrollbar {
    width: 6px;
}

.fs-modal-panel::-webkit-scrollbar-track {
    background: transparent;
}

.fs-modal-panel::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 6px;
}

.fs-modal-panel.active {
    display: block;
}

.fs-modal-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--brand-primary);
    box-shadow: var(--shadow-glow);
    margin: 0 auto var(--space-md);
    display: block;
}

.fs-modal-creator-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.fs-modal-handle {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.fs-modal-ig-bio {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 auto var(--space-md);
    max-width: 92%;
    white-space: pre-line;
    font-style: italic;
}

.fs-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.fs-modal-socials {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fs-modal-socials a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 13px;
    border-radius: var(--radius-md);
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.fs-modal-socials a:hover {
    background: var(--bg-card-alt);
    border-color: var(--border-card);
}

.modal-social-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-social-platform {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.modal-social-count {
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text-primary);
}


/* ── Booking / Payment Panel ─────────────────────────────── */
.booking-panel-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.booking-panel-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-label {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-input,
.booking-select,
.booking-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-page);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    outline: none;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    border-color: var(--brand-primary);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.booking-textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-budget-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.booking-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 4px 0;
}

/* Billing info bar (Moniker & Total Price) */
.billing-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-page);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
}

.billing-info-bar span {
    font-weight: 600;
    color: var(--text-secondary);
}

.billing-info-bar strong {
    font-weight: 700;
    color: var(--brand-primary);
}

.billing-info-bar .billing-price {
    font-size: 1.1rem;
    color: #EF4444;
    font-family: var(--font-display);
    font-weight: 800;
}

.section-label-blue {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1E3A8A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
    margin-bottom: 2px;
}

/* Payment Method Card Box */
.payment-card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: #F8FAFC;
    border: 2px solid #3B82F6;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 4px;
    margin-bottom: 8px;
}

.payment-card-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 2rem;
}

.payment-card-icons .fa-cc-visa {
    color: #1A1F71;
}

.payment-card-icons .fa-cc-mastercard {
    color: #EB001B;
}

.payment-card-icons .fa-cc-amex {
    color: #006FCF;
}

.payment-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 2px;
}

.payment-card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-confirm-pay {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    background: #93C5FD;
    color: #1E3A8A;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    text-align: center;
    margin-top: 6px;
}

.btn-confirm-pay:hover {
    background: #3B82F6;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-submit-booking {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    box-shadow: 0 2px 14px rgba(109, 40, 217, 0.3);
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.btn-submit-booking:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(109, 40, 217, 0.45);
}

.btn-submit-booking:active {
    transform: translateY(0);
}

.booking-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.booking-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    display: none;
}

.booking-success i {
    font-size: 2.5rem;
    color: var(--brand-emerald);
    margin-bottom: var(--space-sm);
    display: block;
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.booking-success p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── 14. Footer ─────────────────────────────────────────── */
.showcase-footer {
    text-align: center;
    padding: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
    background: var(--bg-surface);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto var(--space-md);
    line-height: 1.65;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.footer-links a {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ── 15. Scroll animation ───────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 15b. Spotlight Carousel Skeleton Loader ─────────────── */
@keyframes sk-shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.sk-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    background:
        linear-gradient(180deg, rgba(109, 40, 217, 0.04) 0%, rgba(8, 145, 178, 0.04) 100%),
        var(--bg-card);
}

.sk-slide {
    height: 600px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #F0EBFF 0%, #E0F2FE 100%);
}

@media (max-width: 768px) {
    .sk-slide {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .sk-slide {
        height: 320px;
    }
}

.sk-shimmer {
    background:
        linear-gradient(90deg,
            rgba(109, 40, 217, 0.06) 0%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(8, 145, 178, 0.06) 100%);
    background-size: 800px 100%;
    animation: sk-shimmer 1.6s linear infinite;
}

.sk-image {
    position: absolute;
    inset: 12% 18% 35% 18%;
    border-radius: var(--radius-md);
    opacity: 0.55;
}

.sk-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.85) 0%, rgba(30, 27, 75, 0.0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
}

@media (max-width: 640px) {
    .sk-overlay {
        padding: var(--space-md);
    }
}

.sk-badge {
    width: 130px;
    height: 24px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    opacity: 0.55;
}

.sk-name {
    width: 55%;
    height: 36px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    opacity: 0.65;
}

.sk-handle {
    width: 35%;
    height: 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    opacity: 0.5;
}

.sk-pills {
    display: flex;
    gap: 8px;
}

.sk-pill {
    width: 78px;
    height: 30px;
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.sk-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.sk-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(109, 40, 217, 0.25);
    animation: sk-shimmer 1.6s linear infinite;
}

.sk-dot.active {
    width: 26px;
    background: var(--brand-primary);
    opacity: 0.7;
}

/* ── 15c. Creator Grid Skeleton + Load More ─────────────── */
.sk-card {
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--bg-card);
}

.sk-card-banner {
    height: 220px;
    background:
        linear-gradient(90deg,
            rgba(109, 40, 217, 0.06) 0%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(8, 145, 178, 0.06) 100%);
    background-size: 800px 100%;
    animation: sk-shimmer 1.6s linear infinite;
}

.sk-line {
    height: 12px;
    border-radius: var(--radius-sm);
    background:
        linear-gradient(90deg,
            rgba(109, 40, 217, 0.08) 0%,
            rgba(255, 255, 255, 0.65) 50%,
            rgba(8, 145, 178, 0.08) 100%);
    background-size: 800px 100%;
    animation: sk-shimmer 1.6s linear infinite;
    margin: 10px 14px;
}

.sk-line-name {
    height: 18px;
    width: 55%;
}

.sk-line-handle {
    width: 35%;
}

.sk-line-tag {
    width: 75%;
}

.grid-loadmore {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: var(--space-xl) 0;
}

.btn-loadmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glow);
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(8, 145, 178, 0.08));
    color: var(--brand-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-loadmore:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-loadmore:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.grid-loadmore-status {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── 16. Live badge / pulse ─────────────────────────────── */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(5, 150, 105, 0);
    }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.3);
    font-size: 0.63rem;
    font-weight: 700;
    color: var(--brand-emerald);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-emerald);
    animation: pulse-glow 2s infinite;
    flex-shrink: 0;
}

/* ── 17. Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(109, 40, 217, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

::selection {
    background: rgba(109, 40, 217, 0.15);
    color: var(--brand-primary);
}

/* ── 18. Responsive card tweaks ─────────────────────────── */
@media (max-width: 900px) {
    .card-image-banner {
        aspect-ratio: 4 / 3;
    }

    #creatorContentModal.fs-modal-overlay {
        padding: 0 !important;
        align-items: flex-end !important;
    }

    #creatorContentModal .fs-modal {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 100dvh !important;
        height: 100dvh !important;
        border-radius: 0 !important;
        margin: 0 !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
}

@media (max-width: 520px) {
    .card-image-banner {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .card-body {
        padding-top: var(--space-md);
    }

    .card-footer-row {
        grid-template-columns: 1fr 1fr;
        ;
    }

    .booking-budget-row {
        grid-template-columns: 1fr;
    }

    .booking-payment-options {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .filter-bar-section {
        padding: var(--space-md);
    }

    .fs-modal-panel {
        padding: var(--space-md);
        border-radius: 0 !important;
    }

    .fs-modal-header {
        padding: var(--space-md) var(--space-md);
    }
}

/* ── 19. Live Chatline Modal UI ──────────────────────────── */
.chatline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-md);
}

.chatline-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.chatline-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.chatline-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10B981;
}

.chatline-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
}

.chatline-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatline-status {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatline-security-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .chatline-header {
        gap: 8px;
    }

    .chatline-header-left {
        gap: 10px;
    }

    .chatline-avatar {
        width: 42px;
        height: 42px;
    }

    .chatline-name {
        font-size: 0.95rem;
    }

    .chatline-status {
        font-size: 0.68rem;
    }

    .chatline-security-badge {
        padding: 2px 7px;
        font-size: 0.55rem;
    }
}

.chat-bubble-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.chat-bubble-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-bubble-content {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    padding: 12px 16px;
    border-radius: 0 16px 16px 16px;
    font-size: 0.82rem;
    color: var(--text-primary);
    line-height: 1.5;
    max-width: 82%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.user-bubble {
    flex-direction: row-reverse;
}

.user-bubble .chat-bubble-content {
    background: #10B981;
    color: #fff;
    border-color: #10B981;
    border-radius: 16px 0 16px 16px;
}

.chat-time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: right;
}

.user-bubble .chat-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-otp-card {
    background: linear-gradient(135deg, var(--bg-page), var(--bg-surface));
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-md);
    box-shadow: var(--shadow-card);
}

.otp-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.otp-card-header i {
    font-size: 1.8rem;
    color: #10B981;
}

.otp-card-header h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 2px 0;
}

.otp-card-header p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.otp-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-otp-send,
.btn-otp-verify {
    padding: 11px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-otp-send {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
}

.btn-otp-send:hover {
    background: var(--brand-secondary);
}

.btn-otp-verify {
    background: #10B981;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-otp-verify:hover {
    background: #059669;
}

.otp-sent-alert {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #065F46;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otp-change-btn {
    background: none;
    border: none;
    color: #059669;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.75rem;
}

.otp-boxes-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 8px 0;
}

.otp-box {
    width: 48px;
    height: 52px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-card);
    background: #fff;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.chat-quick-chips {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: absolute;
    bottom: calc(100% + 2px);
    left: 0;
    margin: 0;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 380px;
    width: max-content;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 20;
    scrollbar-width: thin;
}

.chat-quick-chips.show {
    display: flex;
}

.chat-chip {
    white-space: normal;
    text-align: left;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-chip:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10B981;
    color: #059669;
}

.chatline-templates-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.chatline-templates-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.chatline-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 15px;
    position: sticky;
    bottom: -24px;
    background: var(--bg-surface);
    padding-bottom: 15px;
    margin-bottom: -10px;
    z-index: 10;
}

.chatline-input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-card);
    background: var(--bg-page);
    font-size: 16px;
    outline: none;
    transition: var(--transition-fast);
}

.chatline-input:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.chatline-send-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10B981;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatline-send-btn:hover {
    background: #059669;
    transform: scale(1.06);
}

.chatline-messages-area {
    scrollbar-width: none;
    overscroll-behavior: contain;
    touch-action: pan-y;
    min-height: 260px;
}

.chatline-messages-area::-webkit-scrollbar {
    display: none;
}