/* ============================================
   Wallet Balance Shortcode Styles
   ============================================ */

.bhd-wallet-balance-shortcode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

/* Logged In State */
.bhd-wallet-balance-shortcode.logged-in {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
    /* Base font size, can be overridden by inline style */
}

.bhd-balance-label {
    font-size: 1em;
    /* Same as parent */
    font-weight: 500;
    color: #6b7280;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.bhd-balance-value {
    font-size: 1em;
    /* Same as parent */
    font-weight: 700;
    color: #e85d75;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
}

.bhd-balance-value.locked {
    color: #9ca3af;
}

.bhd-balance-status {
    font-size: 12px;
    color: #ef4444;
    font-weight: 500;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
}

/* Not Logged In State */
.bhd-wallet-balance-shortcode.not-logged-in {
    display: inline-block;
}

.bhd-topup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, #e85d75 0%, #d53f5a 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(232, 93, 117, 0.3);
}

.bhd-topup-btn:hover {
    background: linear-gradient(135deg, #d53f5a 0%, #c02d4a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 93, 117, 0.4);
    color: white;
}

.bhd-topup-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
    .bhd-wallet-balance-shortcode.logged-in {
        padding: 6px 12px;
    }

    .bhd-balance-label {
        font-size: 13px;
    }

    .bhd-balance-value {
        font-size: 16px;
    }

    .bhd-topup-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}