/* ===== BOX ===== */

.dw-order-found{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:35px;
    margin-top:30px;
}

.dw-order-found h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.dw-order-found h4{
    font-size:34px;
    margin:35px 0 25px;
    border-top:1px solid #ececec;
    padding-top:25px;
}

/* ===== KARTA PRODUKTU ===== */

.dw-return-item{

    display:grid;

    grid-template-columns:40px 130px 1fr 180px;

    gap:30px;

    align-items:center;

    padding:25px;

    border:1px solid #ececec;

    border-radius:14px;

    margin-bottom:20px;

    transition:.25s;

    background:#fff;

}

.dw-return-item:hover{

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

/* ===== CHECKBOX ===== */

.dw-check{

    display:flex;

    justify-content:center;

}

.dw-check input{

    width:22px;

    height:22px;

}

/* ===== FOTO ===== */

.dw-image{

    display:flex;

    justify-content:center;

}

.dw-image img{

    width:120px;

    height:120px;

    object-fit:contain;

}

/* ===== INFORMACJE ===== */

.dw-info{

    display:flex;

    flex-direction:column;

}

.dw-info h5{

    font-size:26px;

    font-weight:700;

    margin:0 0 12px;

    line-height:1.35;

}

.dw-sku{

    color:#888;

    margin-bottom:8px;

}

.dw-bought{

    color:#666;

}

/* ===== ILOŚĆ ===== */

.dw-qty{

    text-align:center;

}

.dw-qty label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

}

.dw-qty input{

    width:90px !important;

    height:46px;

    text-align:center;

    margin:auto;

}

/* ===== POWÓD ===== */

.dw-reason{

    margin-top:40px;

}

.dw-reason textarea{

    width:100%;

    min-height:180px;

}

/* ===== REGULAMIN ===== */

.dw-policy{

    display:flex;

    align-items:center;

    gap:12px;

    margin:30px 0;

}

/* ===== BUTTON ===== */

#dw-send-return{

    background:#156EE8;

    color:#fff;

    border:none;

    padding:16px 34px;

    border-radius:10px;

    font-size:16px;

    font-weight:700;

}

#dw-send-return:hover{

    background:#0f5dc7;

}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .dw-return-item{

        grid-template-columns:1fr;

        text-align:center;

    }

    .dw-image{

        justify-content:center;

    }

}
.dw-image img{
    width:120px;
    height:120px;
}
/* ===========================
   MODAL
=========================== */

#dw-return-modal{
    position:fixed;
    inset:0;
    display:none;
    z-index:999999;
}

.dw-return-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(4px);
}

.dw-return-window{
    position:relative;
    width:1000px;
    max-width:95%;
    max-height:90vh;
    overflow:auto;
    background:#fff;
    margin:40px auto;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    animation:dwModal .25s ease;
}

.dw-return-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 30px;
    border-bottom:1px solid #eee;
}

.dw-return-header h2{
    margin:0;
    font-size:28px;
}

.dw-close{
    width:42px;
    height:42px;
    border:none;
    background:#f5f5f5;
    border-radius:50%;
    cursor:pointer;
    font-size:24px;
}

.dw-close:hover{
    background:#e9e9e9;
}

.dw-return-body{
    padding:30px;
}

@keyframes dwModal{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:none;
    }

}
.dw-status{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    color:#fff;
}

.dw-new{
    background:#f39c12;
}

.dw-pending{
    background:#3498db;
}

.dw-accepted{
    background:#27ae60;
}

.dw-rejected{
    background:#e74c3c;
}

.dw-completed{
    background:#555;
}