 .wallet-reset-styles * {
     box-sizing: border-box;
 }

 .wallet-page-section {
     background: #f5f5f5;
     padding: 40px 0;
     min-height: 60vh;
 }

 .wallet-main-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .wallet-card-wrapper {
     background: white;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     overflow: hidden;
 }

 .wallet-header-section {
     background: linear-gradient(135deg, #667eea 0%, #102865 100%);
     padding: 9px 10px;
     text-align: center;
     color: white;
 }

 .wallet-header-title {
     font-size: 25px;
     font-weight: 600;
     margin-bottom: 10px;
     color: white;
 }

 .wallet-balance-card {
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     padding: 4px 23px;
     border-radius: 12px;
     display: inline-block;
 }

 .wallet-balance-label {
     font-size: 14px;
     opacity: 0.95;

     font-weight: 500;
 }

 .wallet-balance-amount {
     font-size: 26px;
     font-weight: 700;
 }

 .wallet-content-area {
     padding: 40px 30px;
 }

 .wallet-section-title {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 20px;
     color: #333;
 }

 .wallet-custom-amount-section {
     margin-bottom: 4px;
     padding: 18px;
     background: #f8f9fa;
     border-radius: 15px;
 }

 .wallet-input-group {
     display: flex;
     gap: 15px;
     align-items: stretch;
 }

 .wallet-custom-input-wrapper {
     flex: 1;
     position: relative;
 }

 .wallet-currency-symbol {
     position: absolute;
     left: 20px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 20px;
     font-weight: 600;
     color: #667eea;
 }

 .wallet-custom-input {
     width: 100%;
     padding: 18px 20px 18px 45px;
     font-size: 18px;
     border: 2px solid #e0e0e0;
     border-radius: 12px;
     transition: all 0.3s;
     font-weight: 500;
     background: white;
 }

 .wallet-custom-input:focus {
     outline: none;
     border-color: #667eea;
     box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
 }

 .wallet-add-custom-btn {
     padding: 13px 31px;
     background: linear-gradient(135deg, #a47515, #eb9b3b);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     white-space: nowrap;
 }

 .wallet-add-custom-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
 }

 .wallet-quick-amounts {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 7px;
     margin-bottom: 17px;

 }

 .wallet-amount-btn {
     padding: 3px;
     background: #fff;
     border: 2px solid #e0e0e0;
     border-radius: 12px;
     font-size: 20px;
     font-weight: 600;
     color: #333;
     cursor: pointer;
     transition: all 0.3s;
     text-align: center;
 }

 .wallet-amount-btn:hover {
     background: #a47515;
     color: white;
     border-color: #a47515;
     transform: translateY(-3px);
     box-shadow: 0 8px 20px #a47515;
 }

 .wallet-amount-btn-selected {
     background: #a47515;
     border-color: #a47515;
     color: white;
 }

 .wallet-order-summary {
     background: #f8f9fa;
     padding: 30px;
     border-radius: 12px;
     margin-bottom: 30px;
 }

 .wallet-order-row {
     display: flex;
     justify-content: space-between;

     font-size: 16px;
 }

 .wallet-order-row-total {
     border-top: 2px solid #e0e0e0;
     margin-top: 10px;
     padding-top: 15px;
     font-weight: 700;
     font-size: 20px;
 }

 .wallet-proceed-btn {
     width: 100%;
     padding: 20px;
     background: linear-gradient(135deg, #a47515, #eb9b3b);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 18px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .wallet-proceed-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
 }

 .wallet-secure-badge {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     color: #28a745;
     font-size: 14px;
     margin-top: 15px;
     font-weight: 500;
 }

 .wallet-terms {
     text-align: center;
     font-size: 13px;
     color: #666;
     margin-top: 20px;
     line-height: 1.6;
 }

 .wallet-terms-link {
     color: #667eea;
     text-decoration: none;
     font-weight: 500;
 }

 .wallet-terms-link:hover {
     text-decoration: underline;
 }

 @media (max-width: 768px) {
     .wallet-page-section {
         padding: 20px 0;
     }

     .wallet-content-area {
         padding: 25px 20px;
     }

     .wallet-header-section {
         padding: 30px 20px;
     }

     .wallet-custom-amount-section {
         padding: 20px;
     }

     .wallet-quick-amounts {
         grid-template-columns: repeat(3, 1fr);
     }

     .wallet-input-group {
         flex-direction: column;
     }

     .wallet-header-title {
         font-size: 24px;
     }

     .wallet-balance-amount {
         font-size: 30px;
     }
 }

 @media (max-width: 480px) {
     .wallet-quick-amounts {
         grid-template-columns: repeat(2, 1fr);
     }

     .wallet-amount-btn {
         font-size: 18px;
         padding: 18px;
     }
 }