/*==================================
        ORDER SUCCESS
==================================*/

.order-success-section{
    background:#fffaf7;
    padding:50px 0;
}

.order-success-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    border:1px solid #f2dfd3;
    border-radius:15px;
    padding:45px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.success-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#22b057;
    color:#fff;
    font-size:38px;
    line-height:90px;
}

.order-success-card h2{
    font-size:34px;
    margin-bottom:10px;
    font-weight:500;
}

.order-success-card p{
    color:#666;
    margin-bottom:30px;
}

.success-info{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
    text-align:center;
}

.success-info span{
    display:block;
    color:#777;
    font-size:14px;
}

.success-info strong{
    color:#111;
}

.success-box{
    border-top:1px solid #eee;
    padding-top:20px;
    margin-top:25px;
    text-align:left;
}

.success-box h4{
    font-size:20px;
    margin-bottom:15px;
}

.success-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.success-box ul li{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
}

.success-box .total{
    border-top:1px solid #eee;
    padding-top:15px;
    margin-top:15px;
    font-size:20px;
    font-weight:600;
}

.delivery-date{
    margin-top:30px;
    color:#555;
}

.success-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
}
.success-buttons a.theme-btn{
    min-width:210px;
    height:54px;
    font-size:16px;
    line-height:30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:500;
    text-align:center;
}

.success-buttons a{
    min-width:210px;
    height:54px;
    line-height:54px;
    border-radius:10px;
    text-decoration:none;
    font-weight:500;
    text-align:center;
}

.theme-btn{
    background:#eb6b2d;
    color:#fff;
}

.theme-btn:hover{
    background:#111;
    color:#fff;
}

.outline-btn{
    border:1px solid #eb6b2d;
    color:#eb6b2d;
}

.outline-btn:hover{
    background:#eb6b2d;
    color:#fff;
}

@media(max-width:767px){

    .order-success-card{
        padding:30px 20px;
    }

    .success-info{
        flex-direction:column;
        gap:15px;
    }

    .success-buttons{
        flex-direction:column;
    }

    .success-buttons a{
        width:100%;
    }

}