*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #3B5BDB;
    --blue-dark: #2f4ac0;
    --blue-light: #eef1ff;
    --blue-mid: #c5d0f5;
    --ink: #111118;
    --ink-mid: #2a2a35;
    --ink-soft: #5a5a6e;
    --ink-faint: #9696aa;
    --border: #e2e4ee;
    --border-mid: #c8cce0;
    --bg: #ffffff;
    --bg-soft: #F5F0E8;
    --green: #16a34a;
    --amber: #d97706;
    --radius: 12px;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg-soft);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 64px;
}

/* ── NAV ── */
body > nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    gap: 24px;
}

.logo {
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.logo span { color: var(--blue); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }
.nav-link--active { color: var(--ink); font-weight: 600; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.nav-icon-btn:hover { background: var(--bg-soft); color: var(--ink); }

/* ── SEARCH BAR ── */
.nav-search-wrap {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav-search-inner {
    display: flex;
    align-items: center;
    padding: 10px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.search-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    color: var(--ink-faint);
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.search-input-box:focus-within {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,91,219,0.08);
}
.search-input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
}
.search-input-box input::placeholder { color: var(--ink-faint); font-weight: 400; }

/* ── PAGE BAR (breadcrumb + sort) ── */
.page-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    gap: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ink-faint);
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink-mid); font-weight: 600; }
.breadcrumb svg { opacity: 0.4; }

.page-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.results-label {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
    white-space: nowrap;
}

.sort-select {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%239696aa' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 7px 30px 7px 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.15s;
}
.sort-select:focus { outline: none; border-color: var(--blue); }

/* ── MARKETPLACE LAYOUT (sidebar + content) ── */
.marketplace-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 28px 5% 80px;
    align-items: start;
}

/* ── FILTER SIDEBAR ── */
.filter-sidebar {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-mid) transparent;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-track { background: transparent; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 100px; }

.sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.filter-section {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-bottom: 16px;
}

.filter-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.section-chevron {
    color: var(--ink-faint);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.filter-section.collapsed .section-chevron { transform: rotate(180deg); }
.filter-section.collapsed .filter-section-body { display: none; }

.filter-section-body { display: flex; flex-direction: column; gap: 8px; }

.filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--ink-soft);
    cursor: pointer;
    transition: color 0.12s;
}
.filter-option:hover { color: var(--ink); }
.filter-option span { line-height: 1; }

.filter-cb {
    width: 15px;
    height: 15px;
    border: 1.5px solid var(--border-mid);
    border-radius: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--ink);
    appearance: auto;
}

.clear-filters-btn {
    width: 100%;
    margin-top: 16px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
}
.clear-filters-btn:hover { border-color: var(--ink); color: var(--ink); }

/* ── CREATORS GRID ── */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── CARD ── */
.creator-card {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.08),
        0 6px 20px rgba(0,0,0,0.13);
    transition:
        box-shadow 0.25s cubic-bezier(0.23,1,0.32,1),
        transform  0.25s cubic-bezier(0.23,1,0.32,1);
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transform: translateY(14px);
}
.creator-card.card-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity    0.38s cubic-bezier(0.23,1,0.32,1),
        transform  0.38s cubic-bezier(0.23,1,0.32,1),
        box-shadow 0.25s cubic-bezier(0.23,1,0.32,1);
}
@media (hover: hover) and (pointer: fine) {
    .creator-card:hover {
        box-shadow:
            0 6px 18px rgba(0,0,0,0.11),
            0 20px 44px rgba(0,0,0,0.14);
        transform: translateY(-4px);
    }
}
.creator-card:active { transform: scale(0.99); }
.skeleton-card {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none;
    user-select: none;
}

/* ── CARD PHOTO — inset with padding & own radius ── */
.card-photo-outer {
    padding: 10px 10px 0;
    position: relative;
}
.card-photo {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 13px;
    flex-shrink: 0;
}
.card-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
@media (hover: hover) and (pointer: fine) {
    .creator-card:hover .card-photo-img { transform: scale(1.05); }
}
.card-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.22);
}

/* Niche pills — top-left of photo */
.card-niche-tags {
    position: absolute;
    top: 10px; left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: calc(100% - 20px);
    z-index: 2;
}
.card-niche-tag {
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* Barter badge — top-right of photo */
.cover-barter-badge {
    position: absolute;
    top: 10px; right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(240,253,244,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(187,247,208,0.8);
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.barter-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    position: relative;
}
.barter-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34,197,94,0.35);
    animation: barter-ping 1.8s ease-out infinite;
}
@keyframes barter-ping {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ── CARD BODY ── */
.card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.card-identity { display: flex; flex-direction: column; gap: 2px; }

.card-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.card-name {
    /* Editorial-weight name — large, tight, confident */
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.6px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-verified {
    width: 17px; height: 17px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-handle {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-faint);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── STAT PILLS ── */
.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.stat-pill {
    background: #f4f5f9;
    border-radius: 9px;
    padding: 9px 11px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.pill-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ink-faint);
    line-height: 1;
}
.pill-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.6px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* ── VIRAL BADGE ── */
.viral-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #c2410c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 20px;
    padding: 2px 7px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.4;
}

/* ── CARD FOOTER — price left, CTA right ── */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

/* Single price display */
.card-price-single {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.cps-amount {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.6px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cps-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-faint);
    letter-spacing: 0;
}
.cps-na {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-faint);
}
.card-price-barter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #166534;
    flex-shrink: 0;
}

/* CTA button — compact dark pill */
.card-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: -0.1px;
    transition: background 0.18s, transform 0.12s;
    touch-action: manipulation;
    white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
    .creator-card:hover .card-cta-btn { background: var(--blue); }
}
.card-cta-btn:active { transform: scale(0.97); }

/* ── SKELETON ── */
@keyframes shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.skel-block {
    background: linear-gradient(90deg, #ededf2 0%, #e3e4ec 40%, #ededf2 80%);
    background-size: 300% 100%;
    animation: shimmer 1.6s ease-in-out infinite;
}

/* ── EMPTY / ERROR ── */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}
.empty-state .ei { font-size: 36px; margin-bottom: 12px; }
.empty-state h3 { font-size: 17px; font-weight: 700; color: var(--ink-mid); margin-bottom: 6px; }
.empty-state p { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.empty-state-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.empty-state-cta:hover { background: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .marketplace-layout { grid-template-columns: 190px 1fr; gap: 24px; }
    .creators-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .page-bar { padding: 10px 4%; }
    .results-label { display: none; }

    .marketplace-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding: 0;
    }
    main { min-width: 0; }

    .filter-sidebar {
        position: sticky;
        top: 60px;
        z-index: 90;
        min-width: 0;
        overflow: hidden;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border);
        padding: 0;
        background: var(--bg);
    }
    .sidebar-head { display: none; }
    .clear-filters-btn { display: none; }

    .filter-section {
        display: flex !important;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-top: none !important;
        border-bottom: 1px solid var(--border);
        padding: 0;
        margin: 0;
    }
    .filter-section:last-of-type { border-bottom: none; }
    .filter-section::-webkit-scrollbar { display: none; }
    .filter-section-head { display: none; }
    .filter-section.collapsed .filter-section-body { display: flex !important; }

    .filter-section-body {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
    }

    .filter-option {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        background: transparent;
        border: 1.5px solid var(--border);
        border-radius: 100px;
        padding: 5px 13px;
        font-size: 12px;
        font-weight: 600;
        color: var(--ink-soft);
        white-space: nowrap;
        cursor: pointer;
        transition: background 0.15s, border-color 0.15s, color 0.15s;
    }
    .filter-option:has(.filter-cb:checked) {
        background: var(--ink);
        border-color: var(--ink);
        color: #fff;
    }
    .filter-cb { display: none; }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 14px 4% 80px;
    }

    /* Scale card for 2-col mobile */
    .card-photo { height: 220px; }
    .card-photo-outer { padding: 8px 8px 0; }
    .card-body { padding: 11px 12px 13px; gap: 9px; }
    .card-name { font-size: 16px; letter-spacing: -0.4px; }
    .card-handle { font-size: 11px; }
    .pill-val { font-size: 15px; letter-spacing: -0.4px; }
    .pill-label { font-size: 8px; }
    .stat-pill { padding: 8px 9px; }
    .cps-amount { font-size: 16px; letter-spacing: -0.4px; }
    .cps-label { font-size: 11px; }
    .card-niche-tag { font-size: 10px; padding: 3px 9px; }

    /* Stack footer so price + View button never collide */
    .card-footer { flex-direction: column; align-items: stretch; gap: 8px; }
    .card-cta-btn { width: 100%; justify-content: center; padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
    .page-bar { padding: 8px 4%; }
    .sort-select { font-size: 11px; padding: 6px 26px 6px 10px; }

    .creators-grid { gap: 10px; padding: 12px 4% 80px; }

    .card-photo { height: 185px; }
    .card-photo-outer { padding: 7px 7px 0; }
    .card-body { padding: 10px 11px 12px; gap: 8px; }
    .card-name { font-size: 14px; letter-spacing: -0.3px; }
    .card-handle { font-size: 10.5px; }
    .pill-val { font-size: 13px; letter-spacing: -0.3px; }
    .pill-label { font-size: 7.5px; }
    .stat-pill { padding: 7px 8px; border-radius: 8px; }
    .cps-amount { font-size: 14px; letter-spacing: -0.3px; }
    .cps-label { font-size: 10px; }
    .card-price-barter { font-size: 11.5px; }
    .card-cta-btn { padding: 9px 13px; font-size: 11.5px; }
}

/* ── CREATOR SELECTION — ADD BUTTON + TOOLTIP ── */
.card-add-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #3B5BDB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.15s, color 0.15s, transform 0.15s;
}
.card-add-btn:hover {
    background: #3B5BDB;
    color: #fff;
    transform: scale(1.08);
}
.card-add-btn.added {
    background: #3B5BDB;
    color: #fff;
}
.card-add-btn.added:hover {
    background: #c92a2a;
}

/* Tooltip rendered via JS into body to escape card overflow:hidden */
#cardBtnTip {
    position: fixed;
    background: #111118;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.15s, transform 0.15s;
}

.creator-card.card-selected {
    outline: 2.5px solid #3B5BDB;
    outline-offset: -2px;
}

/* ── FLOATING SELECTION BAR ── */
.select-bar {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: #111118;
    color: #fff;
    border-radius: 100px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    transition: bottom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}
.select-bar.bar-visible {
    bottom: 28px;
}
.select-bar-left { display: flex; align-items: center; gap: 8px; }
.select-count { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.select-label { font-size: 13px; color: rgba(255,255,255,0.7); }
.select-bar-right { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.select-clear-btn {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
    background: none; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px; padding: 7px 14px; cursor: pointer;
    font-family: inherit; transition: background 0.15s;
}
.select-clear-btn:hover { background: rgba(255,255,255,0.1); }
.select-collab-btn {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700; color: #111118;
    background: #fff; border: none; border-radius: 100px;
    padding: 9px 18px; cursor: pointer; font-family: inherit;
    transition: background 0.15s;
}
.select-collab-btn:hover { background: #eef1ff; }

/* ── MULTI-COLLAB MODAL ── */
.mp-modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.2s;
    padding: 16px;
}
.mp-modal-overlay.open { opacity: 1; pointer-events: all; }
.mp-modal {
    background: #fff; border-radius: 18px;
    width: 100%; max-width: 480px;
    max-height: 90vh; overflow-y: auto;
    padding: 28px; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.mp-modal-close {
    position: absolute; top: 16px; right: 18px;
    background: none; border: none; font-size: 18px;
    color: #9898AA; cursor: pointer; line-height: 1;
}
.mp-modal-close:hover { color: #111118; }
.mp-modal-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: #111118; margin-bottom: 6px; }
.mp-modal-sub { font-size: 13px; color: #5A5A72; margin-bottom: 20px; line-height: 1.5; }
.mp-form-group { margin-bottom: 14px; }
.mp-label { display: block; font-size: 12px; font-weight: 600; color: #5A5A72; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.mp-input {
    width: 100%; border: 1.5px solid #D8D8E0; border-radius: 10px;
    padding: 10px 12px; font-size: 14px; font-family: inherit;
    color: #111118; outline: none; transition: border-color 0.15s;
    background: #fff;
}
.mp-input:focus { border-color: #3B5BDB; }
.mp-submit-btn {
    width: 100%; background: #3B5BDB; color: #fff; border: none;
    border-radius: 10px; padding: 13px; font-size: 15px; font-weight: 700;
    font-family: inherit; cursor: pointer; transition: background 0.15s;
    margin-top: 4px;
}
.mp-submit-btn:hover { background: #2f4ac0; }
.mp-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
