.nrr-wrapper{
    max-width:900px;
    margin:40px auto;
}

.nrr-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:30px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.nrr-card h2{
    margin:0 0 25px;
    text-align:center;
}

.nrr-card h3{
    margin-top:30px;
    margin-bottom:15px;
    font-size:18px;
}

.nrr-section{
    margin-bottom:25px;
}

.nrr-row{
    display:flex;
    gap:20px;
}

.nrr-col{
    flex:1;
}

.nrr-card label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.nrr-card input[type=text],
.nrr-card input[type=email],
.nrr-card input[type=number],
.nrr-card textarea,
.nrr-card select{

    width:100%;
    padding:12px;
    border:1px solid #dcdcdc;
    border-radius:6px;
    box-sizing:border-box;

}

.nrr-card textarea{
    min-height:130px;
    resize:vertical;
}

.nrr-btn{

    background:#0066ff;
    color:#fff;
    border:0;
    padding:12px 25px;
    border-radius:6px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;

}

.nrr-btn:hover{

    background:#0050d8;

}

.nrr-btn:disabled{

    opacity:.6;
    cursor:not-allowed;

}

.nrr-success{

    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    padding:12px 15px;
    border-radius:5px;
    margin-bottom:20px;

}

.nrr-error{

    background:#f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
    padding:12px 15px;
    border-radius:5px;
    margin-bottom:20px;

}

.nrr-product{

    border:1px solid #ececec;
    padding:18px;
    border-radius:8px;
    margin-bottom:15px;
    background:#fafafa;

}

.nrr-product label{

    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;

}

.nrr-product input[type=checkbox]{

    margin:0;
    width:18px;
    height:18px;

}

.nrr-variation{

    color:#777;
    font-size:13px;
    margin-bottom:10px;

}

.nrr-qty{

    margin-top:10px;

}

.nrr-checkbox{

    display:flex!important;
    align-items:flex-start;
    gap:10px;
    margin-top:20px;
    margin-bottom:20px;
    font-weight:400!important;

}

.nrr-checkbox input{

    width:18px;
    height:18px;
    margin-top:2px;
    flex-shrink:0;

}

#customer_name,
#customer_email,
#customer_phone{

    background:#f5f5f5;

}

#return_photo{

    margin-top:10px;

}

@media(max-width:768px){

    .nrr-row{

        display:block;

    }

    .nrr-col{

        margin-bottom:15px;

    }

    .nrr-btn{

        width:100%;

    }

}

/* ==============================
   Product Card
============================== */

.nrr-product-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:18px;
    margin-bottom:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.nrr-product-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.nrr-product-check{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.nrr-product-check input{
    width:18px;
    height:18px;
}


/* ==============================
   Product Variation
============================== */

.nrr-variation{
    color:#666;
    font-size:14px;
    margin-bottom:15px;
}


/* ==============================
   Quantity Control
============================== */

.nrr-qty-control{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
}

.nrr-qty-control button{
    width:34px;
    height:34px;
    border:none;
    border-radius:6px;
    background:#1d4ed8;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

.nrr-qty-control button:hover{
    background:#1e40af;
}

.return_qty{
    width:70px;
    text-align:center;
    padding:6px;
    border:1px solid #ccc;
    border-radius:6px;
}


/* ==============================
   Return Reason
============================== */

.return_reason{
    width:100%;
    margin-top:8px;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
}


/* ==============================
   Verified Button
============================== */

#nrr_verify_order.verified{
    background:#16a34a;
    color:#fff;
    cursor:default;
}


/* ==============================
   Upload Preview
============================== */

#nrr-image-preview{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;
}

.nrr-preview-image{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #ddd;
}


/* ==============================
   Upload Box
============================== */

#nrr-upload-box{
    border:2px dashed #cbd5e1;
    border-radius:10px;
    padding:25px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
}

#nrr-upload-box.dragging{
    border-color:#2563eb;
    background:#eff6ff;
}

.nrr-visually-hidden{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
    opacity:0;
}