/* HBH Custom Additional Styles */

/* Payment method selector */
.hbh-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.hbh-payment-card {
    border: 1px solid var(--hbh-border-light);
    border-radius: var(--hbh-radius-sm);
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--hbh-bg-secondary);
}

.hbh-payment-card:hover,
.hbh-payment-card.selected {
    border-color: var(--hbh-accent-green);
    background: rgba(34, 197, 94, 0.06);
}

.hbh-payment-card .icon { font-size: 24px; margin-bottom: 6px; }
.hbh-payment-card .label { font-size: 12px; font-weight: 700; }
.hbh-payment-card .sub { font-size: 10px; color: var(--hbh-text-muted); }

/* Chat message styling */
.hbh-chat-msg { margin-bottom: 10px; }
.hbh-chat-user { font-weight: 700; font-size: 12px; color: var(--hbh-accent-purple); }
.hbh-chat-time { font-size: 10px; color: var(--hbh-text-dark); margin-left: 6px; }
.hbh-chat-text { font-size: 13px; color: var(--hbh-text-secondary); margin-top: 2px; }

/* Identity card preview */
.hbh-id-card {
    width: 320px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e);
    border: 2px solid var(--hbh-accent-purple);
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hbh-id-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(167,139,250,0.1), transparent);
}

.hbh-id-card .card-logo {
    font-family: var(--hbh-font-display);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
}

.hbh-id-card .card-title {
    font-size: 9px;
    color: var(--hbh-text-muted);
    letter-spacing: 1px;
    margin-top: 2px;
}

.hbh-id-card .card-name {
    font-family: var(--hbh-font-display);
    font-size: 20px;
    font-weight: 900;
    margin-top: 16px;
}

.hbh-id-card .card-psn {
    font-size: 12px;
    color: var(--hbh-text-secondary);
    margin-top: 4px;
}

.hbh-id-card .card-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 11px;
    color: var(--hbh-text-dark);
    letter-spacing: 1px;
}

.hbh-id-card .card-hop {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 8px;
    color: var(--hbh-text-dark);
}
