/* Menyembunyikan kotak detail rekening bank */
#payment-info {
    display: none !important;
}

#wa-order-form{
    max-width: 500px;
    margin: 10px auto;
    padding: 10px;
    background: #ffffff;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: inherit;
}

#wa-order-form label{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 1px;
}

#wa-order-form input,
#wa-order-form select,
#wa-order-form textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s ease;
    box-sizing: border-box;
}

#wa-order-form input:focus,
#wa-order-form select:focus,
#wa-order-form textarea:focus{
    border-color: #25D366;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37,211,102,0.15);
}

#wa-order-form textarea{
    resize: vertical;
    min-height: 80px;
}

#total_harga{
    color: #25D366;
    font-size: 18px;
}

#payment-info{
    font-size: 14px;
}

#wa-order-form button{
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

#wa-order-form button:hover{
    background: #1ebe5d;
}

/* MOBILE OPTIMIZATION */
@media(max-width:480px){

    #wa-order-form{
        padding: 8px;
        gap: 4px;
    }

    #wa-order-form label{
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1;
    }

    #wa-order-form input,
    #wa-order-form select,
    #wa-order-form textarea{
        padding: 10px 8px;
        font-size: 13px;
        line-height: 1.2;
        min-height: auto;
    }

}
		
		.wa-icon{
    width:32px;
    height:32px;
}

@media(max-width:480px){
    .wa-icon{
        width:20px !important;
        height:20px !important;
    }
}

.wa-qris-box{
    text-align: center;
}

.wa-qris-title{
    font-weight: 600;
    margin-bottom: 8px;
}


.wa-qris-image img{
        width: 180px;
    }



@media(max-width:480px){

    .wa-qris-title{
        font-size: 13px;
    }

    .wa-qris-note{
        font-size: 12px;
    }

}
