/*==================================================
PILLZA CART PAGE
==================================================*/

body{
    background:#f8f9fc;
}

/*==============================
Page Banner
==============================*/

.page-banner{

    background:linear-gradient(135deg,#ff4d7e,#ff7fa3);

    color:#fff;

    padding:70px 0;

}

.page-banner h1{

    font-size:40px;

    font-weight:700;

}

.page-banner p{

    opacity:.9;

    margin-top:10px;

}

/*==============================
Cart Item
==============================*/

.cart-item{

    background:#fff;

    border-radius:18px;

    padding:25px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.cart-item:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.cart-image{

    width:100%;

    height:120px;

    object-fit:contain;

    background:#fff;

}

/*==============================
Medicine Name
==============================*/

.cart-item h5{

    font-weight:700;

    margin-bottom:10px;

}

.cart-item a{

    color:#ff4d7e;

    text-decoration:none;

}

.cart-item a:hover{

    text-decoration:underline;

}

/*==============================
Quantity
==============================*/

.qty-box{

    display:flex;

    justify-content:center;

    align-items:center;

}

.qty-box button{

    width:38px;

    height:38px;

    border:none;

    background:#ff4d7e;

    color:#fff;

    font-size:20px;

    border-radius:8px;

    transition:.3s;

}

.qty-box button:hover{

    background:#e33d6d;

}

.qty-box input{

    width:55px;

    height:38px;

    margin:0 8px;

    border:1px solid #ddd;

    border-radius:8px;

    text-align:center;

    font-weight:600;

    background:#fff;

}

/*==============================
Summary
==============================*/

.cart-summary{

    background:#fff;

    border-radius:18px;

    padding:30px;

    position:sticky;

    top:110px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.cart-summary h4{

    font-weight:700;

    margin-bottom:25px;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

    font-size:16px;

}

.summary-row.total{

    font-size:22px;

    font-weight:700;

    color:#ff4d7e;

}

/*==============================
Buttons
==============================*/

.btn-pink{

    background:#ff4d7e;

    border:none;

    color:#fff;

    font-weight:600;

    padding:12px;

    border-radius:10px;

}

.btn-pink:hover{

    background:#e63d6d;

    color:#fff;

}

.btn-outline-pink{

    border:2px solid #ff4d7e;

    color:#ff4d7e;

    font-weight:600;

    border-radius:10px;

    padding:12px;

}

.btn-outline-pink:hover{

    background:#ff4d7e;

    color:#fff;

}

/*==============================
Empty Cart
==============================*/

.empty-cart{

    background:#fff;

    border-radius:20px;

    padding:80px 30px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.empty-cart i{

    font-size:80px;

    color:#ff4d7e;

}

/*==============================
Remove
==============================*/

.remove-cart{

    font-size:14px;

    text-decoration:none;

}

.remove-cart:hover{

    color:#dc3545 !important;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.cart-summary{

    margin-top:30px;

    position:relative;

    top:0;

}

}

@media(max-width:768px){

.cart-item{

    text-align:center;

}

.cart-image{

    margin-bottom:20px;

}

.qty-box{

    margin:20px auto;

}

.summary-row{

    font-size:15px;

}

.page-banner{

    text-align:center;

}

.page-banner h1{

    font-size:30px;

}

}