.cart-container{max-width:1200px;margin:3rem auto;padding:0 1.5rem;min-height:60vh;display:grid;grid-template-columns:1fr 380px;gap:3rem;align-items:start}.cart-header{grid-column:1 / -1;margin-bottom:1rem;display:flex;justify-content:space-between;align-items:center}.cart-header h1{font-size:2rem;color:var(--text-dark);font-weight:700;letter-spacing:-.5px}.cart-items-wrapper{display:flex;flex-direction:column;gap:1.5rem}.cart-item{background:#fff;border-radius:16px;padding:1.5rem;display:grid;grid-template-columns:100px 1fr auto;gap:1.5rem;box-shadow:0 4px 6px -1px #0000000d,0 2px 4px -1px #00000008;border:1px solid rgba(0,0,0,.03);transition:transform .2s ease,box-shadow .2s ease}.cart-item:hover{transform:translateY(-2px);box-shadow:0 10px 15px -3px #0000000d,0 4px 6px -2px #00000006}.cart-item img{width:100px;height:100px;object-fit:contain;border-radius:12px;background:var(--bg-light);padding:.5rem}.item-details{display:flex;flex-direction:column;justify-content:center}.item-name{font-size:1.15rem;font-weight:600;color:var(--text-dark);margin-bottom:.5rem;line-height:1.4}.item-meta{font-size:.9rem;color:var(--text-gray);margin-bottom:.5rem}.item-price{font-size:1.25rem;color:var(--text-dark);font-weight:700}.item-actions{display:flex;flex-direction:column;align-items:flex-end;justify-content:space-between}.quantity-controls{display:flex;align-items:center;gap:.75rem;background:var(--bg-light);padding:.35rem;border-radius:50px;border:1px solid var(--border-color)}.quantity-btn{width:32px;height:32px;border-radius:50%;border:none;background:#fff;color:var(--text-dark);font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 1px 2px #0000000d;transition:all .2s}.quantity-btn:hover{background:var(--primary-color);color:#fff;transform:scale(1.05)}.quantity-display{font-weight:600;min-width:24px;text-align:center;font-size:1rem}.remove-btn{color:#ef4444;background:#ef44441a;border:none;cursor:pointer;width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .2s}.remove-btn:hover{background:#ef4444;color:#fff;transform:rotate(90deg)}.text-btn.danger{background:none;border:none;color:#9ca3af;font-weight:500;font-size:.9rem;cursor:pointer;padding:.5rem 1rem;border-radius:6px;transition:all .2s}.text-btn.danger:hover{background:#fee2e2;color:#ef4444}.cart-summary{background:#fff;padding:2rem;border-radius:20px;box-shadow:0 10px 15px -3px #0000000d;border:1px solid rgba(0,0,0,.03);position:sticky;top:100px;height:fit-content}.cart-summary h2{font-size:1.5rem;font-weight:700;margin-bottom:1.5rem;color:var(--text-dark)}.summary-row{display:flex;justify-content:space-between;margin-bottom:1rem;color:var(--text-gray);font-size:1rem}.summary-row.total{margin-top:1.5rem;padding-top:1.5rem;border-top:2px dashed var(--border-color);color:var(--text-dark);font-weight:700;font-size:1.5rem;align-items:center}.checkout-btn{width:100%;margin-top:2rem;background:var(--primary-gradient);color:#fff;border:none;padding:1.1rem;border-radius:12px;font-size:1.1rem;font-weight:600;cursor:pointer;box-shadow:0 4px 6px -1px #4f46e533;transition:all .2s;display:flex;align-items:center;justify-content:center;gap:.75rem}.checkout-btn:hover{transform:translateY(-2px);box-shadow:0 10px 15px -3px #4f46e54d}.empty-cart{grid-column:1 / -1;text-align:center;padding:6rem 2rem;background:#fff;border-radius:24px;box-shadow:var(--shadow-sm)}.empty-cart i{font-size:5rem;color:var(--primary-light);margin-bottom:1.5rem;animation:float 3s ease-in-out infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.empty-cart h2{font-size:2rem;color:var(--text-dark);margin-bottom:1rem}.empty-cart p{color:var(--text-gray);font-size:1.1rem;margin-bottom:2.5rem}.continue-shopping{display:inline-flex;align-items:center;gap:.75rem;background:var(--text-dark);color:#fff;padding:1rem 2.5rem;border-radius:12px;text-decoration:none;font-weight:600;transition:all .2s}.continue-shopping:hover{background:#000;transform:translateY(-2px);box-shadow:0 10px 15px -3px #0000001a}@media (max-width: 900px){.cart-container{grid-template-columns:1fr;gap:2rem}.cart-summary{order:-1}}@media (max-width: 600px){.cart-item{grid-template-columns:80px 1fr;gap:1rem;padding:1rem}.item-actions{flex-direction:row;grid-column:1 / -1;justify-content:space-between;align-items:center;margin-top:.5rem;padding-top:1rem;border-top:1px dashed var(--border-color)}.cart-item img{width:80px;height:80px}.cart-header h1{font-size:1.75rem}}
