.cart-page{
    background:#fff;
    padding-top:0px;
}


.cart-wrapper{

    max-width:900px;

    margin:40px auto 0;

    position:relative;

    display:flex;

    justify-content:center;

}


.shopy-cart{

    position:absolute;

    left:-100px;

    bottom:0;

    width:260px;

    z-index:4;

    pointer-events:none;

}


.cart-message{

    max-width:750px;

    width:100%;

    text-align:center;

    background:var(--light);

    padding:60px 60px 50px;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    position:relative;

    z-index:3;

}


.cart-message h1{

    font-size:2.2rem;

    margin-bottom:25px;

}


.cart-message p{

    color:#64748b;

    margin-bottom:15px;

    font-size:1.05rem;

}


.cart-message .btn{

    margin-top:25px;

}

@media(max-width:1100px){

    .shopy-cart{
        left:-50px;
        width:200px;
    }

    .cart-message{
        padding:60px 40px 50px;
    }

    .cart-message h1{
        font-size:1.8rem;
    }

    .cart-message p{
        font-size:0.9rem;

    }
}


@media(max-width:1000px){

    .cart-wrapper{

        flex-direction:column;

        align-items:center;

    }


    .shopy-cart{
        position:relative;
        left:auto;
        bottom:auto;
        width:100px;
        margin-bottom:-45px;
        z-index:4;
    }


    .cart-message{

        padding:40px 25px;

    }

}


@media(max-width:600px){


    .shopy-cart{
        width:100px;
        margin-bottom:-40px;
    }


    .cart-message{

        padding:35px 20px;

    }


    .cart-message h1{

        font-size:1.7rem;

    }

}