/* ================================================================
   EU MEMBER HUB — Dashboard Styles
   Brand: #FDC902 (gold) · #0000FE (blue) · #011D37 (navy)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --emh-gold:         #FDC902;
    --emh-gold-dark:    #e0b000;
    --emh-blue:         #0000FE;
    --emh-navy:         #011D37;
    --emh-navy-light:   #022a52;
    --emh-navy-lighter: #0a3660;
    --emh-white:        #ffffff;
    --emh-off-white:    #f4f6f9;
    --emh-text:         #e8edf4;
    --emh-text-muted:   #8a9bb5;
    --emh-border:       rgba(253, 201, 2, 0.12);
    --emh-border-hover: rgba(253, 201, 2, 0.35);
    --emh-radius:       12px;
    --emh-radius-sm:    8px;
    --emh-radius-lg:    18px;
    --emh-shadow:       0 4px 24px rgba(1, 29, 55, 0.5);
    --emh-sidebar-w:    260px;
    --emh-font:         'Barlow', sans-serif;
    --emh-font-cond:    'Barlow Condensed', sans-serif;
    --emh-transition:   0.2s ease;
}

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

.emh-wrap {
    font-family: var(--emh-font);
    color: var(--emh-text);
    background: var(--emh-navy);
    min-height: 80vh;
    border-radius: var(--emh-radius-lg);
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: var(--emh-shadow);
}

/* ================================================================
   GUEST / NOT LOGGED IN
   ================================================================ */

.emh-guest {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emh-navy) 0%, var(--emh-navy-light) 100%);
}

.emh-guest__inner {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 460px;
}

.emh-guest__logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.emh-guest__logo svg { width: 100%; height: 100%; }

.emh-guest__title {
    font-family: var(--emh-font-cond);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--emh-gold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.emh-guest__sub {
    color: var(--emh-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.emh-guest__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   SIDEBAR
   ================================================================ */

.emh-sidebar {
    width: var(--emh-sidebar-w);
    flex-shrink: 0;
    background: var(--emh-navy-light);
    border-right: 1px solid var(--emh-border);
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

/* Gold accent line at top */
.emh-sidebar::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--emh-gold);
    width: 100%;
}

/* Profile Card */
.emh-profile-card {
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--emh-border);
}

.emh-avatar-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
    cursor: pointer;
    border-radius: 50%;
}

.emh-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--emh-gold);
    display: block;
    transition: opacity var(--emh-transition);
}

.emh-avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(1, 29, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--emh-transition);
}

.emh-avatar-overlay svg {
    width: 22px;
    height: 22px;
    stroke: var(--emh-gold);
}

.emh-avatar-wrap:hover .emh-avatar-overlay { opacity: 1; }
.emh-avatar-wrap:hover .emh-avatar { opacity: 0.6; }

.emh-profile-name {
    font-family: var(--emh-font-cond);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--emh-white);
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.emh-profile-email {
    font-size: 0.75rem;
    color: var(--emh-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.75rem;
}

.emh-member-since {
    font-size: 0.7rem;
    color: var(--emh-text-muted);
    margin-top: 0.5rem;
}

/* Navigation */
.emh-nav {
    padding: 1rem 0;
    flex: 1;
}

.emh-nav__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--emh-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--emh-transition);
    position: relative;
    border-left: 3px solid transparent;
}

.emh-nav__item:hover {
    color: var(--emh-white);
    background: rgba(253, 201, 2, 0.06);
    border-left-color: rgba(253, 201, 2, 0.4);
}

.emh-nav__item.is-active {
    color: var(--emh-gold);
    background: rgba(253, 201, 2, 0.1);
    border-left-color: var(--emh-gold);
}

.emh-nav__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.emh-nav__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.emh-nav__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emh-text-muted);
    margin-left: auto;
    flex-shrink: 0;
}

.emh-nav__dot--active { background: #22c55e; }

.emh-sidebar__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--emh-border);
}

.emh-logout-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--emh-text-muted);
    text-decoration: none;
    transition: color var(--emh-transition);
}

.emh-logout-link:hover { color: #ff6b6b; }

.emh-logout-link svg {
    width: 16px;
    height: 16px;
}

/* ================================================================
   MAIN CONTENT
   ================================================================ */

.emh-main {
    flex: 1;
    overflow-y: auto;
    background: linear-gradient(160deg, #021f3a 0%, var(--emh-navy) 100%);
    min-height: 0;
}

/* ── Tab base ── */
.emh-tab {
    padding: 2rem 2.25rem;
    min-height: 100%;
}

.emh-tab__header {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--emh-border);
}

.emh-tab__header h2 {
    font-family: var(--emh-font-cond);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--emh-gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.emh-tab__header p {
    color: var(--emh-text-muted);
    font-size: 0.9rem;
}

/* ================================================================
   OVERVIEW — MODULE GRID
   ================================================================ */

.emh-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.emh-module-card {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--emh-text);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}

.emh-module-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--emh-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.emh-module-card:hover {
    border-color: var(--emh-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 29, 55, 0.5);
}

.emh-module-card:hover::after { transform: scaleX(1); }

.emh-module-card.is-active {
    border-color: rgba(253, 201, 2, 0.3);
}

.emh-module-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(253, 201, 2, 0.1);
    border-radius: var(--emh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emh-module-card__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--emh-gold);
}

.emh-module-card__body h4 {
    font-family: var(--emh-font-cond);
    font-size: 1rem;
    font-weight: 700;
    color: var(--emh-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.emh-module-card__body p {
    font-size: 0.82rem;
    color: var(--emh-text-muted);
    line-height: 1.5;
}

.emh-module-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.emh-module-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--emh-text-muted);
}

.emh-module-card__label.is-active { color: var(--emh-gold); }

.emh-module-card__status {
    font-size: 0.7rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.emh-info-strip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--emh-text-muted);
    background: rgba(253, 201, 2, 0.05);
    border: 1px solid var(--emh-border);
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    margin-top: 0.5rem;
}

.emh-info-strip svg {
    width: 14px;
    height: 14px;
    stroke: var(--emh-gold);
    flex-shrink: 0;
}

/* ================================================================
   ACTION CARDS (Buy & Sell tab)
   ================================================================ */

.emh-action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.emh-action-card {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.emh-action-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(253, 201, 2, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.emh-action-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--emh-gold);
}

.emh-action-card h4 {
    font-family: var(--emh-font-cond);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--emh-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.emh-action-card p {
    font-size: 0.78rem;
    color: var(--emh-text-muted);
    line-height: 1.5;
}

/* ================================================================
   MEMBERSHIP INFO
   ================================================================ */

.emh-membership-info {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.emh-membership-info h4 {
    font-family: var(--emh-font-cond);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--emh-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.emh-membership-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.emh-membership-row:last-child { border-bottom: none; }

.emh-membership-row span { color: var(--emh-text-muted); }

.emh-membership-row strong { color: var(--emh-white); }

.emh-text--green { color: #22c55e !important; }

/* ================================================================
   SUPPORTER THANKS
   ================================================================ */

.emh-supporter-thanks {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 2rem;
    text-align: center;
    max-width: 480px;
}

.emh-supporter-thanks__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emh-supporter-thanks h3 {
    font-family: var(--emh-font-cond);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--emh-gold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.emh-supporter-thanks p {
    color: var(--emh-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* ================================================================
   COMING SOON BLOCK
   ================================================================ */

.emh-coming-soon-block {
    background: rgba(253, 201, 2, 0.05);
    border: 1px dashed rgba(253, 201, 2, 0.25);
    border-radius: var(--emh-radius);
    padding: 2rem;
    color: var(--emh-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================================================
   UPSELL / PLANS
   ================================================================ */

.emh-upsell__header {
    margin-bottom: 2rem;
}

.emh-upsell__header h2 {
    font-family: var(--emh-font-cond);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--emh-gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.emh-upsell__header p {
    color: var(--emh-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 520px;
}

.emh-plans {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.emh-plan-card {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 2rem 1.75rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emh-plan-card:hover {
    border-color: var(--emh-border-hover);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.emh-plan-card__icon { font-size: 2rem; }

.emh-plan-card h3 {
    font-family: var(--emh-font-cond);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--emh-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.emh-plan-card__desc {
    font-size: 0.83rem;
    color: var(--emh-text-muted);
    line-height: 1.55;
}

.emh-plan-card__price {
    margin: 0.5rem 0 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.emh-plan-card__amount {
    font-family: var(--emh-font-cond);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--emh-gold);
}

.emh-plan-card__period {
    font-size: 0.82rem;
    color: var(--emh-text-muted);
}

.emh-plan-card__trial {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 600;
}

/* ================================================================
   PROFILE FORM
   ================================================================ */

.emh-form {
    max-width: 580px;
}

.emh-form__row { display: flex; gap: 1rem; }

.emh-form__row--2col > * { flex: 1; min-width: 0; }

.emh-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.emh-form__group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.emh-form__group input,
.emh-form__group select,
.emh-form__group textarea {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius-sm);
    color: var(--emh-white);
    font-family: var(--emh-font);
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    width: 100%;
    transition: border-color var(--emh-transition), box-shadow var(--emh-transition);
    outline: none;
    -webkit-appearance: none;
}

.emh-form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.emh-form__group select option {
    background: var(--emh-navy-light);
    color: var(--emh-white);
}

.emh-form__group input:focus,
.emh-form__group select:focus,
.emh-form__group textarea:focus {
    border-color: rgba(253, 201, 2, 0.5);
    box-shadow: 0 0 0 3px rgba(253, 201, 2, 0.1);
}

.emh-form__group input:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.emh-form__group textarea { resize: vertical; min-height: 100px; }

.emh-form__hint {
    font-size: 0.74rem;
    color: var(--emh-text-muted);
    margin-top: 0.15rem;
}

.emh-form__actions { margin-top: 0.5rem; }

/* ── Notice ── */
.emh-notice {
    padding: 0.75rem 1rem;
    border-radius: var(--emh-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.emh-notice--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.emh-notice--error {
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* ================================================================
   BADGES
   ================================================================ */

.emh-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 30px;
    white-space: nowrap;
}

.emh-badge--private {
    background: rgba(0, 0, 254, 0.18);
    color: #6e9dff;
    border: 1px solid rgba(0, 0, 254, 0.3);
}

.emh-badge--business {
    background: rgba(253, 201, 2, 0.15);
    color: var(--emh-gold);
    border: 1px solid rgba(253, 201, 2, 0.3);
}

.emh-badge--supporter {
    background: rgba(255, 107, 107, 0.12);
    color: #ff8e8e;
    border: 1px solid rgba(255, 107, 107, 0.25);
}

/* ================================================================
   BUTTONS
   ================================================================ */

.emh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--emh-font-cond);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border-radius: var(--emh-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.emh-btn--primary {
    background: var(--emh-gold);
    color: var(--emh-navy);
    border-color: var(--emh-gold);
}

.emh-btn--primary:hover {
    background: var(--emh-gold-dark);
    border-color: var(--emh-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(253, 201, 2, 0.35);
}

.emh-btn--outline {
    background: transparent;
    color: var(--emh-gold);
    border-color: rgba(253, 201, 2, 0.4);
}

.emh-btn--outline:hover {
    background: rgba(253, 201, 2, 0.08);
    border-color: var(--emh-gold);
}

.emh-btn--sm {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
}

.emh-btn--full { width: 100%; margin-top: auto; }

.emh-btn--soon {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media ( max-width: 780px ) {
    .emh-wrap { flex-direction: column; border-radius: 0; }

    .emh-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--emh-border);
    }

    .emh-sidebar::before { display: none; }

    .emh-profile-card { padding: 1.25rem 1.25rem 1rem; }

    .emh-avatar-wrap,
    .emh-avatar { width: 64px; height: 64px; }

    .emh-nav {
        display: flex;
        overflow-x: auto;
        padding: 0;
        gap: 0;
    }

    .emh-nav__item {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.75rem 1rem;
        font-size: 0.72rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .emh-nav__item.is-active { border-left-color: transparent; border-bottom-color: var(--emh-gold); }
    .emh-nav__dot { display: none; }

    .emh-sidebar__footer { display: none; }

    .emh-tab { padding: 1.25rem; }

    .emh-form__row--2col { flex-direction: column; }

    .emh-module-grid { grid-template-columns: 1fr; }

    .emh-plans { flex-direction: column; }

    .emh-plan-card { max-width: none; }
}

/* ================================================================
   STAGE 2 ADDITIONS
   ================================================================ */

/* Stripe success banner */
.emh-stripe-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 0.85rem 1.25rem;
    border-radius: var(--emh-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Action card links */
.emh-action-card--link {
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.emh-action-card--link:hover {
    border-color: var(--emh-border-hover);
    transform: translateY(-2px);
}

/* Cancel section */
.emh-cancel-section {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--emh-border);
    font-size: 0.85rem;
    color: var(--emh-text-muted);
}

.emh-cancel-section p { margin-bottom: 0.75rem; line-height: 1.55; }

.emh-btn--danger {
    background: transparent;
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.35);
}

.emh-btn--danger:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

/* Upsell secure note */
.emh-upsell__secure {
    font-size: 0.8rem;
    color: var(--emh-text-muted);
    margin-top: 1.25rem;
}

/* Spinner */
.emh-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(253, 201, 2, 0.3);
    border-top-color: var(--emh-gold);
    border-radius: 50%;
    animation: emh-spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 0.4rem;
}

@keyframes emh-spin { to { transform: rotate(360deg); } }

.emh-plan-card__loading {
    text-align: center;
    padding: 0.65rem;
    font-size: 0.85rem;
    color: var(--emh-text-muted);
    margin-top: 0.5rem;
}

/* Listing form card */
.emh-listing-form-card {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.emh-listing-form-card h3 {
    font-family: var(--emh-font-cond);
    font-size: 1rem;
    font-weight: 700;
    color: var(--emh-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.emh-form__checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem !important;
    color: var(--emh-text-muted) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-top: 0.4rem;
    cursor: pointer;
}

.emh-form__checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Image upload */
.emh-image-upload { display: flex; flex-direction: column; gap: 0.75rem; }

.emh-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.emh-img-thumb {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: var(--emh-radius-sm);
    overflow: hidden;
    border: 1px solid var(--emh-border);
}

.emh-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emh-img-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(1, 29, 55, 0.85);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Listings list */
.emh-listings-list { display: flex; flex-direction: column; gap: 0.85rem; }

.emh-listing-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1rem 1.25rem;
    transition: border-color 0.15s ease;
}

.emh-listing-row:hover { border-color: var(--emh-border-hover); }

.emh-listing-row__thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--emh-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(253, 201, 2, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.emh-listing-row__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.emh-listing-row__body { flex: 1; min-width: 0; }

.emh-listing-row__body h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--emh-white);
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.emh-listing-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--emh-text-muted);
}

.emh-listing-row__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.emh-listing-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.emh-listing-status--active {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

/* Empty state */
.emh-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--emh-navy-light);
    border: 1px dashed var(--emh-border);
    border-radius: var(--emh-radius);
}

.emh-empty-state__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.emh-empty-state h4 {
    font-family: var(--emh-font-cond);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--emh-white);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.emh-empty-state p { font-size: 0.85rem; color: var(--emh-text-muted); }

/* Tab header flex */
.emh-tab__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emh-tab__header p { flex-basis: 100%; margin-top: 0.1rem; }

/* ================================================================
   AUTH — LOGIN & REGISTER
   ================================================================ */

.emh-auth {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emh-navy) 0%, #021f3a 60%, #011529 100%);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.emh-auth::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(253,201,2,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,0,254,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.emh-auth__inner {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.emh-auth__inner--wide { max-width: 560px; }

/* Brand */
.emh-auth__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    font-family: var(--emh-font-cond);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--emh-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.emh-auth__brand svg { width: 40px; height: 40px; flex-shrink: 0; }

.emh-auth__brand-dot { color: var(--emh-gold); }

/* Card */
.emh-auth__card {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius-lg);
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Gold top accent */
.emh-auth__card::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--emh-gold), transparent);
    border-radius: var(--emh-radius-lg) var(--emh-radius-lg) 0 0;
    margin: -2rem -2rem 1.75rem;
}

.emh-auth__header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.emh-auth__header h2 {
    font-family: var(--emh-font-cond);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--emh-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.emh-auth__header p {
    font-size: 0.88rem;
    color: var(--emh-text-muted);
}

/* Input wrap with icon */
.emh-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.emh-input-icon {
    position: absolute;
    left: 0.85rem;
    width: 16px;
    height: 16px;
    stroke: var(--emh-text-muted);
    pointer-events: none;
    flex-shrink: 0;
}

.emh-input-wrap input,
.emh-input-wrap select {
    padding-left: 2.5rem !important;
}

.emh-input-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.emh-input-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--emh-text-muted);
    transition: stroke 0.15s ease;
}

.emh-input-toggle:hover svg { stroke: var(--emh-gold); }

/* Label row with forgot link */
.emh-form__group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.emh-auth__forgot {
    font-size: 0.75rem;
    color: var(--emh-text-muted);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    transition: color 0.15s ease;
}

.emh-auth__forgot:hover { color: var(--emh-gold); }

/* Remember / Terms */
.emh-auth__remember,
.emh-auth__terms {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.83rem;
    color: var(--emh-text-muted);
    cursor: pointer;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.emh-auth__remember input,
.emh-auth__terms input {
    width: auto !important;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--emh-gold);
}

.emh-auth__terms a {
    color: var(--emh-gold);
    text-decoration: none;
}

.emh-auth__terms a:hover { text-decoration: underline; }

/* Large button */
.emh-btn--lg {
    font-size: 1rem !important;
    padding: 0.8rem 1.5rem !important;
    margin-top: 0.25rem;
}

/* Divider */
.emh-auth__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
    color: var(--emh-text-muted);
    font-size: 0.8rem;
}

.emh-auth__divider::before,
.emh-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--emh-border);
}

/* Password strength */
.emh-password-strength {
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.emh-pw-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.emh-pw-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
    width: 0%;
}

.emh-pw-fill--weak   { background: #ff6b6b; width: 33%; }
.emh-pw-fill--fair   { background: #fbbf24; width: 66%; }
.emh-pw-fill--strong { background: #22c55e; width: 100%; }

.emh-password-strength span {
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--emh-text-muted);
}

/* Form group override for auth (remove extra margin) */
.emh-auth .emh-form__group { margin-bottom: 1rem; }

/* Select in auth */
.emh-auth select {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius-sm);
    color: var(--emh-white);
    font-family: var(--emh-font);
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.emh-auth select:focus {
    border-color: rgba(253,201,2,0.5);
    box-shadow: 0 0 0 3px rgba(253,201,2,0.1);
}

.emh-auth select option {
    background: var(--emh-navy-light);
    color: var(--emh-white);
}

@media ( max-width: 560px ) {
    .emh-auth__card { padding: 1.5rem 1.25rem; }
    .emh-auth__inner--wide { max-width: 100%; }
    .emh-auth .emh-form__row--2col { flex-direction: column; }
}

/* ================================================================
   3-STEP REGISTRATION
   ================================================================ */

/* Step progress indicator */
.emh-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--emh-border);
}

.emh-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.emh-step__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--emh-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emh-font-cond);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--emh-text-muted);
    transition: all 0.25s ease;
    background: transparent;
}

.emh-step span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--emh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.emh-step.is-active .emh-step__dot {
    border-color: var(--emh-gold);
    background: var(--emh-gold);
    color: var(--emh-navy);
}

.emh-step.is-active span { color: var(--emh-gold); }

.emh-step.is-done .emh-step__dot {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.emh-step.is-done .emh-step__dot::after { content: '✓'; }
.emh-step.is-done .emh-step__dot { font-size: 0; }
.emh-step.is-done span { color: #22c55e; }

.emh-step__line {
    flex: 1;
    height: 2px;
    background: var(--emh-border);
    min-width: 32px;
    max-width: 60px;
    margin-bottom: 22px;
    transition: background 0.3s ease;
}

.emh-step__line.is-done { background: #22c55e; }

/* Step content */
.emh-reg-step { animation: emh-fadein 0.25s ease; }

@keyframes emh-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Step actions row */
.emh-step-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.emh-step-actions--col {
    flex-direction: column;
    gap: 0.6rem;
}

.emh-btn--back {
    flex-shrink: 0;
    font-size: 0.85rem !important;
    padding: 0.65rem 1rem !important;
}

.emh-btn__arrow { margin-left: 0.2rem; }

/* Optional label */
.emh-form__optional {
    font-size: 0.72rem;
    color: var(--emh-text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 0.3rem;
}

/* ── Membership plan cards (step 3) ── */
.emh-reg-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.emh-reg-plan { cursor: pointer; display: block; }
.emh-reg-plan input[type="radio"] { display: none; }

.emh-reg-plan__card {
    background: var(--emh-navy);
    border: 2px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.emh-reg-plan input:checked ~ .emh-reg-plan__card {
    border-color: var(--emh-gold);
    box-shadow: 0 0 0 3px rgba(253,201,2,0.12);
}

.emh-reg-plan__badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--emh-gold);
    color: var(--emh-navy);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 0 var(--emh-radius) 0 var(--emh-radius-sm);
}

.emh-reg-plan__top {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.emh-reg-plan__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.emh-reg-plan__top h4 {
    font-family: var(--emh-font-cond);
    font-size: 1rem;
    font-weight: 800;
    color: var(--emh-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}

.emh-reg-plan__top p {
    font-size: 0.75rem;
    color: var(--emh-text-muted);
    line-height: 1.4;
}

.emh-reg-plan__check {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--emh-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.emh-reg-plan input:checked ~ .emh-reg-plan__card .emh-reg-plan__check {
    border-color: var(--emh-gold);
    background: var(--emh-gold);
    color: var(--emh-navy);
}

.emh-reg-plan__price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.emh-reg-plan__amount {
    font-family: var(--emh-font-cond);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--emh-gold);
}

.emh-reg-plan__per {
    font-size: 0.78rem;
    color: var(--emh-text-muted);
}

.emh-reg-plan__trial {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.emh-reg-plan__features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--emh-border);
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.emh-reg-plan__features li {
    font-size: 0.78rem;
    color: var(--emh-text-muted);
}

/* Responsive */
@media ( max-width: 560px ) {
    .emh-reg-plans { grid-template-columns: 1fr; }
    .emh-steps { gap: 0; }
    .emh-step__line { min-width: 16px; }
    .emh-step span { font-size: 0.62rem; }
}

/* Upload states */
.emh-img-thumb--loading,
.emh-img-thumb--error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253,201,2,0.05);
    font-size: 1.25rem;
}

.emh-img-uploading {
    animation: emh-spin 1s linear infinite;
    display: inline-block;
}

/* ================================================================
   PLUGIN EMBED — Supporter & Business
   ================================================================ */

/* Wrapper that resets styles for embedded plugin content */
.emh-plugin-embed {
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.5rem;
    color: var(--emh-text);
}

/* Override SP plugin styles inside our dashboard */
.emh-plugin-embed--supporter .sp-dashboard {
    font-family: var(--emh-font) !important;
}

.emh-plugin-embed--supporter .sp-dashboard-title {
    font-family: var(--emh-font-cond) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--emh-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 1.25rem !important;
}

.emh-plugin-embed--supporter .sp-card {
    background: var(--emh-navy) !important;
    border: 1px solid var(--emh-border) !important;
    border-radius: var(--emh-radius-sm) !important;
    padding: 1.25rem !important;
    margin-bottom: 1rem !important;
    color: var(--emh-text) !important;
}

.emh-plugin-embed--supporter .sp-card h3 {
    font-family: var(--emh-font-cond) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--emh-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.75rem !important;
}

.emh-plugin-embed--supporter .sp-card label,
.emh-plugin-embed--supporter .sp-card p { color: var(--emh-text-muted) !important; font-size: 0.88rem !important; }

.emh-plugin-embed--supporter .sp-card input,
.emh-plugin-embed--supporter .sp-card select {
    background: var(--emh-navy-lighter) !important;
    border: 1px solid var(--emh-border) !important;
    border-radius: var(--emh-radius-sm) !important;
    color: var(--emh-white) !important;
    font-family: var(--emh-font) !important;
    font-size: 0.88rem !important;
    padding: 0.55rem 0.8rem !important;
    width: 100% !important;
}

.emh-plugin-embed--supporter .sp-btn-primary {
    background: var(--emh-gold) !important;
    color: var(--emh-navy) !important;
    border: none !important;
    font-family: var(--emh-font-cond) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--emh-radius-sm) !important;
    cursor: pointer !important;
}

.emh-plugin-embed--supporter .sp-btn-secondary {
    background: transparent !important;
    color: var(--emh-gold) !important;
    border: 1px solid rgba(253,201,2,0.35) !important;
    font-family: var(--emh-font-cond) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--emh-radius-sm) !important;
    cursor: pointer !important;
}

.emh-plugin-embed--supporter .sp-btn-danger {
    background: transparent !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(255,107,107,0.35) !important;
    font-family: var(--emh-font-cond) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--emh-radius-sm) !important;
    cursor: pointer !important;
}

.emh-plugin-embed--supporter .sp-current-amount { color: var(--emh-white) !important; }
.emh-plugin-embed--supporter .sp-notice { color: var(--emh-text-muted) !important; font-size: 0.82rem !important; }

/* Toggle */
.emh-plugin-embed--supporter .sp-toggle-track {
    background: var(--emh-navy-lighter) !important;
    border: 1px solid var(--emh-border) !important;
}

/* BD plugin embed */
.emh-plugin-embed--business .bd-dashboard-wrap { color: var(--emh-text) !important; }

.emh-plugin-embed--business .bd-dashboard-title {
    font-family: var(--emh-font-cond) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--emh-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 1.25rem !important;
}

.emh-plugin-embed--business .bd-form input,
.emh-plugin-embed--business .bd-form select,
.emh-plugin-embed--business .bd-form textarea {
    background: var(--emh-navy) !important;
    border: 1px solid var(--emh-border) !important;
    border-radius: var(--emh-radius-sm) !important;
    color: var(--emh-white) !important;
    font-family: var(--emh-font) !important;
    font-size: 0.88rem !important;
    padding: 0.55rem 0.8rem !important;
    width: 100% !important;
}

.emh-plugin-embed--business .bd-form label {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--emh-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    display: block !important;
    margin-bottom: 0.3rem !important;
}

.emh-plugin-embed--business .bd-btn-primary {
    background: var(--emh-gold) !important;
    color: var(--emh-navy) !important;
    border: none !important;
    font-family: var(--emh-font-cond) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: var(--emh-radius-sm) !important;
    cursor: pointer !important;
}

.emh-plugin-embed--business .bd-btn-secondary {
    background: transparent !important;
    color: var(--emh-gold) !important;
    border: 1px solid rgba(253,201,2,0.35) !important;
    font-family: var(--emh-font-cond) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: var(--emh-radius-sm) !important;
    cursor: pointer !important;
}

/* Supporter CTA (non-member state) */
.emh-supporter-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--emh-navy-light);
    border: 1px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.emh-supporter-cta__icon { font-size: 2.5rem; flex-shrink: 0; }

.emh-supporter-cta__body h3 {
    font-family: var(--emh-font-cond);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--emh-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.emh-supporter-cta__body p {
    font-size: 0.85rem;
    color: var(--emh-text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

@media (max-width: 560px) {
    .emh-supporter-cta { flex-direction: column; text-align: center; }
}

/* ── Supporter add-on (step 3) ── */
.emh-supporter-addon {
    margin-bottom: 1.25rem;
}

.emh-supporter-addon__label {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: var(--emh-navy);
    border: 2px solid var(--emh-border);
    border-radius: var(--emh-radius);
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.emh-supporter-addon__label:has(input:checked) {
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 107, 107, 0.05);
}

.emh-supporter-addon__label:hover {
    border-color: rgba(255, 107, 107, 0.35);
}

.emh-supporter-addon__check {
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.emh-supporter-addon__check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.emh-supporter-addon__box {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--emh-border);
    background: var(--emh-navy-light);
    transition: all 0.15s ease;
    position: relative;
}

.emh-supporter-addon__check input:checked ~ .emh-supporter-addon__box {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.emh-supporter-addon__check input:checked ~ .emh-supporter-addon__box::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.emh-supporter-addon__body { flex: 1; min-width: 0; }

.emh-supporter-addon__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--emh-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.emh-supporter-addon__price {
    font-family: var(--emh-font-cond);
    font-size: 0.85rem;
    font-weight: 800;
    color: #ff8e8e;
    letter-spacing: 0.02em;
}

.emh-supporter-addon__desc {
    font-size: 0.78rem;
    color: var(--emh-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Hierarchical category dropdown indentation */
.emh-cat-dropdown { width: 100%; }
.emh-cat-dropdown option[class*="level-1"] { padding-left: 1rem; }
.emh-cat-dropdown option[class*="level-2"] { padding-left: 2rem; }
.emh-cat-dropdown option[class*="level-3"] { padding-left: 3rem; }

/* Business ads contact info */
.emh-bd-ad-contact { margin-top: 1.25rem; }
.emh-bd-ad-contact h4 {
    font-family: var(--emh-font-cond);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--emh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
