.gw-wallet {
	border: 1px solid #e6c200;
	border-radius: 10px;
	padding: 20px;
	margin: 16px 0;
	background: linear-gradient(180deg, #fffdf3 0%, #fff 100%);
}

.gw-wallet__title {
	margin: 0 0 12px;
	font-size: 18px;
}

.gw-wallet__balances {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 8px;
}

.gw-wallet__balance {
	flex: 1 1 180px;
	padding: 12px 16px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #eee;
}

.gw-wallet__balance--gold {
	border-color: #e6c200;
}

.gw-wallet__label {
	display: block;
	font-size: 12px;
	color: #777;
	margin-bottom: 4px;
}

.gw-wallet__value {
	font-size: 20px;
	font-weight: 700;
	color: #222;
}

.gw-wallet__rate {
	font-size: 12px;
	color: #888;
	margin: 4px 0 12px;
}

.gw-wallet__ledger {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.gw-wallet__ledger th,
.gw-wallet__ledger td {
	text-align: start;
	padding: 8px 10px;
	border-bottom: 1px solid #f0f0f0;
}

.gw-row--credit td:nth-child(2) {
	color: #1a7f37;
}

.gw-row--debit td:nth-child(2) {
	color: #c0392b;
}

/*
 * Hide Dokan's own (cash) balance on the vendor dashboard so only the gold
 * wallet's toman value is shown. Dokan Lite renders the balance widget; the
 * exact markup isn't in the uploaded Pro source, so these are best-effort
 * selectors. If the balance still shows, inspect the element on your live
 * dashboard and add its selector here.
 */
body.dokan-dashboard .dokan-account-balance,
body.dokan-dashboard .dokan-dashboard-content .dokan-w4 .dokan-balance,
body.dokan-dashboard li.dokan-current-balance,
body.dokan-dashboard .dashboard-content-area .balance {
	display: none !important;
}
