.cart-container { max-width: 1000px; margin: 2rem auto; padding: 0 20px; }

        .cart-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .cart-empty {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
        }

        .cart-empty-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            opacity: 0.5;
        }

        .cart-items {
            margin-bottom: 2rem;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
        }

        .cart-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            background: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .cart-item-info {
            flex-grow: 1;
        }

        .cart-item-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .cart-item-price {
            color: var(--accent);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .quantity-btn {
            width: 30px;
            height: 30px;
            border: 1px solid var(--border);
            background: var(--secondary-bg);
            color: var(--text-primary);
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-input {
            width: 40px;
            text-align: center;
            border: 1px solid var(--border);
            background: var(--secondary-bg);
            color: var(--text-primary);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .remove-btn {
            color: #ff4757;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0.5rem;
            border-radius: 6px;
            transition: background 0.3s ease;
        }

        .remove-btn:hover {
            background: rgba(255, 71, 87, 0.1);
        }

        .cart-summary {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 20px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }

        .summary-total {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            margin: 1.5rem 0;
        }

        .discount-badge {
            background: linear-gradient(135deg, #00b894, #00a382);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .checkout-btn {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            margin-top: 1rem;
        }

        .continue-shopping {
            text-align: center;
            margin-top: 2rem;
        }
