        /* Cart Page Specific Styles */
        .cart-page {
            padding: 2rem 0;
            background-color: var(--light-color);
        }

        .cart-header {
            background-color: var(--dark-color);
            color: white;
            padding: 1rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            margin-bottom: 0;
        }

        .cart-container {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }

        .cart-item {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }

        .cart-item:hover {
            background-color: #f9f9f9;
        }

        .cart-item-img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            border-radius: var(--border-radius);
            border: 1px solid #eee;
        }

        .cart-item-title {
            font-weight: 600;
            color: var(--dark-color);
        }

        .cart-item-specs {
            font-size: 0.85rem;
            color: #666;
        }

        .cart-item-price {
            font-weight: 700;
            color: var(--dark-color);
        }

        .quantity-selector {
            display: flex;
            align-items: center;
        }

        .quantity-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .quantity-input {
            width: 50px;
            height: 30px;
            text-align: center;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }

        .remove-item {
            color: #999;
            cursor: pointer;
            transition: var(--transition);
        }

        .remove-item:hover {
            color: var(--danger-color);
        }

        .summary-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 1.5rem;
            position: sticky;
            top: 20px;
        }

        .summary-title {
            font-weight: 600;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .summary-total {
            font-weight: 700;
            font-size: 1.2rem;
            border-top: 1px solid #eee;
            padding-top: 1rem;
            margin-top: 1rem;
        }

        .empty-cart {
            text-align: center;
            padding: 3rem 0;
        }

        .empty-cart-icon {
            font-size: 5rem;
            color: #ccc;
            margin-bottom: 1.5rem;
        }

        .promo-input {
            position: relative;
        }

        .promo-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            height: calc(100% - 10px);
            border: none;
            background-color: var(--dark-color);
            color: white;
            padding: 0 1rem;
            border-radius: var(--border-radius);
        }

        .delivery-option {
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            padding: 1rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .delivery-option:hover {
            border-color: var(--primary-color);
        }

        .delivery-option.selected {
            border-color: var(--primary-color);
            background-color: rgba(255, 193, 7, 0.05);
        }

        .delivery-option input {
            margin-right: 10px;
        }

        .continue-shopping {
            color: var(--dark-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .continue-shopping:hover {
            color: var(--primary-color);
        }

        @media (max-width: 767.98px) {
            .cart-item {
                flex-direction: column;
            }

            .cart-item-img {
                margin-bottom: 1rem;
            }

            .cart-item-details {
                width: 100%;
            }

            .cart-item-actions {
                width: 100%;
                margin-top: 1rem;
                justify-content: space-between;
            }
        }