/* ============================================================
   Business Hero Panel — agency / club dashboard header
   ============================================================ */

.r33-biz-hero {
    background   : #111;
    border       : 1px solid #2a2a2a;
    border-radius: 10px;
    padding      : 14px 16px;
    margin-bottom: 16px;
}

/* ── Main row: view profile + wallet ──────────────────────── */

.r33-biz-hero__main {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    gap            : 12px;
    flex-wrap      : wrap;
}

/* ── View Profile link ─────────────────────────────────────── */

.r33-biz-hero__view-profile {
    display        : inline-flex;
    align-items    : center;
    gap            : 5px;
    font-size      : 0.82rem;
    font-weight    : 600;
    color          : #c9a84c;
    text-decoration: none;
    transition     : color 0.15s;
}

.r33-biz-hero__view-profile:hover {
    color: #e0c060;
}

/* ── Wallet block ──────────────────────────────────────────── */

.r33-biz-hero__wallet {
    display    : flex;
    align-items: center;
    gap        : 16px;
    flex-wrap  : wrap;
}

.r33-biz-hero__balance {
    display    : flex;
    align-items: baseline;
    gap        : 9px;
}

.r33-biz-hero__balance-label {
    font-size     : 0.70rem;
    font-weight   : 600;
    color         : #666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.r33-biz-hero__balance-value {
    font-size  : 1.05rem;
    font-weight: 700;
    color      : #e0e0e0;
}

.r33-biz-hero__topup-btn {
    display        : inline-flex;
    align-items    : center;
    padding        : 5px 12px;
    border-radius  : 6px;
    font-size      : 0.78rem;
    font-weight    : 600;
    color          : #c9a84c;
    background     : rgba(201, 168, 76, 0.08);
    border         : 1px solid rgba(201, 168, 76, 0.3);
    text-decoration: none;
    transition     : background 0.15s;
    white-space    : nowrap;
}

.r33-biz-hero__topup-btn:hover {
    background: rgba(201, 168, 76, 0.16);
    color     : #e0c060;
}

/* ── Invite row ────────────────────────────────────────────── */

.r33-biz-hero__invite {
    display    : flex;
    align-items: center;
    gap        : 14px;
    margin-top : 12px;
    padding-top: 12px;
    border-top : 1px solid #1e1e1e;
    flex-wrap  : wrap;
}

.r33-biz-hero__invite-text {
    font-size  : 0.76rem;
    color      : #e0e0e0;
    margin     : 0;
    flex       : 1 1 220px;
    line-height: 1.5;
}

.r33-biz-hero__invite-row {
    display    : flex;
    align-items: center;
    gap        : 8px;
    flex-shrink: 0;
}

.r33-biz-hero__invite-email {
    font-size  : 0.78rem;
    font-weight: 600;
    color      : #bbb;
    font-family: monospace;
}

.r33-biz-hero__copy-btn {
    padding      : 4px 10px;
    border-radius: 5px;
    font-size    : 0.73rem;
    font-weight  : 600;
    color        : #c9a84c;
    background   : transparent;
    border       : 1px solid rgba(201, 168, 76, 0.35);
    cursor       : pointer;
    transition   : background 0.15s;
}

.r33-biz-hero__copy-btn:hover {
    background: rgba(201, 168, 76, 0.1);
}

.r33-biz-hero__copy-btn.is-copied {
    color       : #81c784;
    border-color: rgba(129, 199, 132, 0.4);
    background  : rgba(129, 199, 132, 0.08);
}

/* ── Footer: Messages / Exclusive ─────────────────────────── */

.r33-biz-hero__footer {
    display    : flex;
    align-items: center;
    gap        : 8px;
    margin-top : 10px;
    padding-top: 12px;
    border-top : 1px solid rgba(212, 175, 55, 0.1);
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 600px) {
    .r33-biz-hero__main   { flex-direction: column; align-items: flex-start; }
    .r33-biz-hero__invite { flex-direction: column; align-items: flex-start; }
}
