.acwp-deposit-wrapper{
    max-width:700px;
    margin:40px auto;
}

.acwp-deposit-card,
.acwp-payment-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:30px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
    margin-bottom:25px;
}

.acwp-deposit-card h2,
.acwp-payment-card h2,
.acwp-payment-card h3{
    margin:0 0 10px;
    font-size:32px;
    font-weight:700;
}

.acwp-subtitle,
.acwp-payment-note{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.acwp-quick-amounts{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.acwp-amount-btn{
    border:1px solid #dcdcdc;
    background:#fff;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
}

.acwp-amount-btn:hover,
.acwp-amount-btn.active{
    background:#0d6efd;
    color:#fff;
    border-color:#0d6efd;
}

.acwp-input-group,
.acwp-payment-field{
    margin-bottom:20px;
}

.acwp-input-group label,
.acwp-payment-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

#acwp_amount,
.acwp-payment-field input{
    width:100%;
    height:50px;
    padding:0 15px;
    font-size:17px;
    border:1px solid #ccc;
    border-radius:8px;
    box-sizing:border-box;
    background:#fff;
}

.acwp-primary-btn{
    width:100%;
    height:52px;
    border:none;
    background:#0d6efd;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
}

.acwp-primary-btn:hover{
    opacity:.9;
}

/* ===========================
   QR CODE
=========================== */

.acwp-payment-qr,
.acwp-qr-box{
    text-align:center;
    margin:25px 0;
}

#acwp-qr-image{
    width:220px;
    height:220px;
    display:block;
    margin:0 auto;
    padding:10px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
}

/* ===========================
   ADDRESS
=========================== */

#acwp-wallet-address{
    width:100%;
    height:48px;
    padding:0 12px;
    border:1px solid #ccc;
    border-radius:8px;
    margin-bottom:10px;
    box-sizing:border-box;
}

#acwp-copy-address{
    background:#198754;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:12px 20px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

#acwp-copy-address:hover{
    opacity:.9;
}

/* ===========================
   STATUS
=========================== */

.acwp-payment-status{
    margin-top:25px;
    padding:15px;
    background:#f8f9fa;
    border-radius:8px;
    border:1px solid #eee;
}

#acwp-status-text{
    color:#ff9800;
    font-weight:700;
}

#acwp-api-message{
    margin-top:20px;
    color:#555;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .acwp-deposit-card,
    .acwp-payment-card{
        padding:20px;
    }

    .acwp-deposit-card h2,
    .acwp-payment-card h2{
        font-size:26px;
    }

    .acwp-quick-amounts{
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }

    .acwp-amount-btn{
        width:100%;
    }

    #acwp-qr-image{
        width:180px;
        height:180px;
    }

}