.cart-container{background-color:#0d0d0d;min-height:100vh;color:white;padding:2rem}.cart-title{font-size:1.8rem;font-weight:700;margin-bottom:2rem;border-bottom:2px solid #e50914;display:inline-block}.cart-content{display:flex;gap:2rem;flex-wrap:wrap}.cart-items{flex:2;display:flex;flex-direction:column;gap:1rem}.cart-item{display:flex;align-items:center;background:#1a1a1a;padding:1rem;border-radius:10px;position:relative;transition:transform .2s ease,box-shadow .2s ease}.cart-item:hover{transform:translateY(-3px);box-shadow:0 4px 10px rgba(0,0,0,.4)}.cart-item-img{width:80px;height:80px;object-fit:cover;border-radius:8px;margin-right:1rem}.cart-item-details h3{margin:0;font-size:1.1rem}.cart-item-details p{margin:.3rem 0;color:#aaa;font-size:.9rem}.cart-item-actions{display:flex;align-items:center;justify-content:space-between;margin-top:.5rem}.quantity-controls{display:flex;align-items:center;background:#222;border-radius:6px}.quantity-controls button{background:transparent;border:none;color:white;padding:.4rem .8rem;font-size:1rem;cursor:pointer;transition:background .2s}.quantity-controls button:hover{background:#e50914}.quantity-controls span{padding:0 .8rem;font-size:1rem}.cart-item-price{text-align:right}.price{font-size:1rem;font-weight:700;color:#30af2e}.old-price{font-size:.9rem;color:#e50914;text-decoration:line-through;margin-left:.5rem}.delete-icon{color:#888;margin-left:1rem;cursor:pointer;transition:color .3s}.delete-icon:hover{color:#e50914}.cart-summary{flex:1;background:#1a1a1a;padding:1.5rem;border-radius:10px;display:flex;flex-direction:column;gap:1rem}.cart-summary h3{margin-bottom:1rem;font-size:1.2rem;font-weight:700}.summary-row{display:flex;justify-content:space-between;margin-bottom:.6rem}.summary-row.total{font-weight:700;font-size:1.1rem}.checkout-btn{background:linear-gradient(135deg,#27ae60,#2ecc71);color:white;padding:.8rem;border:none;border-radius:8px;cursor:pointer;font-weight:700;margin-top:1rem;transition:background .3s}.checkout-btn:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(39,174,96,.18)}.continue-btn{background:transparent;border:2px solid white;color:white;padding:.8rem;border-radius:8px;cursor:pointer;font-weight:700;margin-top:.8rem;transition:all .3s}.continue-btn:hover{background:white;color:black}.secure-text{margin-top:1rem;font-size:.85rem;color:#888}@media (max-width:768px){.cart-content{flex-direction:column}.cart-summary{order:2;width:100%}.cart-item{flex-direction:column;align-items:flex-start}.cart-item>div:first-child{width:100%;height:auto;position:relative;margin-bottom:.8rem;min-height:180px}.cart-item-img{width:100%;height:200px;border-radius:12px;margin-right:0}.cart-item-details{width:100%}.cart-item-actions{display:flex;flex-direction:column;align-items:stretch;width:100%;gap:.75rem}.cart-item-price{text-align:left;width:100%}.delete-icon{position:absolute;top:10px;right:10px}.checkout-btn,.continue-btn{width:100%}}