/* WC Wallet - light, theme-friendly styles */

.wcwallet-summary{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
}

.wcwallet-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.wcwallet-topup-btn,
.wcwallet-withdraw-btn,
.wcwallet-withdraw-submit{
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.08);
}

.wcwallet-withdraw-panel{
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.wcwallet-withdraw-title{
  margin: 0 0 12px;
  font-size: 18px;
}

.wcwallet-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 720px){
  .wcwallet-grid{ grid-template-columns: 1fr; }
}

.wcwallet-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wcwallet-field span{
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  font-weight: 600;
}

.wcwallet-field input,
.wcwallet-field select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.10);
  background: #fff;
  outline: none;
}

.wcwallet-field input:focus,
.wcwallet-field select:focus{
  border-color: rgba(0,0,0,0.24);
}

.wcwallet-field-full{
  grid-column: 1 / -1;
}

.wcwallet-withdraw-summary{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.wcwallet-withdraw-hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

.wcwallet-alert{
  margin: 10px 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.wcwallet-alert-success{
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.25);
}

.wcwallet-alert-error{
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.25);
}