/* Minimal cart UI styling for clarity and usability */
.cart-item, .cart-page__item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee }
.cart-item__title, .cart-page__title { font-weight: 600; margin-bottom: 6px }
.cart-item__meta button, .cart-page__qty button { padding: 4px 10px; border: 1px solid #ccc; border-radius: 4px; background: #f9f9f9; cursor: pointer }
.cart-item__meta button:hover, .cart-page__qty button:hover { background: #f0f0f0 }
.cart-item__price, .cart-page__price { font-weight: 700 }
.cart-item__thumb img, .cart-page__thumb img { background: #fafafa }
