.cart-item{

display:grid;

grid-template-columns:120px 1fr auto;

gap:20px;

align-items:center;

padding:20px;

border-bottom:1px solid #eee;

}

.cart-item img{

width:100%;

border-radius:10px;

}

.cart-summary{

padding:2rem;

background:#fafafa;

border-radius:12px;

margin-top:2rem;

}

.summary-row{

display:flex;

justify-content:space-between;

margin-bottom:15px;

}

.summary-row.total{

font-size:1.3rem;

font-weight:bold;

}

.quantity-controls{

display:flex;

gap:10px;

align-items:center;

}

.quantity-controls button{

width:35px;

height:35px;

cursor:pointer;

}

.remove-item{

background:#d9534f;

color:white;

border:none;

padding:10px;

cursor:pointer;

border-radius:6px;

}
