/* -- Wallet Page: Scroll Container -- */
  .wallet-scroll {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 1rem;
  }
 
  @media (min-width: 1024px) {
    .wallet-scroll { padding-bottom: 2.5rem; }
  }
 
  .wallet-inner {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
 
  /* -- KYC Alert -- */
  .wallet-kyc {
    background: white;
    border-bottom: 2px solid #DDE0E4;
    padding: 1.5rem 1rem;
    margin: 0 -1rem;
  }
 
  @media (min-width: 1024px) {
    .wallet-kyc {
      border: 2px solid #DDE0E4;
      border-radius: 1rem;
      padding: 1.5rem;
      margin: 0;
    }
  }
 
  .wallet-kyc-inner {
    display: flex;
    gap: 0.75rem;
  }
 
  .wallet-kyc-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
  }
 
  .wallet-kyc-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
  }
 
  .wallet-kyc-desc {
    font-size: 0.75rem;
    color: #161A1D;
    line-height: 1.6;
    margin: 0;
  }
 
  .wallet-kyc-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0 0;
  }
 
  .wallet-kyc-btn:hover { text-decoration: underline; }
  .wallet-kyc-btn img { width: 0.75rem; height: 0.75rem; }
 
  /* -- Section Titles -- */
  .wallet-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555E68;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    margin: 0 0 1rem;
  }
 
  .wallet-section-title--dark {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.022em;
    text-transform: uppercase;
    color: #161A1D;
    margin: 0.5rem 0 0.5rem;
  }
 
  /* -- Asset Cards -- */
  .wallet-assets-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
    scrollbar-width: none;
  }
 
  .wallet-assets-row::-webkit-scrollbar { display: none; }
 
  @media (min-width: 1024px) {
    .wallet-assets-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin: 0;
      padding: 0;
      overflow-x: unset;
    }
  }
 
  .wallet-asset-card {
	  min-width: 140px;
	  flex: 1;
	  background: white;
	  border: 1px solid rgba(221, 224, 228, 0.5);
	  border-radius: 0.75rem;
	  padding: 1.25rem;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	  gap: 1rem;
	  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
	}
	
	.wallet-asset-card--active {
		border-color:var(--brand-primary);
		background:var(--bg-highlight);	
	}
	 
  .wallet-asset-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
 
  .wallet-asset-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
 
  .wallet-asset-icon--usd { background: #51B4FB; }
  .wallet-asset-icon--btc { background: #F6A655; }
  .wallet-asset-icon--eth { background: #9D8CF2; }
 
  .wallet-asset-currency {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555E68;
    letter-spacing: 0.038em;
    text-transform: uppercase;
    margin: 0 0 0.125rem;
  }
 
  .wallet-asset-balance {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.125rem;
  }
 
  .wallet-asset-sub {
    font-size: 0.625rem;
    color: #555E68;
    margin: 0;
  }
 
  /* -- Action Tabs -- */
  .wallet-action-tabs {
    background: #F3F5F6;
    border: 2px solid #DDE0E4;
    border-radius: 0.75rem;
    padding: 0.375rem;
    display: flex;
  }
 
  .wallet-action-tab {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    background: transparent;
    color: #555E68;
    transition: all 0.2s;
  }
 
  .wallet-action-tab--active {
    background: #51B4FB;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
 
  /* -- Deposit / Withdraw Methods -- */
  .wallet-method-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
 
  .wallet-method-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(221, 224, 228, 0.5);
    border-radius: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: border-color 0.2s;
  }
 
  .wallet-method-item:hover { border-color: #51B4FB; }
 
  .wallet-method-icon {
    width: 3rem;
    height: 3rem;
    background: #F9FAFB;
    border: 1px solid #DDE0E4;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
 
  .wallet-method-icon img { width: 1.5rem; height: 1.5rem; }
 
  .wallet-method-info { flex: 1; }
 
  .wallet-method-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
 
  .wallet-method-name {
    font-size: 1rem;
    font-weight: 700;
  }
 
  .wallet-method-badge {
    padding: 0.125rem 0.625rem;
    border: 1px solid #51B4FB;
    color: #51B4FB;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9999px;
  }
 
  .wallet-method-meta {
    font-size: 0.75rem;
    color: #555E68;
    margin: 0;
  }
 
  .wallet-method-arrow {
    width: 1rem;
    height: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
  }
 
  .wallet-method-item:hover .wallet-method-arrow { opacity: 1; }
 
  .wallet-method-arrow--always { opacity: 1; width: 1.25rem; height: 1.25rem; }
 
  /* -- Crypto Deposit -- */
  .wallet-crypto-box {
    border: 2px dashed #DDE0E4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
 
  .wallet-qr {
    width: 10rem;
    height: 10rem;
    background: white;
    border: 2px solid #DDE0E4;
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .wallet-qr img { width: 100%; height: 100%; object-fit: contain; }
 
  .wallet-crypto-details { width: 100%; display: flex; flex-direction: column; gap: 1rem; }
 
  .wallet-address-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #555E68;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
  }
 
  .wallet-address-row {
    display: flex;
    align-items: center;
    background: #F3F5F6;
    border: 1px solid #DDE0E4;
    border-radius: 0.75rem;
    padding: 0.75rem;
  }
 
  .wallet-address-text {
    flex: 1;
    font-size: 0.75rem;
    color: #161A1D;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
 
  .wallet-address-copy {
    margin-left: 0.5rem;
    padding: 0.25rem;
    border: none;
    background: transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.2s;
  }
 
  .wallet-address-copy:hover { background: #e5e7eb; }
  .wallet-address-copy img { width: 1rem; height: 1rem; display: block; }
 
  .wallet-crypto-warning {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(235, 71, 99, 0.05);
    border: 1px solid rgba(235, 71, 99, 0.2);
    border-radius: 0.5rem;
    text-align: left;
  }
 
  .wallet-crypto-warning img { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; }
 
  .wallet-crypto-warning p {
    font-size: 0.625rem;
    font-weight: 500;
    color: #EB4763;
    line-height: 1.5;
    margin: 0;
  }
 
  /* -- History -- */
  .wallet-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .wallet-history-see-all {
    font-size: 0.75rem;
    font-weight: 700;
    color: #51B4FB;
    background: none;
    border: none;
    cursor: pointer;
  }
 
  .wallet-history-see-all:hover { text-decoration: underline; }
 
  .wallet-history-list {
    background: white;
    border: 1px solid rgba(221, 224, 228, 0.5);
    border-radius: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
  }
 
  .wallet-history-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #DDE0E4;
  }
 
  .wallet-history-item:last-child { border-bottom: none; }
 
  .wallet-history-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #F3F5F6;
    border: 1px solid #DDE0E4;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
 
  .wallet-history-icon img { width: 1.25rem; height: 1.25rem; }
 
  .wallet-history-info { flex: 1; }
 
  .wallet-history-method {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
  }
 
  .wallet-history-date-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.125rem;
  }
 
  .wallet-history-date-row img { width: 0.75rem; height: 0.75rem; }
 
  .wallet-history-date {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #555E68;
    text-transform: uppercase;
  }
 
  .wallet-history-amount-col { text-align: right; }
 
  .wallet-history-amount {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
  }
 
  .wallet-history-status {
    font-size: 0.625rem;
    font-weight: 700;
    color: #161A1D;
    text-transform: uppercase;
    margin: 0;
  }