*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;

    background:#0e0e0e;

    color:#f5f5f5;
}

/* HEADER */

.cart-header{
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 50px;

    background:#000;

    border-bottom:1px solid #222;
}

.logo{
    font-size:28px;
    font-weight:800;

    letter-spacing:2px;
    color:#fff;
}

.back-btn{
    text-decoration:none;

    color:#fff;

    font-size:14px;
    font-weight:600;
}

/* PAGE */

.cart-page{
    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    padding:45px;
}

/* LEFT */

.cart-left{
    background:#111;

    padding:35px;

    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
}

.cart-left h1{
    margin-bottom:30px;

    font-size:32px;

    letter-spacing:1px;
    color:#fff;
}

/* RIGHT */

.cart-right{
    height:fit-content;

    background:#111;

    padding:35px;

    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
}

.cart-right h2{
    margin-bottom:30px;

    font-size:24px;
    color:#fff;
}

.summary-row{
    display:flex;
    justify-content:space-between;

    margin-bottom:30px;

    font-size:18px;
    font-weight:600;
    color:#ddd;
}

/* BUTTON */

.checkout-btn{
    width:100%;

    padding:16px;

    border:none;

    border-radius:14px;

    background:#fff;

    color:#111;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.checkout-btn:hover{
    background:#f1f1f1;
}

/* CART ITEM */

.cart-item{
    display:flex;
    align-items:center;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid #222;
}

.cart-item img{
    width:110px;
    height:110px;

    object-fit:cover;

    border-radius:14px;
}

.cart-info h3{
    font-size:17px;

    margin-bottom:8px;
    color:#fff;
}

.cart-info p{
    color:#bbb;
}

.cart-actions{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cart-actions button{
    border:none;
    border-radius:12px;
    padding:10px 14px;
    cursor:pointer;
    font-weight:600;
    color:#fff;
    background:#222;
}

.favorite-btn{
    background:#222;
    color:#fff;
}

.favorite-btn:hover{
    background:#333;
}

.remove-btn{
    background:#111;
    color:#fff;
}

.remove-btn:hover{
    background:#222;
}

/* RESPONSIVE */

@media(max-width:900px){

    .cart-page{
        grid-template-columns:1fr;
    }

}

/* Disable hover pop-up animations globally */
*,
*::before,
*::after {
    transition: none !important;
    animation: none !important;
}

*:hover {
    transform: none !important;
}