/*
----------------------------------------------------
Tyres Near Me Payments
Checkout CSS
----------------------------------------------------
*/

.tnmp-buy-box{

    margin-top:25px;
    padding:20px;
    background:#ffffff;
    border:1px solid #e5e5e5;
    border-radius:10px;

}

.tnmp-price{

    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;

}

.tnmp-qty-wrapper{

    margin-bottom:20px;

}

.tnmp-qty-wrapper label{

    display:block;
    font-weight:600;
    margin-bottom:10px;

}

.tnmp-qty{

    display:flex;
    align-items:center;
    gap:10px;

}

.tnmp-qty button{

    width:45px;
    height:45px;
    border:none;
    background:#ff8a00;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    border-radius:6px;

}

.tnmp-qty button:hover{

    background:#f06b00;

}

.tnmp-qty input{

    width:70px;
    height:45px;
    text-align:center;
    font-size:18px;
    border:1px solid #ddd;
    border-radius:6px;

}

.tnmp-buy-btn{

    width:100%;
    margin-top:20px;
    padding:16px;
    border:none;
    border-radius:6px;
    background:#ff8a00;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;

}

.tnmp-buy-btn:hover{

    background:#f06b00;

}

.tnmp-buy-btn:disabled{

    opacity:.6;
    cursor:not-allowed;

}

.tnmp-features{

    margin-top:18px;

}

.tnmp-features div{

    margin-top:8px;
    color:#444;
    font-size:14px;

}

.tnmp-payment-icons{

    margin-top:18px;
    font-size:14px;
    color:#666;

}

.tnmp-out-stock{

    padding:15px;
    background:#ffecec;
    color:#b40000;
    border-radius:6px;
    text-align:center;
    font-weight:600;

}

@media(max-width:768px){

    .tnmp-price{

        font-size:26px;

    }

}

/*======================================================
CHECKOUT PAGE
======================================================*/

.tnmp-checkout-container{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    margin:40px auto;
    max-width:1300px;

}

.tnmp-checkout-left,
.tnmp-checkout-right{

    width:100%;

}

.tnmp-card{

    background:#ffffff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:30px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

.tnmp-card h2{

    margin-top:0;
    margin-bottom:25px;
    font-size:28px;
    color:#222;

}

.tnmp-form-group{

    margin-bottom:20px;

}

.tnmp-form-group label{

    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;

}

.tnmp-form-group input,
.tnmp-form-group textarea{

    width:100%;
    padding:14px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    font-size:16px;
    transition:.3s;

}

.tnmp-form-group input:focus,
.tnmp-form-group textarea:focus{

    border-color:#ff8a00;
    outline:none;
    box-shadow:0 0 0 3px rgba(255,138,0,.15);

}

.tnmp-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

/*======================================================
ORDER SUMMARY
======================================================*/

.tnmp-summary{
    position:sticky;
    top:30px;
}

.tnmp-product-image{
    text-align:center;
    margin-bottom:20px;
}

.tnmp-product-image img{
    max-width:220px;
    width:100%;
    border-radius:10px;
}

.tnmp-product-name{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
    line-height:1.4;
}

.tnmp-summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #ececec;
    font-size:16px;
}

.tnmp-summary-row strong{
    font-size:18px;
}

.tnmp-total{
    margin-top:15px;
    font-size:20px;
    border-bottom:none;
}

.tnmp-total strong{
    color:#ff8a00;
    font-size:28px;
}

.tnmp-secure-box{
    margin:25px 0;
    padding:15px;
    background:#f8f8f8;
    border-radius:8px;
    line-height:2;
    font-size:15px;
}

.tnmp-payment-method{
    text-align:center;
    margin-top:20px;
}

.tnmp-payment-method img{
    max-width:180px;
    height:auto;
}

#tnmp-pay-now{
    width:100%;
    padding:18px;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
}